diff --git a/parse/train/Byj72udxe/Byj72udxe.md b/parse/train/Byj72udxe/Byj72udxe.md new file mode 100644 index 0000000000000000000000000000000000000000..952c4f0f0b26ab09a18c6574979f84478f92483e --- /dev/null +++ b/parse/train/Byj72udxe/Byj72udxe.md @@ -0,0 +1,297 @@ +# POINTER SENTINEL MIXTURE MODELS + +Stephen Merity, Caiming Xiong, James Bradbury & Richard Socher +MetaMind - A Salesforce Company +Palo Alto, CA, USA +{smerity,cxiong,james.bradbury,rsocher}@salesforce.com + +# ABSTRACT + +Recent neural network sequence models with softmax classifiers have achieved their best language modeling performance only with very large hidden states and large vocabularies. Even then they struggle to predict rare or unseen words even if the context makes the prediction unambiguous. We introduce the pointer sentinel mixture architecture for neural sequence models which has the ability to either reproduce a word from the recent context or produce a word from a standard softmax classifier. We explore applying the pointer sentinel mixture model to the LSTM, a standard recurrent neural network building block. Utilizing an LSTM that achieves 80.6 perplexity on the Penn Treebank, the pointer sentinel-LSTM model pushes perplexity down to 70.9 while using far fewer parameters than an LSTM that achieves similar results. In order to evaluate how well language models can exploit longer contexts and deal with more realistic vocabularies and corpora we also introduce the freely available WikiText corpus.1 + +# 1 INTRODUCTION + +A major difficulty in language modeling is learning when to predict specific words from the immediate context. For instance, imagine a new person is introduced and two paragraphs later the context would allow one to very accurately predict this person’s name as the next word. For standard neural sequence models to predict this name, they would have to encode the name, store it for many time steps in their hidden state, and then decode it when appropriate. As the hidden state is limited in capacity and the optimization of such models suffer from the vanishing gradient problem, this is a lossy operation when performed over many timesteps. This is especially true for rare words. + +Models with soft attention or memory components have been proposed to help deal with this challenge, aiming to allow for the retrieval and use of relevant previous hidden states, in effect increasing hidden state capacity and providing a path for gradients not tied to timesteps. Even with attention, the standard softmax classifier that is being used in these models often struggles to correctly predict rare or previously unknown words. + +Pointer networks (Vinyals et al., 2015) provide one potential solution for rare and out of vocabulary (OoV) words as a pointer network uses attention to select an element from the input as output. This allows it to produce previously unseen input tokens. While pointer networks improve performance on rare words and long-term dependencies they are unable to select words that do not exist in the input. + +We introduce a mixture model, illustrated in Fig. 1, that combines the advantages of standard softmax classifiers with those of a pointer component for effective and efficient language modeling. Rather than relying on the RNN hidden state to decide when to use the pointer, as in the recent work of Gulc¸ehre et al. ¨ (2016), we allow the pointer component itself to decide when to use the softmax vocabulary through a sentinel. The model improves the state of the art perplexity on the Penn Treebank. Since this commonly used dataset is small and no other freely available alternative exists that allows for learning long range dependencies, we also introduce a new benchmark dataset for language modeling called WikiText. + +![](images/8c26dfca638e32eea73667de18d4a96eb9d4f36a18ee233fb6986050ddd64f47.jpg) +Figure 1: Illustration of the pointer sentinel-RNN mixture model. $g$ is the mixture gate which uses the sentinel to dictate how much probability mass to give to the vocabulary. + +# 2 THE POINTER SENTINEL FOR LANGUAGE MODELING + +Given a sequence of words $w _ { 1 } , \ldots , w _ { N - 1 }$ , our task is to predict the next word $w _ { N }$ + +# 2.1 THE SOFTMAX-RNN COMPONENT + +Recurrent neural networks (RNNs) have seen widespread use for language modeling (Mikolov et al., 2010) due to their ability to, at least in theory, retain long term dependencies. RNNs employ the chain rule to factorize the joint probabilities over a sequence of tokens: $p ( w _ { 1 } , \dots , w _ { N } ) =$ $\begin{array} { r } { \prod _ { i = 1 } ^ { N } p ( w _ { i } | w _ { 1 } , \dots , w _ { i - 1 } ) } \end{array}$ . More precisely, at each time step $i$ , we compute the RNN hidden state $h _ { i }$ according to the previous hidden state $h _ { i - 1 }$ and the input $x _ { i }$ such that $h _ { i } = R N N ( x _ { i } , h _ { i - 1 } )$ . When all the $N - 1$ words have been processed by the RNN, the final state $h _ { { N - 1 } }$ is fed into a softmax layer which computes the probability over a vocabulary of possible words: $p _ { \mathrm { v o c a b } } ( w ) =$ softmax $\left( U h _ { N - 1 } \right)$ , where $\mathbf { \Psi } _ { p _ { \mathrm { v o c a b } } } \in \dot { \mathbb { R } } ^ { V }$ , $U \in \mathbf { \overline { { R } } } ^ { V \times H }$ , $H$ is the hidden size, and $V$ the vocabulary size. RNNs can suffer from the vanishing gradient problem. The LSTM (Hochreiter & Schmidhuber, 1997) architecture has been proposed to deal with this by updating the hidden state according to a set of gates. Our work focuses on the LSTM but can be applied to any RNN architecture that ends in a vocabulary softmax. + +# 2.2 THE POINTER NETWORK COMPONENT + +In this section, we propose a modification to pointer networks for language modeling. To predict the next word in the sequence, a pointer network would select the member of the input sequence $p ( w _ { 1 } , \dots , w _ { N - 1 } )$ with the maximal attention score as the output. + +The simplest way to compute an attention score for a specific hidden state is an inner product with all the past hidden states $h$ , with each hidden state $\boldsymbol { h } _ { i } ^ { \star } \in \mathbb { R } ^ { H }$ . However, if we want to compute such a score for the most recent word (since this word may be repeated), we need to include the last hidden state itself in this inner product. Taking the inner product of a vector with itself results in the vector’s magnitude squared, meaning the attention scores would be strongly biased towards the most recent word. Hence we project the current hidden state to a query vector $q$ first. To produce the query $q$ we compute $q = \mathrm { t a n h } ( W h _ { N - 1 } + b )$ , where $W \in \dot { \mathbb { R } ^ { H \times } } \mathbf { \check { \mathit { H } } }$ , $b \in \mathring { \mathbb { R } } ^ { H }$ , and $\boldsymbol { q } ^ { \mathbf { \lambda } } \in \mathbb { R } ^ { H }$ . To generate the pointer attention scores, we compute the match between the previous RNN output states $h _ { i }$ and the query $q$ by taking the inner product, followed by a softmax activation function to obtain a probability distribution: + +$$ +\begin{array} { r } { z _ { i } = q ^ { T } h _ { i } , } \\ { a = \mathrm { s o f t m a x } ( z ) , } \end{array} +$$ + +where $z \in \mathbb { R } ^ { L }$ , $a \in \mathbb { R } ^ { L }$ , and $L$ is the total number of hidden states. The probability mass assigned to a given word is the sum of the probability mass given to all token positions where the given word appears: + +$$ +p _ { \mathrm { p t r } } ( w ) = \sum _ { i \in I ( w , x ) } a _ { i } , +$$ + +![](images/0171833abe0201710740ca22ff0191abc247c1cd6f229bbb5f4880daf49a948b.jpg) +Figure 2: Visualization of the pointer sentinel-RNN mixture model. The query, produced from applying an MLP to the last output of the RNN, is used by the pointer network to identify likely matching words from the past. The $\odot$ nodes are inner products between the query and the RNN hidden states. If the pointer component is not confident, probability mass can be directed to the RNN by increasing the value of the mixture gate $g$ via the sentinel, seen in grey. If $g = 1$ then only the RNN is used. If $g = 0$ then only the pointer is used. + +where $I ( w , x )$ results in all positions of the word $w$ in the input $x$ and $p _ { \mathrm { p t r } } \in \mathbb { R } ^ { V }$ . This technique, referred to as pointer sum attention, has been used for question answering (Kadlec et al., 2016). + +Given the length of the documents used in language modeling, it may not be feasible for the pointer network to evaluate an attention score for all the words back to the beginning of the dataset. Instead, we may elect to maintain only a window of the $L$ most recent words for the pointer to match against. The length $L$ of the window is a hyperparameter that can be tuned on a held out dataset or by empirically analyzing how frequently a word at position $t$ appears within the last $L$ words. + +To illustrate the advantages of this approach, consider a long article featuring two sentences President Obama discussed the economy and President Obama then flew to Prague. If the query was Which President is the article about?, probability mass could be applied to Obama in either sentence. If the question was instead Who flew to Prague?, only the latter occurrence of Obama provides the proper context. The attention sum model ensures that, as long as the entire attention probability mass is distributed on the occurrences of Obama, the pointer network can achieve zero loss. This flexibility provides supervision without forcing the model to put mass on supervision signals that may be incorrect or lack proper context. + +# 2.3 THE POINTER SENTINEL MIXTURE MODEL + +While pointer networks have proven to be effective, they cannot predict output words that are not present in the input, a common scenario in language modeling. We propose to resolve this by using a mixture model that combines a standard softmax with a pointer. + +Our mixture model has two base distributions: the softmax vocabulary of the RNN output and the positional vocabulary of the pointer model. We refer to these as the RNN component and the pointer component respectively. To combine the two base distributions, we use a gating function $\bar { g } \ : = \ : p ( z _ { i } \ : = \ : k | x _ { i } )$ where $z _ { i }$ is the latent variable stating which base distribution the data point belongs to. As we only have two base distributions, $g$ can produce a scalar in the range $[ 0 , 1 ]$ . A value of 0 implies that only the pointer is used and 1 means only the softmax-RNN is used. + +$$ +p ( y _ { i } | x _ { i } ) = g p _ { \mathrm { v o c a b } } ( y _ { i } | x _ { i } ) + ( 1 - g ) p _ { \mathrm { p t r } } ( y _ { i } | x _ { i } ) . +$$ + +While the models could be entirely separate, we re-use many of the parameters for the softmaxRNN and pointer components. This sharing minimizes the total number of parameters in the model and capitalizes on the pointer network’s supervision for the RNN component. + +# 2.4 DETAILS OF THE GATING FUNCTION + +To compute the new pointer sentinel gate $g$ , we modify the pointer component. In particular, we add an additional element to $z$ , the vector of attention scores as defined in Eq. 1. This element is computed using an inner product between the query and the sentinel2 vector $s \in \mathbb { R } ^ { H }$ . This change can be summarized by changing Eq. 2 to $a = \operatorname { \bar { s o f t m a x } } \left( \left[ z ; q ^ { T } s \right] \right)$ . We define $a \in \mathbb { R } ^ { V + 1 }$ to be the attention distribution over both the words in the pointer window as well as the sentinel state. We interpret the last element of this vector to be the gate value: $g = a [ V + 1 ]$ . + +Any probability mass assigned to $g$ is given to the standard softmax vocabulary of the RNN. The final updated, normalized pointer probability over the vocabulary in the window then becomes: + +$$ +p _ { \mathrm { p t r } } ( y _ { i } | x _ { i } ) = \frac { 1 } { 1 - g } a [ 1 : V ] , +$$ + +where we denoted $[ 1 : V ]$ to mean the first $V$ elements of the vector. The final mixture model is the same as Eq. 4 but with the updated Eq. 5 for the pointer probability. + +This setup encourages the model to have both components compete: use pointers whenever possible and back-off to the standard softmax otherwise. By integrating the gating function into the pointer computation, it is influenced by both the RNN hidden state and the pointer window’s hidden states. + +# 2.5 MOTIVATION FOR THE SENTINEL AS GATING FUNCTION + +To make the best decision possible regarding which component to use the gating function must have as much context as possible. As we increase the window of words for the pointer component to consider, the RNN hidden state by itself isn’t guaranteed to accurately recall the identity or order of words it has recently seen (Adi et al., 2016). This is an obvious limitation of encoding a variable length sequence into a fixed dimensionality vector. + +If we want a pointer window where the length $L$ is in the hundreds, accurately modeling all of this information within the RNN hidden state is impractical. The position of specific words is also a vital feature as relevant words eventually fall out of the pointer component’s window. To correctly model this would require the RNN hidden state to store both the identity and position of each word in the pointer window. This is far beyond the capability of the fixed dimensionality RNN hidden state. + +For this reason, we integrate the gating function directly into the pointer network by use of the sentinel. The decision to back-off to the softmax vocabulary is then informed by both the query $q$ , generated using the RNN hidden state $h _ { N - 1 }$ , and from the contents of the hidden states in the pointer window itself. This allows the model to accurately query what hidden states are contained in the pointer window and avoid maintaining state for words that may have fallen out of the window. + +# 2.6 POINTER SENTINEL LOSS FUNCTION + +We minimize the cross-entropy loss of $\begin{array} { r } { - \sum _ { j } \hat { y _ { i j } } \log p \big ( y _ { i j } | x _ { i } \big ) } \end{array}$ , where $\hat { y } _ { i }$ is a one hot encoding of the correct output. During training, as $\hat { y } _ { i }$ is one hot, only a single mixed probability $p ( y _ { i j } )$ must be computed for calculating the loss. This can result in a far more efficient GPU implementation. At prediction time, when we want all values for $p ( y _ { i } | x _ { i } )$ , a maximum of $L$ word probabilities must be mixed, as there is a maximum of $L$ unique words in the pointer window of length $L$ . This mixing can occur on the CPU where random access indexing is more efficient than the GPU. + +Following the pointer sum attention network, the aim is to place probability mass from the attention mechanism on the correct output $\hat { y } _ { i }$ if it exists in the input. In the case of our mixture model the pointer loss instead becomes $\begin{array} { r } { - \log \left( g + \sum _ { i \in I ( y , x ) } a _ { i } \right) } \end{array}$ , where $I ( y , x )$ results in all positions of the correct output $y$ in the input $x$ . The gate $g$ may be assigned all probability mass if, for instance, the correct output $\hat { y } _ { i }$ exists only in the softmax-RNN vocabulary. There is no penalty if the model places the entire probability mass on any of the instances of the correct word in the input window. If the pointer component places the entirety of the probability mass on the gate $g$ , the pointer network incurs no penalty and the loss is entirely determined by the loss of the softmax-RNN component. + +Table 1: Statistics of the Penn Treebank, WikiText-2, and WikiText-103. The out of vocabulary $\left( \mathrm { O o V } \right)$ rate notes what percentage of tokens have been replaced by an $\left. u n k \right.$ token. The token count includes newlines which add to the structure of the WikiText datasets. + +
Penn Treebank TestWikiText-2 TestWikiText-103
Train ValidTrain ValidTrain Valid
Articles---600606028,47560Test 60
Tokens929k73k 10,00082k2,088k217k245k103,227k217k245k
Vocab size OoV rate4.8%33,278 2.6%267,735 0.4%
+ +# 2.7 PARAMETERS AND COMPUTATION TIME + +The pointer sentinel-LSTM mixture model results in a relatively minor increase in parameters and computation time, especially when compared to the model size required to achieve similar performance using a standard LSTM. The only two additional parameters required by the model are those required for computing $q$ , specifically $\dot { W } \in \mathbb { R } ^ { H \times H }$ and $\bar { b } \in \mathbb { R } ^ { H }$ , and the sentinel vector embedding, $s \in \mathbb { R } ^ { H }$ . This is independent of the depth of the RNN as the pointer component only interacts with the output of the final RNN layer. The additional $H ^ { 2 } + 2 H \bar { }$ parameters are minor compared to a single LSTM layer’s $8 H ^ { 2 } + 4 \dot { H }$ parameters. Most models also use multiple LSTM layers. + +In terms of additional computation, a pointer sentinel-LSTM of window size $L$ only requires computing the query $q$ (a linear layer with tanh activation), a total of $L$ parallelizable inner product calculations, and the attention scores for the $L$ resulting scalars via the softmax function. + +# 3 RELATED WORK + +Considerable research has been dedicated to the task of language modeling, from traditional machine learning techniques such as n-grams to deep neural sequence models. + +Mixture models composed of various knowledge sources have been proposed in the past for language modeling. Rosenfeld (1996) uses a maximum entropy model to combine a variety of information sources to improve language modeling on news text and speech. These information sources include complex overlapping n-gram distributions and n-gram caches that aim to capture rare words. + +Beyond n-grams, neural sequence models such as recurrent neural networks have been shown to achieve state of the art results (Mikolov et al., 2010). A variety of RNN regularization methods have been explored, including a number of dropout variations (Zaremba et al., 2014; Gal, 2015) which prevent overfitting of complex LSTM language models. Other work has modified the RNN architecture to better handle increased recurrence depth (Zilly et al., 2016). + +In order to increase capacity and minimize the impact of vanishing gradients, some language and translation models have also added a soft attention or memory component (Bahdanau et al., 2015; Sukhbaatar et al., 2015; Cheng et al., 2016; Kumar et al., 2016; Xiong et al., 2016; Ahn et al., 2016). These mechanisms allow for the retrieval and use of relevant previous hidden states. Soft attention mechanisms need to first encode the relevant word into a state vector and then decode it again, even if the output word is identical to the input word used to compute that hidden state or memory. A drawback to soft attention is that if, for instance, January and March are both equally attended candidates, the attention mechanism may blend the two vectors, resulting in a context vector closest to February (Kadlec et al., 2016). Even with attention, the standard softmax classifier being used in these models often struggles to correctly predict rare or previously unknown words. + +Attention-based pointer mechanisms were introduced in Vinyals et al. (2015) where the pointer network is able to select elements from the input as output. In the above example, only January or March would be available as options, as February does not appear in the input. The use of pointer networks have been shown to help with geometric problems (Vinyals et al., 2015), code generation (Ling et al., 2016), summarization (Gu et al., 2016; Gulc¸ehre et al. ¨ , 2016), question answering (Kadlec et al., 2016). While pointer networks improve performance on rare words and long-term dependencies they are unable to select words that do not exist in the input. + +Gulc¸ehre et al. ¨ (2016) introduce a pointer softmax model that can generate output from either the vocabulary softmax of an RNN or the location softmax of the pointer network. Not only does this allow for producing OoV words which are not in the input, the pointer softmax model is able to better deal with rare and unknown words than a model only featuring an RNN softmax. Rather than constructing a mixture model as in our work, they use a switching network to decide which component to use. For neural machine translation, the switching network is conditioned on the representation of the context of the source text and the hidden state of the decoder. The pointer network is not used as a source of information for the switching network as in our model. The pointer and RNN softmax are scaled according to the switching network and the word or location with the highest final attention score is selected for output. Although this approach uses both a pointer and RNN component, it is not a mixture model and does not combine the probabilities for a word if it occurs in both the pointer location softmax and the RNN vocabulary softmax. In our model the word probability is a mix of both the RNN and pointer components, allowing for better predictions when the context may be ambiguous. + +Extending this concept further, the latent predictor network (Ling et al., 2016) generates an output sequence conditioned on an arbitrary number of base models where each base model may have differing granularity. In their task of code generation, the output could be produced one character at a time using a standard softmax or instead copy entire words from referenced text fields using a pointer network. As opposed to Gulc¸ehre et al. ¨ (2016), all states which produce the same output are merged by summing their probabilities. The model requires a complex training process involving the forward-backward algorithm for Semi-Markov models to prevent an exponential path explosion. + +# 4 WIKITEXT - A BENCHMARK FOR LANGUAGE MODELING + +We first describe the most commonly used language modeling dataset and its pre-processing in order to then motivate the need for a new benchmark dataset. + +# 4.1 PENN TREEBANK + +In order to compare our model to the many recent neural language models, we conduct word-level prediction experiments on the Penn Treebank (PTB) dataset (Marcus et al., 1993), pre-processed by Mikolov et al. (2010). The dataset consists of $9 2 9 \mathrm { k }$ training, $7 3 \mathrm { k }$ validation, and ${ } ^ { 8 2 \mathrm { k } }$ test words. As part of the pre-processing performed by Mikolov et al. (2010), words were lower-cased, numbers were replaced with N, newlines were replaced with $\langle e o s \rangle$ , and all other punctuation was removed. The vocabulary is the most frequent 10k words with OoV tokens replaced by an $\left. u n k \right.$ token. For full statistics, refer to Table 1. + +# 4.2 REASONS FOR A NEW DATASET + +While the processed version of the PTB above has been frequently used for language modeling, it has many limitations. The tokens in PTB are all lower case, stripped of any punctuation, and limited to a vocabulary of only 10k words. These limitations mean that the PTB is unrealistic for real language use, especially when far larger vocabularies with many rare words are involved. The appendix contains a graph illustrating this using a Zipfian plot over the training partition of the PTB, with the curve stopping abruptly at the 10k limit. Given that accurately predicting rare words, such as named entities, is an important task for many applications, the lack of a long tail is problematic. + +Other larger scale language modeling datasets exist. Unfortunately, they either have restrictive licensing which prevents widespread use or have randomized sentence ordering (Chelba et al., 2013) which is unrealistic for most language use and prevents the effective learning and evaluation of longer term dependencies. Hence, we constructed a language modeling dataset using text extracted from Wikipedia and have made this available to the community. + +# 4.3 CONSTRUCTION AND PRE-PROCESSING + +We selected articles only fitting the Good or Featured article criteria specified by editors on Wikipedia. These articles have been reviewed by humans and are considered well written, factually accurate, broad in coverage, neutral in point of view, and stable. This resulted in 23,805 Good articles and 4,790 Featured articles. The text for each article was extracted using the Wikipedia API. Extracting text from Wikipedia mark-up is nontrivial due to the large number of macros in use, used for metric conversions, abbreviations, language notation, and date handling. + +Once extracted, specific sections which primarily featured lists were removed by default. Other minor bugs, such as sort keys and Edit buttons that leaked in from the HTML, were also removed. Mathematical formulae and $\mathrm { { I A T } _ { E } X }$ code were replaced with $\langle f o r m u l a \rangle$ tokens. Normalization and tokenization were performed using the Moses tokenizer (Koehn et al., 2007), slightly augmented to further split numbers $( 8 , 6 0 0 8 \ \textcircled { \omega } , @ \ 6 0 0 )$ and with some additional minor fixes. Following Chelba et al. (2013) a vocabulary was constructed by discarding all words with a count below 3. Words outside of the vocabulary were mapped to the $\left. u n k \right.$ token, also a part of the vocabulary. + +# 4.4 STATISTICS + +The full WikiText dataset is over 103 million words in size, a hundred times larger than the PTB. It is also a tenth the size of the One Billion Word Benchmark (Chelba et al., 2013), one of the largest publicly available language modeling benchmarks, whilst consisting of articles that allow for the capture and usage of longer term dependencies as might be found in many real world tasks. + +The dataset is available in two different sizes: WikiText-2 and WikiText-103. Both feature punctuation, original casing, a larger vocabulary, and numbers. WikiText-2 is two times the size of the Penn Treebank dataset. WikiText-103 features all extracted articles. Both datasets use the same articles for validation and testing, only differing in the vocabularies. For full statistics, refer to Table 1. + +# 5 EXPERIMENTS + +# 5.1 TRAINING DETAILS + +As the pointer sentinel mixture model uses the outputs of the RNN from up to $L$ timesteps back, this presents a challenge for training. If we do not regenerate the stale historical outputs of the RNN when we update the gradients, backpropagation through these stale outputs may result in incorrect gradient updates. If we do regenerate all stale outputs of the RNN, the training process is far slower. As we can make no theoretical guarantees on the impact of stale outputs on gradient updates, we opt to regenerate the window of RNN outputs used by the pointer component after each gradient update. + +We also use truncated backpropagation through time (BPTT) in a different manner to many other RNN language models. Truncated BPTT allows for practical time-efficient training of RNN models but has fundamental trade-offs that are rarely discussed. For running truncated BPTT, BPTT is run for $k _ { 2 }$ timesteps once every $k _ { 1 }$ timesteps. For many RNN language modeling training schemes, $k _ { 1 } = k _ { 2 }$ , meaning that every $k$ timesteps truncated BPTT is performed for the $k$ previous timesteps. This results in only a single RNN output receiving backpropagation for $k$ timesteps, with the other extreme being that the first token receives backpropagation for 0 timesteps. As such, most words in the training data will never experience a full backpropagation for $k$ timesteps. + +In our task, the pointer component always looks $L$ timesteps into the past if $L$ past timesteps are available. We select $k _ { 1 } = 1$ and $k _ { 2 } = L$ such that for each timestep we perform backpropagation for $L$ timesteps and advance one timestep at a time. Only the loss for the final predicted word is used for backpropagation through the window. + +# 5.2 MODEL DETAILS + +Our experimental setup reflects that of Zaremba et al. (2014) and Gal (2015). We increased the number of timesteps used during training from 35 to 100, matching the length of the window $L$ . Batch size was increased to 32 from 20. We also halve the learning rate when validation perplexity is worse than the previous iteration, stopping training when validation perplexity fails to improve for three epochs or when 64 epochs are reached. The gradients are rescaled if their global norm exceeds 1 (Pascanu et al., 2013b).3 We evaluate the medium model configuration which features a two layer + +Table 2: Single model perplexity on validation and test sets for the Penn Treebank language modeling task. For our models and the models of Zaremba et al. (2014) and Gal (2015), medium and large refer to a 650 and 1500 unit two layer LSTM respectively. Parameter numbers with $^ \ddag$ are estimates based upon our understanding of the model and with reference to Kim et al. (2016). + +
ModelParametersValidationTest
Mikolov & Zweig (2012) - KN-52M141.2
Mikolov & Zweig (2012) - KN5 + cache2M125.7
Mikolov&Zweig g(2012) -RNN6M124.7
Mikolov&Zweig g(2012)-RNN-LDA7M113.7
Mikolov & Zweig ( g(2012) - RNN-LDA + KN-5 +cache9M92.0
Pascanu et al. (2013a) - Deep RNN6M107.5
Cheng et al. (2014) - Sum-Prod Net5Mt100.0
Zaremba et al. (2014) - LSTM (medium) Zaremba et al. (2014) - LSTM (large)20M86.282.7
Gal (2015) - Variational LSTM (medium, untied)66M82.278.4
Gal (2015) - Variational LSTM (medium,untied, MC)20M 20M81.9 ± 0.279.7 ± 0.1
Gal (2015) - Variational LSTM (large,untied)66M78.6 ±0.1
Gal (2015) - Variational LSTM (large,untied, MC)77.9 ± 0.375.2 ± 0.2
Kim etal. (2016) - CharCNN66M 19M173.4± 0.0
Zilly et al. (2016) - Variational RHN32M78.9
72.871.3
Zoneout + Variational LSTM (medium)20M84.480.6
Pointer Sentinel-LSTM (medium)21M72.470.9
+ +LSTM of hidden size 650. We compare against the large model configuration which features a two layer LSTM of hidden size 1500. + +We produce results for two model types, an LSTM model that uses dropout regularization and the pointer sentinel-LSTM model. The variants of dropout used were zoneout (Krueger et al., 2016) and variational inference based dropout (Gal, 2015). Zoneout, which stochastically forces some recurrent units to maintain their previous values, was used for the recurrent connections within the LSTM. Variational inference based dropout, where the dropout mask for a layer is locked across timesteps, was used on the input to each RNN layer and also on the output of the final RNN layer. We used a value of 0.5 for both dropout connections. + +# 5.3 COMPARISON OVER PENN TREEBANK + +Table 2 compares the pointer sentinel-LSTM to a variety of other models on the Penn Treebank dataset. The pointer sentinel-LSTM achieves the lowest perplexity, followed by the recent Recurrent Highway Networks (Zilly et al., 2016). The medium pointer sentinel-LSTM model also achieves lower perplexity than the large LSTM models. Note that the best performing large variational LSTM model uses computationally intensive Monte Carlo (MC) dropout averaging. Monte Carlo dropout averaging is a general improvement for any sequence model that uses dropout but comes at a greatly increased test time cost. In Gal (2015) it requires rerunning the test model with 1000 different dropout masks. The pointer sentinel-LSTM is able to achieve these results with far fewer parameters than other models with comparable performance, specifically with less than a third the parameters used in the large variational LSTM models. + +We also test a variational LSTM that uses zoneout, which serves as the RNN component of our pointer sentinel-LSTM mixture. This variational LSTM model performs BPTT for the same length $L$ as the pointer sentinel-LSTM, where $L = 1 0 0$ timesteps. The results for this model ablation are worse than that of Gal (2015)’s variational LSTM without Monte Carlo dropout averaging. + +# 5.4 COMPARISON OVER WIKITEXT-2 + +As WikiText-2 is being introduced in this dataset, there are no existing baselines. We provide two baselines to compare the pointer sentinel-LSTM against: our variational LSTM using zoneout and + +
ModelParametersValidationTest
Variational LSTM implementation from Gal (2015)20M101.796.3
Zoneout + Variational LSTM20M108.7100.9
Pointer Sentinel-LSTM21M84.880.8
+ +Table 3: Single model perplexity on validation and test sets for the WikiText-2 language modeling task. All compared models use a two layer LSTM with a hidden size of 650. + +the medium variational LSTM used in Gal (2015).4 Attempts to run the Gal (2015) large model variant, a two layer LSTM with hidden size 1500, resulted in out of memory errors on a 12GB K80 GPU, likely due to the increased vocabulary size. We chose the best hyperparameters from PTB experiments for all models. Table 3 shows a similar gain made by the pointer sentinel-LSTM over the variational LSTM models. The variational LSTM from Gal (2015) again beats out the variational LSTM used as a base for our experiments. + +# 6 ANALYSIS + +# 6.1 IMPACT ON RARE WORDS + +A hypothesis as to why the pointer sentinel-LSTM can outperform an LSTM is that the pointer component allows the model to effectively reproduce rare words. The RNN may better use hidden state capacity by relying on the pointer component. The pointer component may also allow for a sharper selection of a single word than may be possible using only the softmax. + +The appendix contains a graph which shows the improvement of perplexity when comparing the LSTM to the pointer sentinel-LSTM. Words are split across buckets according to frequency. As the words become rarer, the pointer sentinel-LSTM has stronger improvements in perplexity. Even on the Penn Treebank, where there is a relative absence of rare words due to only selecting the most frequent 10k words, we can see the pointer sentinel-LSTM mixture model provides a direct benefit. + +While the improvements are largest on rare words, we can see the pointer sentinel-LSTM is still helpful on relatively frequent words. This may be the pointer component directly selecting the word or through the pointer supervision signal improving the RNN by allowing gradients to flow directly to other occurrences of the word in that window. + +# 6.2 QUALITATIVE ANALYSIS OF POINTER USAGE + +In a qualitative analysis, we visualized the gate use and pointer attention for a variety of examples in the validation set, focusing on predictions where the gate primarily used the pointer component. These visualizations are available in the appendix. + +As expected, the pointer component is heavily used for rare names such as Seidman (23 times in training), Iverson (7 times in training), and Rosenthal (3 times in training). The pointer component was also heavily used when it came to other named entity names such as companies like Honeywell (8 times in training) and Integrated (41 times in training, though due to lowercasing of words this includes integrated circuits, fully integrated, and other generic usage). Surprisingly, the pointer component was also used for many frequent tokens. For selecting units of measurement (tons, kilograms, . . . ) or the short scale of numbers (thousands, millions, billions, . . . ), the pointer would refer to recent usage. This is to be expected, especially when phrases are of the form increased from N tons to N tons. The model can even be found relying on a mixture of the softmax and the pointer for predicting frequent verbs such as said. + +Finally, the pointer component can be seen pointing to words at the very end of the 100 word window (position 97), a far longer horizon than the 35 steps that most language models truncate their backpropagation training to. This illustrates why the gating function must be integrated into the pointer component. If the gating function could only use the RNN hidden state, it would need to be wary of words that were near the tail of the pointer, especially if it was not able to accurately track exactly how long it was since seeing a word. By integrating the gating function into the pointer component, we avoid the RNN hidden state having to maintain this intensive bookkeeping. + +# 7 CONCLUSION + +We introduced the pointer sentinel mixture model and the WikiText language modeling dataset. The pointer sentinel mixture model can be applied to any classifier that ends in a softmax, including various recurrent neural network building blocks. When applied to a standard LSTM, the pointer sentinel-LSTM achieves state of the art results in language modeling over the Penn Treebank while using few additional parameters and little additional computational complexity at prediction time. + +We have also motivated the need to move from Penn Treebank to a new language modeling dataset for long range dependencies, providing WikiText-2 and WikiText-103 as potential options. We hope these new datasets can serve as a platform to improve handling of rare words and the usage of long term dependencies in language modeling. + +# REFERENCES + +Yossi Adi, Einat Kermany, Yonatan Belinkov, Ofer Lavi, and Yoav Goldberg. Fine-grained Analysis of Sentence Embeddings Using Auxiliary Prediction Tasks. arXiv preprint arXiv:1608.04207, 2016. +Sungjin Ahn, Heeyoul Choi, Tanel Parnamaa, and Yoshua Bengio. A Neural Knowledge Language ¨ Model. CoRR, abs/1608.00318, 2016. +Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural Machine Translation by Jointly Learning to Align and Translate. In ICLR, 2015. +Ciprian Chelba, Tomas Mikolov, Mike Schuster, Qi Ge, Thorsten Brants, Phillipp Koehn, and Tony Robinson. One Billion Word Benchmark for Measuring Progress in Statistical Language Modeling. arXiv preprint arXiv:1312.3005, 2013. +Jianpeng Cheng, Li Dong, and Mirella Lapata. Long Short-Term Memory-Networks for Machine Reading. CoRR, abs/1601.06733, 2016. +Wei-Chen Cheng, Stanley Kok, Hoai Vu Pham, Hai Leong Chieu, and Kian Ming Adam Chai. Language Modeling with Sum-Product Networks. In INTERSPEECH, 2014. +Yarin Gal. A Theoretically Grounded Application of Dropout in Recurrent Neural Networks. arXiv preprint arXiv:1512.05287, 2015. +Jiatao Gu, Zhengdong Lu, Hang Li, and Victor O. K. Li. Incorporating Copying Mechanism in Sequence-to-Sequence Learning. CoRR, abs/1603.06393, 2016. +C¸ aglar Gulc¸ehre, Sungjin Ahn, Ramesh Nallapati, Bowen Zhou, and Yoshua Bengio. Pointing the ¨ Unknown Words. arXiv preprint arXiv:1603.08148, 2016. +Sepp Hochreiter and Jurgen Schmidhuber. Long Short-Term Memory. ¨ Neural Computation, 9(8): 1735–1780, Nov 1997. ISSN 0899-7667. +Rudolf Kadlec, Martin Schmid, Ondrej Bajgar, and Jan Kleindienst. Text Understanding with the Attention Sum Reader Network. arXiv preprint arXiv:1603.01547, 2016. +Yoon Kim, Yacine Jernite, David Sontag, and Alexander M. Rush. Character-aware neural language models. CoRR, abs/1508.06615, 2016. +Philipp Koehn, Hieu Hoang, Alexandra Birch, Chris Callison-Burch, Marcello Federico, Nicola Bertoldi, Brooke Cowan, Wade Shen, Christine Moran, Richard Zens, Chris Dyer, Ondej Bojar, Alexandra Constantin, and Evan Herbst. Moses: Open Source Toolkit for Statistical Machine Translation. In ACL, 2007. + +David Krueger, Tegan Maharaj, Janos Kram ´ ar, Mohammad Pezeshki, Nicolas Ballas, Nan Rosemary ´ Ke, Anirudh Goyal, Yoshua Bengio, Hugo Larochelle, Aaron Courville, et al. Zoneout: Regularizing RNNs by Randomly Preserving Hidden Activations. arXiv preprint arXiv:1606.01305, 2016. + +Ankit Kumar, Ozan Irsoy, Peter Ondruska, Mohit Iyyer, James Bradbury, Ishaan Gulrajani, Victor Zhong, Romain Paulus, and Richard Socher. Ask me anything: Dynamic memory networks for natural language processing. In ICML, 2016. + +Wang Ling, Edward Grefenstette, Karl Moritz Hermann, Tomas Kocisk ´ y, Andrew Senior, ´ Fumin Wang, and Phil Blunsom. Latent Predictor Networks for Code Generation. CoRR, abs/1603.06744, 2016. + +Mitchell P. Marcus, Beatrice Santorini, and Mary Ann Marcinkiewicz. Building a Large Annotated Corpus of English: The Penn Treebank. Computational Linguistics, 19:313–330, 1993. + +Tomas Mikolov and Geoffrey Zweig. Context dependent recurrent neural network language model. In SLT, 2012. + +Tomas Mikolov, Martin Karafiat, Luk ´ as Burget, Jan Cernock ´ y, and Sanjeev Khudanpur. Recurrent ´ neural network based language model. In INTERSPEECH, 2010. + +Razvan Pascanu, C¸ aglar Gulc¸ehre, Kyunghyun Cho, and Yoshua Bengio. How to Construct Deep ¨ Recurrent Neural Networks. CoRR, abs/1312.6026, 2013a. + +Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural networks. In ICML, 2013b. + +Roni Rosenfeld. A Maximum Entropy Approach to Adaptive Statistical Language Modeling. 1996. + +Sainbayar Sukhbaatar, Arthur Szlam, Jason Weston, and Rob Fergus. End-To-End Memory Networks. In NIPS, 2015. + +Oriol Vinyals, Meire Fortunato, and Navdeep Jaitly. Pointer networks. In Advances in Neural Information Processing Systems, pp. 2692–2700, 2015. + +Caiming Xiong, Stephen Merity, and Richard Socher. Dynamic Memory Networks for Visual and Textual Question Answering. In ICML, 2016. + +Wojciech Zaremba, Ilya Sutskever, and Oriol Vinyals. Recurrent neural network regularization. arXiv preprint arXiv:1409.2329, 2014. + +Julian Georg Zilly, Rupesh Kumar Srivastava, Jan Koutn´ık, and Jurgen Schmidhuber. Recurrent ¨ Highway Networks. arXiv preprint arXiv:1607.03474, 2016. + +# APPENDIX + +![](images/c45d689e3a9e29ba2e76713a83dcf9f4d4092e2ed8fea40c92d7c483e5b46e8e.jpg) +Figure A1: Mean difference in log perplexity on PTB when using the pointer sentinel-LSTM compared to the LSTM model. Words were sorted by frequency and split into equal sized buckets. + +# POINTER USAGE ON THE PENN TREEBANK + +For a qualitative analysis, we visualize how the pointer component is used within the pointer sentinel mixture model. The gate refers to the result of the gating function, with 1 indicating the RNN component is exclusively used whilst 0 indicates the pointer component is exclusively used. We begin with predictions that are using the RNN component primarily and move to ones that use the pointer component primarily. + +![](images/bfe1101a2fb87f4dcc5d4a29f6b3f7d8300c9eaa08d693f87d33a6263f3313bb.jpg) +Figure A2: In predicting the fall season has been a good one especially for those retailers, the pointer component suggests many words from the historical window that would fit - retailers, investments, chains, and institutions. The gate is still primarily weighted towards the RNN component however. + +![](images/74f8b37f282e29b8fa0aba935aeef9ab0765afe5633d21f65b8558f8effb4fca.jpg) +Figure A3: In predicting the national cancer institute also projected that overall u.s. mortality, the pointer component is focused on mortality and rates, both of which would fit. The gate is still primarily weighted towards the RNN component. + +![](images/29f2ee31d97f97d485e728471fd2cd3eb34ab3a8f310dc8086e09059401473fd.jpg) +Figure A4: In predicting people do n’t seem to be unhappy with it he said, the pointer component correctly selects said and is almost equally weighted with the RNN component. This is surprising given how frequent the word said is used within the Penn Treebank. + +![](images/ef168c7e1ca9bc89964097cbd337eb2c1028caa5e8e233bb485daa4283e232c1.jpg) +Figure A5: For predicting the federal government has had to pump in $\$ 1$ N billion, the pointer component focuses on the recent usage of billion with highly similar context. The pointer component is also relied upon more heavily than the RNN component - surprising given the frequency of billion within the Penn Treebank and that the usage was quite recent. + +![](images/dd311d97c72a9f4fa21add99ecf8515494eb4cc97c98fcb7f45e7fd312eb7776.jpg) +Figure A6: For predicting $\left. u n k \right.$ ’s ghost sometimes runs through the e ring dressed like gen. noriega, the pointer component reaches 97 timesteps back to retrieve gen. douglas. Unfortunately this prediction is incorrect but without additional context a human would have guessed the same word. This additionally illustrates why the gating function must be integrated into the pointer component. The named entity gen. douglas would have fallen out of the window in only four more timesteps, a fact that the RNN hidden state would not be able to accurately retain for almost 100 timesteps. + +![](images/12273399d0022a69702f98b310adb69608c6c1657321fc3e0ec1618d18640606.jpg) +Figure A7: For predicting mr. iverson, the pointer component has learned the ability to point to the last name of the most recent named entity. The named entity also occurs 45 timesteps ago, which is longer than the 35 steps that most language models truncate their backpropagation to. + +![](images/81f496401397d434510e2273937e7d5a166e9cb126ae3d3fa7dc1987293081e2.jpg) +Figure A8: For predicting mr. rosenthal, the pointer is almost exclusively used and reaches back 65 timesteps to identify bruce rosenthal as the person speaking, correctly only selecting the last name. + +![](images/5244179d618289042f46d23f44db0ec07e116e8a3e2a4f736497656a6a7b8d86.jpg) +Figure A9: For predicting in composite trading on the new york stock exchange yesterday integrated, the company Integrated and the $\left. u n k \right.$ token are primarily attended to by the pointer component, with nearly the full prediction being determined by the pointer component. + +# ZIPFIAN PLOT OVER PTB AND WIKITEXT-2 + +![](images/fef900b9bfea3ce6d1b68bfa9dc98ab50ad06567225c817639d232fbc434491e.jpg) +Figure A10: Zipfian plot over the training partition in Penn Treebank and WikiText-2 datasets. Notice the severe drop on the Penn Treebank when the vocabulary hits $1 0 ^ { 4 }$ . Two thirds of the vocabulary in WikiText-2 are past the vocabulary cut-off of the Penn Treebank. + +ZIPFIAN PLOT OVER WIKITEXT-103 + +![](images/750b091fb947314259a95c5ff06b556058e55aa11164e7c6a76439cd5d72c9cf.jpg) +Figure A11: Zipfian plot over the training partition in the WikiText-103 dataset. With the dataset containing over 100 million tokens, there is reasonable coverage of the long tail of the vocabulary. \ No newline at end of file diff --git a/parse/train/Byj72udxe/Byj72udxe_content_list.json b/parse/train/Byj72udxe/Byj72udxe_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..614c9ca5a3fb062424e5010c77c27ab8513e5d3b --- /dev/null +++ b/parse/train/Byj72udxe/Byj72udxe_content_list.json @@ -0,0 +1,1557 @@ +[ + { + "type": "text", + "text": "POINTER SENTINEL MIXTURE MODELS ", + "text_level": 1, + "bbox": [ + 176, + 98, + 648, + 121 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Stephen Merity, Caiming Xiong, James Bradbury & Richard Socher \nMetaMind - A Salesforce Company \nPalo Alto, CA, USA \n{smerity,cxiong,james.bradbury,rsocher}@salesforce.com ", + "bbox": [ + 184, + 143, + 712, + 202 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 237, + 544, + 252 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recent neural network sequence models with softmax classifiers have achieved their best language modeling performance only with very large hidden states and large vocabularies. Even then they struggle to predict rare or unseen words even if the context makes the prediction unambiguous. We introduce the pointer sentinel mixture architecture for neural sequence models which has the ability to either reproduce a word from the recent context or produce a word from a standard softmax classifier. We explore applying the pointer sentinel mixture model to the LSTM, a standard recurrent neural network building block. Utilizing an LSTM that achieves 80.6 perplexity on the Penn Treebank, the pointer sentinel-LSTM model pushes perplexity down to 70.9 while using far fewer parameters than an LSTM that achieves similar results. In order to evaluate how well language models can exploit longer contexts and deal with more realistic vocabularies and corpora we also introduce the freely available WikiText corpus.1 ", + "bbox": [ + 233, + 272, + 764, + 452 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 487, + 336, + 503 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "A major difficulty in language modeling is learning when to predict specific words from the immediate context. For instance, imagine a new person is introduced and two paragraphs later the context would allow one to very accurately predict this person’s name as the next word. For standard neural sequence models to predict this name, they would have to encode the name, store it for many time steps in their hidden state, and then decode it when appropriate. As the hidden state is limited in capacity and the optimization of such models suffer from the vanishing gradient problem, this is a lossy operation when performed over many timesteps. This is especially true for rare words. ", + "bbox": [ + 174, + 521, + 825, + 619 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Models with soft attention or memory components have been proposed to help deal with this challenge, aiming to allow for the retrieval and use of relevant previous hidden states, in effect increasing hidden state capacity and providing a path for gradients not tied to timesteps. Even with attention, the standard softmax classifier that is being used in these models often struggles to correctly predict rare or previously unknown words. ", + "bbox": [ + 176, + 627, + 823, + 695 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Pointer networks (Vinyals et al., 2015) provide one potential solution for rare and out of vocabulary (OoV) words as a pointer network uses attention to select an element from the input as output. This allows it to produce previously unseen input tokens. While pointer networks improve performance on rare words and long-term dependencies they are unable to select words that do not exist in the input. ", + "bbox": [ + 174, + 703, + 823, + 772 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We introduce a mixture model, illustrated in Fig. 1, that combines the advantages of standard softmax classifiers with those of a pointer component for effective and efficient language modeling. Rather than relying on the RNN hidden state to decide when to use the pointer, as in the recent work of Gulc¸ehre et al. ¨ (2016), we allow the pointer component itself to decide when to use the softmax vocabulary through a sentinel. The model improves the state of the art perplexity on the Penn Treebank. Since this commonly used dataset is small and no other freely available alternative exists that allows for learning long range dependencies, we also introduce a new benchmark dataset for language modeling called WikiText. ", + "bbox": [ + 174, + 780, + 825, + 891 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/8c26dfca638e32eea73667de18d4a96eb9d4f36a18ee233fb6986050ddd64f47.jpg", + "image_caption": [ + "Figure 1: Illustration of the pointer sentinel-RNN mixture model. $g$ is the mixture gate which uses the sentinel to dictate how much probability mass to give to the vocabulary. " + ], + "image_footnote": [], + "bbox": [ + 305, + 98, + 692, + 246 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 THE POINTER SENTINEL FOR LANGUAGE MODELING ", + "text_level": 1, + "bbox": [ + 174, + 313, + 650, + 329 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Given a sequence of words $w _ { 1 } , \\ldots , w _ { N - 1 }$ , our task is to predict the next word $w _ { N }$ ", + "bbox": [ + 176, + 343, + 717, + 358 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 THE SOFTMAX-RNN COMPONENT", + "text_level": 1, + "bbox": [ + 176, + 375, + 454, + 388 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Recurrent neural networks (RNNs) have seen widespread use for language modeling (Mikolov et al., 2010) due to their ability to, at least in theory, retain long term dependencies. RNNs employ the chain rule to factorize the joint probabilities over a sequence of tokens: $p ( w _ { 1 } , \\dots , w _ { N } ) =$ $\\begin{array} { r } { \\prod _ { i = 1 } ^ { N } p ( w _ { i } | w _ { 1 } , \\dots , w _ { i - 1 } ) } \\end{array}$ . More precisely, at each time step $i$ , we compute the RNN hidden state $h _ { i }$ according to the previous hidden state $h _ { i - 1 }$ and the input $x _ { i }$ such that $h _ { i } = R N N ( x _ { i } , h _ { i - 1 } )$ . When all the $N - 1$ words have been processed by the RNN, the final state $h _ { { N - 1 } }$ is fed into a softmax layer which computes the probability over a vocabulary of possible words: $p _ { \\mathrm { v o c a b } } ( w ) =$ softmax $\\left( U h _ { N - 1 } \\right)$ , where $\\mathbf { \\Psi } _ { p _ { \\mathrm { v o c a b } } } \\in \\dot { \\mathbb { R } } ^ { V }$ , $U \\in \\mathbf { \\overline { { R } } } ^ { V \\times H }$ , $H$ is the hidden size, and $V$ the vocabulary size. RNNs can suffer from the vanishing gradient problem. The LSTM (Hochreiter & Schmidhuber, 1997) architecture has been proposed to deal with this by updating the hidden state according to a set of gates. Our work focuses on the LSTM but can be applied to any RNN architecture that ends in a vocabulary softmax. ", + "bbox": [ + 173, + 400, + 825, + 569 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 THE POINTER NETWORK COMPONENT", + "text_level": 1, + "bbox": [ + 176, + 585, + 482, + 601 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section, we propose a modification to pointer networks for language modeling. To predict the next word in the sequence, a pointer network would select the member of the input sequence $p ( w _ { 1 } , \\dots , w _ { N - 1 } )$ with the maximal attention score as the output. ", + "bbox": [ + 174, + 612, + 825, + 655 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The simplest way to compute an attention score for a specific hidden state is an inner product with all the past hidden states $h$ , with each hidden state $\\boldsymbol { h } _ { i } ^ { \\star } \\in \\mathbb { R } ^ { H }$ . However, if we want to compute such a score for the most recent word (since this word may be repeated), we need to include the last hidden state itself in this inner product. Taking the inner product of a vector with itself results in the vector’s magnitude squared, meaning the attention scores would be strongly biased towards the most recent word. Hence we project the current hidden state to a query vector $q$ first. To produce the query $q$ we compute $q = \\mathrm { t a n h } ( W h _ { N - 1 } + b )$ , where $W \\in \\dot { \\mathbb { R } ^ { H \\times } } \\mathbf { \\check { \\mathit { H } } }$ , $b \\in \\mathring { \\mathbb { R } } ^ { H }$ , and $\\boldsymbol { q } ^ { \\mathbf { \\lambda } } \\in \\mathbb { R } ^ { H }$ . To generate the pointer attention scores, we compute the match between the previous RNN output states $h _ { i }$ and the query $q$ by taking the inner product, followed by a softmax activation function to obtain a probability distribution: ", + "bbox": [ + 173, + 661, + 825, + 800 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/469059124895a99c3ee85d7a23fb0904355a5368933e17f10525830a22cc6c19.jpg", + "text": "$$\n\\begin{array} { r } { z _ { i } = q ^ { T } h _ { i } , } \\\\ { a = \\mathrm { s o f t m a x } ( z ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 424, + 801, + 539, + 839 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $z \\in \\mathbb { R } ^ { L }$ , $a \\in \\mathbb { R } ^ { L }$ , and $L$ is the total number of hidden states. The probability mass assigned to a given word is the sum of the probability mass given to all token positions where the given word appears: ", + "bbox": [ + 174, + 840, + 826, + 883 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/c49f022a82926ffd594334936d27746c2f690ba865c32c91e4335746848bf3ae.jpg", + "text": "$$\np _ { \\mathrm { p t r } } ( w ) = \\sum _ { i \\in I ( w , x ) } a _ { i } ,\n$$", + "text_format": "latex", + "bbox": [ + 426, + 885, + 570, + 921 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/0171833abe0201710740ca22ff0191abc247c1cd6f229bbb5f4880daf49a948b.jpg", + "image_caption": [ + "Figure 2: Visualization of the pointer sentinel-RNN mixture model. The query, produced from applying an MLP to the last output of the RNN, is used by the pointer network to identify likely matching words from the past. The $\\odot$ nodes are inner products between the query and the RNN hidden states. If the pointer component is not confident, probability mass can be directed to the RNN by increasing the value of the mixture gate $g$ via the sentinel, seen in grey. If $g = 1$ then only the RNN is used. If $g = 0$ then only the pointer is used. " + ], + "image_footnote": [], + "bbox": [ + 269, + 103, + 722, + 260 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $I ( w , x )$ results in all positions of the word $w$ in the input $x$ and $p _ { \\mathrm { p t r } } \\in \\mathbb { R } ^ { V }$ . This technique, referred to as pointer sum attention, has been used for question answering (Kadlec et al., 2016). ", + "bbox": [ + 174, + 383, + 821, + 412 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Given the length of the documents used in language modeling, it may not be feasible for the pointer network to evaluate an attention score for all the words back to the beginning of the dataset. Instead, we may elect to maintain only a window of the $L$ most recent words for the pointer to match against. The length $L$ of the window is a hyperparameter that can be tuned on a held out dataset or by empirically analyzing how frequently a word at position $t$ appears within the last $L$ words. ", + "bbox": [ + 174, + 419, + 825, + 489 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To illustrate the advantages of this approach, consider a long article featuring two sentences President Obama discussed the economy and President Obama then flew to Prague. If the query was Which President is the article about?, probability mass could be applied to Obama in either sentence. If the question was instead Who flew to Prague?, only the latter occurrence of Obama provides the proper context. The attention sum model ensures that, as long as the entire attention probability mass is distributed on the occurrences of Obama, the pointer network can achieve zero loss. This flexibility provides supervision without forcing the model to put mass on supervision signals that may be incorrect or lack proper context. ", + "bbox": [ + 174, + 496, + 825, + 607 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 THE POINTER SENTINEL MIXTURE MODEL ", + "text_level": 1, + "bbox": [ + 174, + 623, + 514, + 638 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "While pointer networks have proven to be effective, they cannot predict output words that are not present in the input, a common scenario in language modeling. We propose to resolve this by using a mixture model that combines a standard softmax with a pointer. ", + "bbox": [ + 174, + 650, + 825, + 691 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our mixture model has two base distributions: the softmax vocabulary of the RNN output and the positional vocabulary of the pointer model. We refer to these as the RNN component and the pointer component respectively. To combine the two base distributions, we use a gating function $\\bar { g } \\ : = \\ : p ( z _ { i } \\ : = \\ : k | x _ { i } )$ where $z _ { i }$ is the latent variable stating which base distribution the data point belongs to. As we only have two base distributions, $g$ can produce a scalar in the range $[ 0 , 1 ]$ . A value of 0 implies that only the pointer is used and 1 means only the softmax-RNN is used. ", + "bbox": [ + 173, + 699, + 825, + 784 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/eb2b3c050181bba3b3a4a7f5601676418f3c1cf66a90cacb6cc22dd22fb2ceac.jpg", + "text": "$$\np ( y _ { i } | x _ { i } ) = g p _ { \\mathrm { v o c a b } } ( y _ { i } | x _ { i } ) + ( 1 - g ) p _ { \\mathrm { p t r } } ( y _ { i } | x _ { i } ) .\n$$", + "text_format": "latex", + "bbox": [ + 339, + 787, + 658, + 806 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "While the models could be entirely separate, we re-use many of the parameters for the softmaxRNN and pointer components. This sharing minimizes the total number of parameters in the model and capitalizes on the pointer network’s supervision for the RNN component. ", + "bbox": [ + 174, + 810, + 825, + 853 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.4 DETAILS OF THE GATING FUNCTION ", + "text_level": 1, + "bbox": [ + 176, + 869, + 468, + 883 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To compute the new pointer sentinel gate $g$ , we modify the pointer component. In particular, we add an additional element to $z$ , the vector of attention scores as defined in Eq. 1. This element is computed using an inner product between the query and the sentinel2 vector $s \\in \\mathbb { R } ^ { H }$ . This change can be summarized by changing Eq. 2 to $a = \\operatorname { \\bar { s o f t m a x } } \\left( \\left[ z ; q ^ { T } s \\right] \\right)$ . We define $a \\in \\mathbb { R } ^ { V + 1 }$ to be the attention distribution over both the words in the pointer window as well as the sentinel state. We interpret the last element of this vector to be the gate value: $g = a [ V + 1 ]$ . ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 160 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Any probability mass assigned to $g$ is given to the standard softmax vocabulary of the RNN. The final updated, normalized pointer probability over the vocabulary in the window then becomes: ", + "bbox": [ + 171, + 166, + 823, + 195 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/b60657368b68e271cad13cfea9f485c207b1c64656bcc81124ecf7ea8b6fd18e.jpg", + "text": "$$\np _ { \\mathrm { p t r } } ( y _ { i } | x _ { i } ) = \\frac { 1 } { 1 - g } a [ 1 : V ] ,\n$$", + "text_format": "latex", + "bbox": [ + 400, + 205, + 596, + 238 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where we denoted $[ 1 : V ]$ to mean the first $V$ elements of the vector. The final mixture model is the same as Eq. 4 but with the updated Eq. 5 for the pointer probability. ", + "bbox": [ + 174, + 250, + 825, + 279 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This setup encourages the model to have both components compete: use pointers whenever possible and back-off to the standard softmax otherwise. By integrating the gating function into the pointer computation, it is influenced by both the RNN hidden state and the pointer window’s hidden states. ", + "bbox": [ + 174, + 285, + 825, + 327 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.5 MOTIVATION FOR THE SENTINEL AS GATING FUNCTION ", + "text_level": 1, + "bbox": [ + 174, + 349, + 604, + 364 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To make the best decision possible regarding which component to use the gating function must have as much context as possible. As we increase the window of words for the pointer component to consider, the RNN hidden state by itself isn’t guaranteed to accurately recall the identity or order of words it has recently seen (Adi et al., 2016). This is an obvious limitation of encoding a variable length sequence into a fixed dimensionality vector. ", + "bbox": [ + 174, + 377, + 825, + 448 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "If we want a pointer window where the length $L$ is in the hundreds, accurately modeling all of this information within the RNN hidden state is impractical. The position of specific words is also a vital feature as relevant words eventually fall out of the pointer component’s window. To correctly model this would require the RNN hidden state to store both the identity and position of each word in the pointer window. This is far beyond the capability of the fixed dimensionality RNN hidden state. ", + "bbox": [ + 174, + 454, + 825, + 525 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For this reason, we integrate the gating function directly into the pointer network by use of the sentinel. The decision to back-off to the softmax vocabulary is then informed by both the query $q$ , generated using the RNN hidden state $h _ { N - 1 }$ , and from the contents of the hidden states in the pointer window itself. This allows the model to accurately query what hidden states are contained in the pointer window and avoid maintaining state for words that may have fallen out of the window. ", + "bbox": [ + 174, + 531, + 825, + 602 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.6 POINTER SENTINEL LOSS FUNCTION ", + "text_level": 1, + "bbox": [ + 176, + 623, + 472, + 637 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We minimize the cross-entropy loss of $\\begin{array} { r } { - \\sum _ { j } \\hat { y _ { i j } } \\log p \\big ( y _ { i j } | x _ { i } \\big ) } \\end{array}$ , where $\\hat { y } _ { i }$ is a one hot encoding of the correct output. During training, as $\\hat { y } _ { i }$ is one hot, only a single mixed probability $p ( y _ { i j } )$ must be computed for calculating the loss. This can result in a far more efficient GPU implementation. At prediction time, when we want all values for $p ( y _ { i } | x _ { i } )$ , a maximum of $L$ word probabilities must be mixed, as there is a maximum of $L$ unique words in the pointer window of length $L$ . This mixing can occur on the CPU where random access indexing is more efficient than the GPU. ", + "bbox": [ + 174, + 651, + 825, + 738 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Following the pointer sum attention network, the aim is to place probability mass from the attention mechanism on the correct output $\\hat { y } _ { i }$ if it exists in the input. In the case of our mixture model the pointer loss instead becomes $\\begin{array} { r } { - \\log \\left( g + \\sum _ { i \\in I ( y , x ) } a _ { i } \\right) } \\end{array}$ , where $I ( y , x )$ results in all positions of the correct output $y$ in the input $x$ . The gate $g$ may be assigned all probability mass if, for instance, the correct output $\\hat { y } _ { i }$ exists only in the softmax-RNN vocabulary. There is no penalty if the model places the entire probability mass on any of the instances of the correct word in the input window. If the pointer component places the entirety of the probability mass on the gate $g$ , the pointer network incurs no penalty and the loss is entirely determined by the loss of the softmax-RNN component. ", + "bbox": [ + 173, + 744, + 825, + 864 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/2771546fc5355020a468b7b395918ab24c46037349e76a1b1f3768a9a2b4eafb.jpg", + "table_caption": [ + "Table 1: Statistics of the Penn Treebank, WikiText-2, and WikiText-103. The out of vocabulary $\\left( \\mathrm { O o V } \\right)$ rate notes what percentage of tokens have been replaced by an $\\left. u n k \\right.$ token. The token count includes newlines which add to the structure of the WikiText datasets. " + ], + "table_footnote": [], + "table_body": "
Penn Treebank TestWikiText-2 TestWikiText-103
Train ValidTrain ValidTrain Valid
Articles---600606028,47560Test 60
Tokens929k73k 10,00082k2,088k217k245k103,227k217k245k
Vocab size OoV rate4.8%33,278 2.6%267,735 0.4%
", + "bbox": [ + 215, + 101, + 779, + 199 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "2.7 PARAMETERS AND COMPUTATION TIME ", + "text_level": 1, + "bbox": [ + 176, + 281, + 491, + 295 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The pointer sentinel-LSTM mixture model results in a relatively minor increase in parameters and computation time, especially when compared to the model size required to achieve similar performance using a standard LSTM. The only two additional parameters required by the model are those required for computing $q$ , specifically $\\dot { W } \\in \\mathbb { R } ^ { H \\times H }$ and $\\bar { b } \\in \\mathbb { R } ^ { H }$ , and the sentinel vector embedding, $s \\in \\mathbb { R } ^ { H }$ . This is independent of the depth of the RNN as the pointer component only interacts with the output of the final RNN layer. The additional $H ^ { 2 } + 2 H \\bar { }$ parameters are minor compared to a single LSTM layer’s $8 H ^ { 2 } + 4 \\dot { H }$ parameters. Most models also use multiple LSTM layers. ", + "bbox": [ + 174, + 306, + 825, + 405 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In terms of additional computation, a pointer sentinel-LSTM of window size $L$ only requires computing the query $q$ (a linear layer with tanh activation), a total of $L$ parallelizable inner product calculations, and the attention scores for the $L$ resulting scalars via the softmax function. ", + "bbox": [ + 176, + 411, + 825, + 454 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 473, + 344, + 489 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Considerable research has been dedicated to the task of language modeling, from traditional machine learning techniques such as n-grams to deep neural sequence models. ", + "bbox": [ + 173, + 506, + 823, + 534 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Mixture models composed of various knowledge sources have been proposed in the past for language modeling. Rosenfeld (1996) uses a maximum entropy model to combine a variety of information sources to improve language modeling on news text and speech. These information sources include complex overlapping n-gram distributions and n-gram caches that aim to capture rare words. ", + "bbox": [ + 174, + 541, + 825, + 597 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Beyond n-grams, neural sequence models such as recurrent neural networks have been shown to achieve state of the art results (Mikolov et al., 2010). A variety of RNN regularization methods have been explored, including a number of dropout variations (Zaremba et al., 2014; Gal, 2015) which prevent overfitting of complex LSTM language models. Other work has modified the RNN architecture to better handle increased recurrence depth (Zilly et al., 2016). ", + "bbox": [ + 174, + 603, + 825, + 674 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In order to increase capacity and minimize the impact of vanishing gradients, some language and translation models have also added a soft attention or memory component (Bahdanau et al., 2015; Sukhbaatar et al., 2015; Cheng et al., 2016; Kumar et al., 2016; Xiong et al., 2016; Ahn et al., 2016). These mechanisms allow for the retrieval and use of relevant previous hidden states. Soft attention mechanisms need to first encode the relevant word into a state vector and then decode it again, even if the output word is identical to the input word used to compute that hidden state or memory. A drawback to soft attention is that if, for instance, January and March are both equally attended candidates, the attention mechanism may blend the two vectors, resulting in a context vector closest to February (Kadlec et al., 2016). Even with attention, the standard softmax classifier being used in these models often struggles to correctly predict rare or previously unknown words. ", + "bbox": [ + 174, + 680, + 825, + 819 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Attention-based pointer mechanisms were introduced in Vinyals et al. (2015) where the pointer network is able to select elements from the input as output. In the above example, only January or March would be available as options, as February does not appear in the input. The use of pointer networks have been shown to help with geometric problems (Vinyals et al., 2015), code generation (Ling et al., 2016), summarization (Gu et al., 2016; Gulc¸ehre et al. ¨ , 2016), question answering (Kadlec et al., 2016). While pointer networks improve performance on rare words and long-term dependencies they are unable to select words that do not exist in the input. ", + "bbox": [ + 174, + 825, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Gulc¸ehre et al. ¨ (2016) introduce a pointer softmax model that can generate output from either the vocabulary softmax of an RNN or the location softmax of the pointer network. Not only does this allow for producing OoV words which are not in the input, the pointer softmax model is able to better deal with rare and unknown words than a model only featuring an RNN softmax. Rather than constructing a mixture model as in our work, they use a switching network to decide which component to use. For neural machine translation, the switching network is conditioned on the representation of the context of the source text and the hidden state of the decoder. The pointer network is not used as a source of information for the switching network as in our model. The pointer and RNN softmax are scaled according to the switching network and the word or location with the highest final attention score is selected for output. Although this approach uses both a pointer and RNN component, it is not a mixture model and does not combine the probabilities for a word if it occurs in both the pointer location softmax and the RNN vocabulary softmax. In our model the word probability is a mix of both the RNN and pointer components, allowing for better predictions when the context may be ambiguous. ", + "bbox": [ + 174, + 103, + 825, + 297 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Extending this concept further, the latent predictor network (Ling et al., 2016) generates an output sequence conditioned on an arbitrary number of base models where each base model may have differing granularity. In their task of code generation, the output could be produced one character at a time using a standard softmax or instead copy entire words from referenced text fields using a pointer network. As opposed to Gulc¸ehre et al. ¨ (2016), all states which produce the same output are merged by summing their probabilities. The model requires a complex training process involving the forward-backward algorithm for Semi-Markov models to prevent an exponential path explosion. ", + "bbox": [ + 174, + 305, + 825, + 402 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 WIKITEXT - A BENCHMARK FOR LANGUAGE MODELING ", + "text_level": 1, + "bbox": [ + 176, + 422, + 681, + 438 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We first describe the most commonly used language modeling dataset and its pre-processing in order to then motivate the need for a new benchmark dataset. ", + "bbox": [ + 173, + 454, + 823, + 481 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 PENN TREEBANK ", + "text_level": 1, + "bbox": [ + 174, + 498, + 334, + 512 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In order to compare our model to the many recent neural language models, we conduct word-level prediction experiments on the Penn Treebank (PTB) dataset (Marcus et al., 1993), pre-processed by Mikolov et al. (2010). The dataset consists of $9 2 9 \\mathrm { k }$ training, $7 3 \\mathrm { k }$ validation, and ${ } ^ { 8 2 \\mathrm { k } }$ test words. As part of the pre-processing performed by Mikolov et al. (2010), words were lower-cased, numbers were replaced with N, newlines were replaced with $\\langle e o s \\rangle$ , and all other punctuation was removed. The vocabulary is the most frequent 10k words with OoV tokens replaced by an $\\left. u n k \\right.$ token. For full statistics, refer to Table 1. ", + "bbox": [ + 174, + 525, + 825, + 622 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 REASONS FOR A NEW DATASET ", + "text_level": 1, + "bbox": [ + 176, + 638, + 434, + 652 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "While the processed version of the PTB above has been frequently used for language modeling, it has many limitations. The tokens in PTB are all lower case, stripped of any punctuation, and limited to a vocabulary of only 10k words. These limitations mean that the PTB is unrealistic for real language use, especially when far larger vocabularies with many rare words are involved. The appendix contains a graph illustrating this using a Zipfian plot over the training partition of the PTB, with the curve stopping abruptly at the 10k limit. Given that accurately predicting rare words, such as named entities, is an important task for many applications, the lack of a long tail is problematic. ", + "bbox": [ + 174, + 664, + 825, + 762 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Other larger scale language modeling datasets exist. Unfortunately, they either have restrictive licensing which prevents widespread use or have randomized sentence ordering (Chelba et al., 2013) which is unrealistic for most language use and prevents the effective learning and evaluation of longer term dependencies. Hence, we constructed a language modeling dataset using text extracted from Wikipedia and have made this available to the community. ", + "bbox": [ + 176, + 768, + 825, + 838 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.3 CONSTRUCTION AND PRE-PROCESSING ", + "text_level": 1, + "bbox": [ + 176, + 856, + 486, + 869 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We selected articles only fitting the Good or Featured article criteria specified by editors on Wikipedia. These articles have been reviewed by humans and are considered well written, factually accurate, broad in coverage, neutral in point of view, and stable. This resulted in 23,805 Good articles and 4,790 Featured articles. The text for each article was extracted using the Wikipedia API. Extracting text from Wikipedia mark-up is nontrivial due to the large number of macros in use, used for metric conversions, abbreviations, language notation, and date handling. ", + "bbox": [ + 176, + 882, + 823, + 922 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Once extracted, specific sections which primarily featured lists were removed by default. Other minor bugs, such as sort keys and Edit buttons that leaked in from the HTML, were also removed. Mathematical formulae and $\\mathrm { { I A T } _ { E } X }$ code were replaced with $\\langle f o r m u l a \\rangle$ tokens. Normalization and tokenization were performed using the Moses tokenizer (Koehn et al., 2007), slightly augmented to further split numbers $( 8 , 6 0 0 8 \\ \\textcircled { \\omega } , @ \\ 6 0 0 )$ and with some additional minor fixes. Following Chelba et al. (2013) a vocabulary was constructed by discarding all words with a count below 3. Words outside of the vocabulary were mapped to the $\\left. u n k \\right.$ token, also a part of the vocabulary. ", + "bbox": [ + 174, + 152, + 825, + 251 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.4 STATISTICS ", + "text_level": 1, + "bbox": [ + 174, + 268, + 294, + 282 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The full WikiText dataset is over 103 million words in size, a hundred times larger than the PTB. It is also a tenth the size of the One Billion Word Benchmark (Chelba et al., 2013), one of the largest publicly available language modeling benchmarks, whilst consisting of articles that allow for the capture and usage of longer term dependencies as might be found in many real world tasks. ", + "bbox": [ + 174, + 295, + 825, + 349 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The dataset is available in two different sizes: WikiText-2 and WikiText-103. Both feature punctuation, original casing, a larger vocabulary, and numbers. WikiText-2 is two times the size of the Penn Treebank dataset. WikiText-103 features all extracted articles. Both datasets use the same articles for validation and testing, only differing in the vocabularies. For full statistics, refer to Table 1. ", + "bbox": [ + 174, + 357, + 823, + 412 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 434, + 326, + 450 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.1 TRAINING DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 467, + 351, + 481 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "As the pointer sentinel mixture model uses the outputs of the RNN from up to $L$ timesteps back, this presents a challenge for training. If we do not regenerate the stale historical outputs of the RNN when we update the gradients, backpropagation through these stale outputs may result in incorrect gradient updates. If we do regenerate all stale outputs of the RNN, the training process is far slower. As we can make no theoretical guarantees on the impact of stale outputs on gradient updates, we opt to regenerate the window of RNN outputs used by the pointer component after each gradient update. ", + "bbox": [ + 174, + 492, + 825, + 577 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We also use truncated backpropagation through time (BPTT) in a different manner to many other RNN language models. Truncated BPTT allows for practical time-efficient training of RNN models but has fundamental trade-offs that are rarely discussed. For running truncated BPTT, BPTT is run for $k _ { 2 }$ timesteps once every $k _ { 1 }$ timesteps. For many RNN language modeling training schemes, $k _ { 1 } = k _ { 2 }$ , meaning that every $k$ timesteps truncated BPTT is performed for the $k$ previous timesteps. This results in only a single RNN output receiving backpropagation for $k$ timesteps, with the other extreme being that the first token receives backpropagation for 0 timesteps. As such, most words in the training data will never experience a full backpropagation for $k$ timesteps. ", + "bbox": [ + 174, + 583, + 825, + 695 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In our task, the pointer component always looks $L$ timesteps into the past if $L$ past timesteps are available. We select $k _ { 1 } = 1$ and $k _ { 2 } = L$ such that for each timestep we perform backpropagation for $L$ timesteps and advance one timestep at a time. Only the loss for the final predicted word is used for backpropagation through the window. ", + "bbox": [ + 174, + 702, + 823, + 757 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 MODEL DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 775, + 333, + 789 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Our experimental setup reflects that of Zaremba et al. (2014) and Gal (2015). We increased the number of timesteps used during training from 35 to 100, matching the length of the window $L$ . Batch size was increased to 32 from 20. We also halve the learning rate when validation perplexity is worse than the previous iteration, stopping training when validation perplexity fails to improve for three epochs or when 64 epochs are reached. The gradients are rescaled if their global norm exceeds 1 (Pascanu et al., 2013b).3 We evaluate the medium model configuration which features a two layer ", + "bbox": [ + 174, + 801, + 825, + 886 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/bb3d98ce30f7ae806c74c7ce5a6ac5f840f0ca0c2ae8bbfe76910b06718261a4.jpg", + "table_caption": [ + "Table 2: Single model perplexity on validation and test sets for the Penn Treebank language modeling task. For our models and the models of Zaremba et al. (2014) and Gal (2015), medium and large refer to a 650 and 1500 unit two layer LSTM respectively. Parameter numbers with $^ \\ddag$ are estimates based upon our understanding of the model and with reference to Kim et al. (2016). " + ], + "table_footnote": [], + "table_body": "
ModelParametersValidationTest
Mikolov & Zweig (2012) - KN-52M141.2
Mikolov & Zweig (2012) - KN5 + cache2M125.7
Mikolov&Zweig g(2012) -RNN6M124.7
Mikolov&Zweig g(2012)-RNN-LDA7M113.7
Mikolov & Zweig ( g(2012) - RNN-LDA + KN-5 +cache9M92.0
Pascanu et al. (2013a) - Deep RNN6M107.5
Cheng et al. (2014) - Sum-Prod Net5Mt100.0
Zaremba et al. (2014) - LSTM (medium) Zaremba et al. (2014) - LSTM (large)20M86.282.7
Gal (2015) - Variational LSTM (medium, untied)66M82.278.4
Gal (2015) - Variational LSTM (medium,untied, MC)20M 20M81.9 ± 0.279.7 ± 0.1
Gal (2015) - Variational LSTM (large,untied)66M78.6 ±0.1
Gal (2015) - Variational LSTM (large,untied, MC)77.9 ± 0.375.2 ± 0.2
Kim etal. (2016) - CharCNN66M 19M173.4± 0.0
Zilly et al. (2016) - Variational RHN32M78.9
72.871.3
Zoneout + Variational LSTM (medium)20M84.480.6
Pointer Sentinel-LSTM (medium)21M72.470.9
", + "bbox": [ + 191, + 102, + 803, + 357 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "LSTM of hidden size 650. We compare against the large model configuration which features a two layer LSTM of hidden size 1500. ", + "bbox": [ + 173, + 455, + 823, + 483 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We produce results for two model types, an LSTM model that uses dropout regularization and the pointer sentinel-LSTM model. The variants of dropout used were zoneout (Krueger et al., 2016) and variational inference based dropout (Gal, 2015). Zoneout, which stochastically forces some recurrent units to maintain their previous values, was used for the recurrent connections within the LSTM. Variational inference based dropout, where the dropout mask for a layer is locked across timesteps, was used on the input to each RNN layer and also on the output of the final RNN layer. We used a value of 0.5 for both dropout connections. ", + "bbox": [ + 174, + 491, + 825, + 588 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.3 COMPARISON OVER PENN TREEBANK ", + "text_level": 1, + "bbox": [ + 176, + 612, + 475, + 626 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Table 2 compares the pointer sentinel-LSTM to a variety of other models on the Penn Treebank dataset. The pointer sentinel-LSTM achieves the lowest perplexity, followed by the recent Recurrent Highway Networks (Zilly et al., 2016). The medium pointer sentinel-LSTM model also achieves lower perplexity than the large LSTM models. Note that the best performing large variational LSTM model uses computationally intensive Monte Carlo (MC) dropout averaging. Monte Carlo dropout averaging is a general improvement for any sequence model that uses dropout but comes at a greatly increased test time cost. In Gal (2015) it requires rerunning the test model with 1000 different dropout masks. The pointer sentinel-LSTM is able to achieve these results with far fewer parameters than other models with comparable performance, specifically with less than a third the parameters used in the large variational LSTM models. ", + "bbox": [ + 174, + 640, + 825, + 780 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We also test a variational LSTM that uses zoneout, which serves as the RNN component of our pointer sentinel-LSTM mixture. This variational LSTM model performs BPTT for the same length $L$ as the pointer sentinel-LSTM, where $L = 1 0 0$ timesteps. The results for this model ablation are worse than that of Gal (2015)’s variational LSTM without Monte Carlo dropout averaging. ", + "bbox": [ + 176, + 787, + 825, + 843 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.4 COMPARISON OVER WIKITEXT-2 ", + "text_level": 1, + "bbox": [ + 176, + 866, + 442, + 881 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "As WikiText-2 is being introduced in this dataset, there are no existing baselines. We provide two baselines to compare the pointer sentinel-LSTM against: our variational LSTM using zoneout and ", + "bbox": [ + 174, + 895, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/e118bfa88fa9949d7520597d73dce917db8fa9e729b242dd65df300d0c46b6ab.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
ModelParametersValidationTest
Variational LSTM implementation from Gal (2015)20M101.796.3
Zoneout + Variational LSTM20M108.7100.9
Pointer Sentinel-LSTM21M84.880.8
", + "bbox": [ + 220, + 101, + 774, + 174 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Table 3: Single model perplexity on validation and test sets for the WikiText-2 language modeling task. All compared models use a two layer LSTM with a hidden size of 650. ", + "bbox": [ + 173, + 184, + 821, + 213 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "the medium variational LSTM used in Gal (2015).4 Attempts to run the Gal (2015) large model variant, a two layer LSTM with hidden size 1500, resulted in out of memory errors on a 12GB K80 GPU, likely due to the increased vocabulary size. We chose the best hyperparameters from PTB experiments for all models. Table 3 shows a similar gain made by the pointer sentinel-LSTM over the variational LSTM models. The variational LSTM from Gal (2015) again beats out the variational LSTM used as a base for our experiments. ", + "bbox": [ + 174, + 222, + 825, + 306 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 329, + 290, + 344 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6.1 IMPACT ON RARE WORDS ", + "text_level": 1, + "bbox": [ + 176, + 361, + 395, + 376 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "A hypothesis as to why the pointer sentinel-LSTM can outperform an LSTM is that the pointer component allows the model to effectively reproduce rare words. The RNN may better use hidden state capacity by relying on the pointer component. The pointer component may also allow for a sharper selection of a single word than may be possible using only the softmax. ", + "bbox": [ + 176, + 388, + 825, + 444 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The appendix contains a graph which shows the improvement of perplexity when comparing the LSTM to the pointer sentinel-LSTM. Words are split across buckets according to frequency. As the words become rarer, the pointer sentinel-LSTM has stronger improvements in perplexity. Even on the Penn Treebank, where there is a relative absence of rare words due to only selecting the most frequent 10k words, we can see the pointer sentinel-LSTM mixture model provides a direct benefit. ", + "bbox": [ + 174, + 452, + 825, + 522 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "While the improvements are largest on rare words, we can see the pointer sentinel-LSTM is still helpful on relatively frequent words. This may be the pointer component directly selecting the word or through the pointer supervision signal improving the RNN by allowing gradients to flow directly to other occurrences of the word in that window. ", + "bbox": [ + 176, + 529, + 823, + 584 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6.2 QUALITATIVE ANALYSIS OF POINTER USAGE ", + "text_level": 1, + "bbox": [ + 179, + 604, + 526, + 618 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In a qualitative analysis, we visualized the gate use and pointer attention for a variety of examples in the validation set, focusing on predictions where the gate primarily used the pointer component. These visualizations are available in the appendix. ", + "bbox": [ + 176, + 631, + 825, + 672 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "As expected, the pointer component is heavily used for rare names such as Seidman (23 times in training), Iverson (7 times in training), and Rosenthal (3 times in training). The pointer component was also heavily used when it came to other named entity names such as companies like Honeywell (8 times in training) and Integrated (41 times in training, though due to lowercasing of words this includes integrated circuits, fully integrated, and other generic usage). Surprisingly, the pointer component was also used for many frequent tokens. For selecting units of measurement (tons, kilograms, . . . ) or the short scale of numbers (thousands, millions, billions, . . . ), the pointer would refer to recent usage. This is to be expected, especially when phrases are of the form increased from N tons to N tons. The model can even be found relying on a mixture of the softmax and the pointer for predicting frequent verbs such as said. ", + "bbox": [ + 174, + 680, + 825, + 819 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Finally, the pointer component can be seen pointing to words at the very end of the 100 word window (position 97), a far longer horizon than the 35 steps that most language models truncate their backpropagation training to. This illustrates why the gating function must be integrated into the pointer component. If the gating function could only use the RNN hidden state, it would need to be wary of words that were near the tail of the pointer, especially if it was not able to accurately track exactly how long it was since seeing a word. By integrating the gating function into the pointer component, we avoid the RNN hidden state having to maintain this intensive bookkeeping. ", + "bbox": [ + 174, + 827, + 823, + 895 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "7 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 152, + 318, + 170 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We introduced the pointer sentinel mixture model and the WikiText language modeling dataset. The pointer sentinel mixture model can be applied to any classifier that ends in a softmax, including various recurrent neural network building blocks. When applied to a standard LSTM, the pointer sentinel-LSTM achieves state of the art results in language modeling over the Penn Treebank while using few additional parameters and little additional computational complexity at prediction time. ", + "bbox": [ + 174, + 185, + 825, + 256 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We have also motivated the need to move from Penn Treebank to a new language modeling dataset for long range dependencies, providing WikiText-2 and WikiText-103 as potential options. We hope these new datasets can serve as a platform to improve handling of rare words and the usage of long term dependencies in language modeling. ", + "bbox": [ + 176, + 262, + 825, + 318 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 340, + 285, + 356 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yossi Adi, Einat Kermany, Yonatan Belinkov, Ofer Lavi, and Yoav Goldberg. Fine-grained Analysis of Sentence Embeddings Using Auxiliary Prediction Tasks. arXiv preprint arXiv:1608.04207, 2016. \nSungjin Ahn, Heeyoul Choi, Tanel Parnamaa, and Yoshua Bengio. A Neural Knowledge Language ¨ Model. CoRR, abs/1608.00318, 2016. \nDzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural Machine Translation by Jointly Learning to Align and Translate. In ICLR, 2015. \nCiprian Chelba, Tomas Mikolov, Mike Schuster, Qi Ge, Thorsten Brants, Phillipp Koehn, and Tony Robinson. One Billion Word Benchmark for Measuring Progress in Statistical Language Modeling. arXiv preprint arXiv:1312.3005, 2013. \nJianpeng Cheng, Li Dong, and Mirella Lapata. Long Short-Term Memory-Networks for Machine Reading. CoRR, abs/1601.06733, 2016. \nWei-Chen Cheng, Stanley Kok, Hoai Vu Pham, Hai Leong Chieu, and Kian Ming Adam Chai. Language Modeling with Sum-Product Networks. In INTERSPEECH, 2014. \nYarin Gal. A Theoretically Grounded Application of Dropout in Recurrent Neural Networks. arXiv preprint arXiv:1512.05287, 2015. \nJiatao Gu, Zhengdong Lu, Hang Li, and Victor O. K. Li. Incorporating Copying Mechanism in Sequence-to-Sequence Learning. CoRR, abs/1603.06393, 2016. \nC¸ aglar Gulc¸ehre, Sungjin Ahn, Ramesh Nallapati, Bowen Zhou, and Yoshua Bengio. Pointing the ¨ Unknown Words. arXiv preprint arXiv:1603.08148, 2016. \nSepp Hochreiter and Jurgen Schmidhuber. Long Short-Term Memory. ¨ Neural Computation, 9(8): 1735–1780, Nov 1997. ISSN 0899-7667. \nRudolf Kadlec, Martin Schmid, Ondrej Bajgar, and Jan Kleindienst. Text Understanding with the Attention Sum Reader Network. arXiv preprint arXiv:1603.01547, 2016. \nYoon Kim, Yacine Jernite, David Sontag, and Alexander M. Rush. Character-aware neural language models. CoRR, abs/1508.06615, 2016. \nPhilipp Koehn, Hieu Hoang, Alexandra Birch, Chris Callison-Burch, Marcello Federico, Nicola Bertoldi, Brooke Cowan, Wade Shen, Christine Moran, Richard Zens, Chris Dyer, Ondej Bojar, Alexandra Constantin, and Evan Herbst. Moses: Open Source Toolkit for Statistical Machine Translation. In ACL, 2007. ", + "bbox": [ + 171, + 358, + 826, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Krueger, Tegan Maharaj, Janos Kram ´ ar, Mohammad Pezeshki, Nicolas Ballas, Nan Rosemary ´ Ke, Anirudh Goyal, Yoshua Bengio, Hugo Larochelle, Aaron Courville, et al. Zoneout: Regularizing RNNs by Randomly Preserving Hidden Activations. arXiv preprint arXiv:1606.01305, 2016. ", + "bbox": [ + 174, + 103, + 825, + 159 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ankit Kumar, Ozan Irsoy, Peter Ondruska, Mohit Iyyer, James Bradbury, Ishaan Gulrajani, Victor Zhong, Romain Paulus, and Richard Socher. Ask me anything: Dynamic memory networks for natural language processing. In ICML, 2016. ", + "bbox": [ + 176, + 169, + 825, + 212 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wang Ling, Edward Grefenstette, Karl Moritz Hermann, Tomas Kocisk ´ y, Andrew Senior, ´ Fumin Wang, and Phil Blunsom. Latent Predictor Networks for Code Generation. CoRR, abs/1603.06744, 2016. ", + "bbox": [ + 174, + 220, + 825, + 262 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Mitchell P. Marcus, Beatrice Santorini, and Mary Ann Marcinkiewicz. Building a Large Annotated Corpus of English: The Penn Treebank. Computational Linguistics, 19:313–330, 1993. ", + "bbox": [ + 174, + 272, + 823, + 301 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tomas Mikolov and Geoffrey Zweig. Context dependent recurrent neural network language model. In SLT, 2012. ", + "bbox": [ + 174, + 309, + 821, + 338 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tomas Mikolov, Martin Karafiat, Luk ´ as Burget, Jan Cernock ´ y, and Sanjeev Khudanpur. Recurrent ´ neural network based language model. In INTERSPEECH, 2010. ", + "bbox": [ + 173, + 347, + 821, + 376 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Razvan Pascanu, C¸ aglar Gulc¸ehre, Kyunghyun Cho, and Yoshua Bengio. How to Construct Deep ¨ Recurrent Neural Networks. CoRR, abs/1312.6026, 2013a. ", + "bbox": [ + 173, + 385, + 825, + 414 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural networks. In ICML, 2013b. ", + "bbox": [ + 174, + 422, + 821, + 452 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Roni Rosenfeld. A Maximum Entropy Approach to Adaptive Statistical Language Modeling. 1996. ", + "bbox": [ + 173, + 460, + 821, + 477 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sainbayar Sukhbaatar, Arthur Szlam, Jason Weston, and Rob Fergus. End-To-End Memory Networks. In NIPS, 2015. ", + "bbox": [ + 173, + 484, + 823, + 513 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Oriol Vinyals, Meire Fortunato, and Navdeep Jaitly. Pointer networks. In Advances in Neural Information Processing Systems, pp. 2692–2700, 2015. ", + "bbox": [ + 173, + 522, + 823, + 551 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Caiming Xiong, Stephen Merity, and Richard Socher. Dynamic Memory Networks for Visual and Textual Question Answering. In ICML, 2016. ", + "bbox": [ + 174, + 560, + 823, + 589 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wojciech Zaremba, Ilya Sutskever, and Oriol Vinyals. Recurrent neural network regularization. arXiv preprint arXiv:1409.2329, 2014. ", + "bbox": [ + 174, + 597, + 821, + 627 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Julian Georg Zilly, Rupesh Kumar Srivastava, Jan Koutn´ık, and Jurgen Schmidhuber. Recurrent ¨ Highway Networks. arXiv preprint arXiv:1607.03474, 2016. ", + "bbox": [ + 173, + 636, + 823, + 665 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 103, + 263, + 117 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/c45d689e3a9e29ba2e76713a83dcf9f4d4092e2ed8fea40c92d7c483e5b46e8e.jpg", + "image_caption": [ + "Figure A1: Mean difference in log perplexity on PTB when using the pointer sentinel-LSTM compared to the LSTM model. Words were sorted by frequency and split into equal sized buckets. " + ], + "image_footnote": [], + "bbox": [ + 200, + 191, + 761, + 532 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "POINTER USAGE ON THE PENN TREEBANK ", + "text_level": 1, + "bbox": [ + 176, + 103, + 470, + 117 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "For a qualitative analysis, we visualize how the pointer component is used within the pointer sentinel mixture model. The gate refers to the result of the gating function, with 1 indicating the RNN component is exclusively used whilst 0 indicates the pointer component is exclusively used. We begin with predictions that are using the RNN component primarily and move to ones that use the pointer component primarily. ", + "bbox": [ + 173, + 128, + 825, + 200 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/bfe1101a2fb87f4dcc5d4a29f6b3f7d8300c9eaa08d693f87d33a6263f3313bb.jpg", + "image_caption": [ + "Figure A2: In predicting the fall season has been a good one especially for those retailers, the pointer component suggests many words from the historical window that would fit - retailers, investments, chains, and institutions. The gate is still primarily weighted towards the RNN component however. " + ], + "image_footnote": [], + "bbox": [ + 183, + 217, + 818, + 273 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/74f8b37f282e29b8fa0aba935aeef9ab0765afe5633d21f65b8558f8effb4fca.jpg", + "image_caption": [ + "Figure A3: In predicting the national cancer institute also projected that overall u.s. mortality, the pointer component is focused on mortality and rates, both of which would fit. The gate is still primarily weighted towards the RNN component. " + ], + "image_footnote": [], + "bbox": [ + 184, + 381, + 816, + 435 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/29f2ee31d97f97d485e728471fd2cd3eb34ab3a8f310dc8086e09059401473fd.jpg", + "image_caption": [ + "Figure A4: In predicting people do n’t seem to be unhappy with it he said, the pointer component correctly selects said and is almost equally weighted with the RNN component. This is surprising given how frequent the word said is used within the Penn Treebank. " + ], + "image_footnote": [], + "bbox": [ + 183, + 534, + 816, + 582 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/ef168c7e1ca9bc89964097cbd337eb2c1028caa5e8e233bb485daa4283e232c1.jpg", + "image_caption": [ + "Figure A5: For predicting the federal government has had to pump in $\\$ 1$ N billion, the pointer component focuses on the recent usage of billion with highly similar context. The pointer component is also relied upon more heavily than the RNN component - surprising given the frequency of billion within the Penn Treebank and that the usage was quite recent. " + ], + "image_footnote": [], + "bbox": [ + 179, + 54, + 818, + 167 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/dd311d97c72a9f4fa21add99ecf8515494eb4cc97c98fcb7f45e7fd312eb7776.jpg", + "image_caption": [ + "Figure A6: For predicting $\\left. u n k \\right.$ ’s ghost sometimes runs through the e ring dressed like gen. noriega, the pointer component reaches 97 timesteps back to retrieve gen. douglas. Unfortunately this prediction is incorrect but without additional context a human would have guessed the same word. This additionally illustrates why the gating function must be integrated into the pointer component. The named entity gen. douglas would have fallen out of the window in only four more timesteps, a fact that the RNN hidden state would not be able to accurately retain for almost 100 timesteps. " + ], + "image_footnote": [], + "bbox": [ + 183, + 286, + 816, + 333 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/12273399d0022a69702f98b310adb69608c6c1657321fc3e0ec1618d18640606.jpg", + "image_caption": [ + "Figure A7: For predicting mr. iverson, the pointer component has learned the ability to point to the last name of the most recent named entity. The named entity also occurs 45 timesteps ago, which is longer than the 35 steps that most language models truncate their backpropagation to. " + ], + "image_footnote": [], + "bbox": [ + 183, + 483, + 816, + 534 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/81f496401397d434510e2273937e7d5a166e9cb126ae3d3fa7dc1987293081e2.jpg", + "image_caption": [ + "Figure A8: For predicting mr. rosenthal, the pointer is almost exclusively used and reaches back 65 timesteps to identify bruce rosenthal as the person speaking, correctly only selecting the last name. " + ], + "image_footnote": [], + "bbox": [ + 181, + 640, + 816, + 703 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/5244179d618289042f46d23f44db0ec07e116e8a3e2a4f736497656a6a7b8d86.jpg", + "image_caption": [ + "Figure A9: For predicting in composite trading on the new york stock exchange yesterday integrated, the company Integrated and the $\\left. u n k \\right.$ token are primarily attended to by the pointer component, with nearly the full prediction being determined by the pointer component. " + ], + "image_footnote": [], + "bbox": [ + 181, + 785, + 816, + 837 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "ZIPFIAN PLOT OVER PTB AND WIKITEXT-2", + "text_level": 1, + "bbox": [ + 174, + 103, + 478, + 117 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/fef900b9bfea3ce6d1b68bfa9dc98ab50ad06567225c817639d232fbc434491e.jpg", + "image_caption": [ + "Figure A10: Zipfian plot over the training partition in Penn Treebank and WikiText-2 datasets. Notice the severe drop on the Penn Treebank when the vocabulary hits $1 0 ^ { 4 }$ . Two thirds of the vocabulary in WikiText-2 are past the vocabulary cut-off of the Penn Treebank. " + ], + "image_footnote": [], + "bbox": [ + 179, + 137, + 880, + 356 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "ZIPFIAN PLOT OVER WIKITEXT-103 ", + "bbox": [ + 174, + 445, + 424, + 459 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/750b091fb947314259a95c5ff06b556058e55aa11164e7c6a76439cd5d72c9cf.jpg", + "image_caption": [ + "Figure A11: Zipfian plot over the training partition in the WikiText-103 dataset. With the dataset containing over 100 million tokens, there is reasonable coverage of the long tail of the vocabulary. " + ], + "image_footnote": [], + "bbox": [ + 276, + 481, + 712, + 732 + ], + "page_idx": 14 + } +] \ No newline at end of file diff --git a/parse/train/Byj72udxe/Byj72udxe_middle.json b/parse/train/Byj72udxe/Byj72udxe_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..1207d1752470e725b1f0a760efdc93a7884db8a7 --- /dev/null +++ b/parse/train/Byj72udxe/Byj72udxe_middle.json @@ -0,0 +1,34587 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 397, + 96 + ], + "lines": [ + { + "bbox": [ + 104, + 77, + 399, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 77, + 399, + 98 + ], + "score": 1.0, + "content": "POINTER SENTINEL MIXTURE MODELS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 113, + 114, + 436, + 160 + ], + "lines": [ + { + "bbox": [ + 111, + 114, + 406, + 128 + ], + "spans": [ + { + "bbox": [ + 111, + 114, + 406, + 128 + ], + "score": 1.0, + "content": "Stephen Merity, Caiming Xiong, James Bradbury & Richard Socher", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 126, + 257, + 138 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 257, + 138 + ], + "score": 1.0, + "content": "MetaMind - A Salesforce Company", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 138, + 196, + 148 + ], + "spans": [ + { + "bbox": [ + 112, + 138, + 196, + 148 + ], + "score": 1.0, + "content": "Palo Alto, CA, USA", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 148, + 437, + 162 + ], + "spans": [ + { + "bbox": [ + 112, + 148, + 437, + 162 + ], + "score": 1.0, + "content": "{smerity,cxiong,james.bradbury,rsocher}@salesforce.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 188, + 333, + 200 + ], + "lines": [ + { + "bbox": [ + 276, + 188, + 335, + 201 + ], + "spans": [ + { + "bbox": [ + 276, + 188, + 335, + 201 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 216, + 468, + 358 + ], + "lines": [ + { + "bbox": [ + 142, + 216, + 469, + 228 + ], + "spans": [ + { + "bbox": [ + 142, + 216, + 469, + 228 + ], + "score": 1.0, + "content": "Recent neural network sequence models with softmax classifiers have achieved", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 227, + 470, + 240 + ], + "spans": [ + { + "bbox": [ + 141, + 227, + 470, + 240 + ], + "score": 1.0, + "content": "their best language modeling performance only with very large hidden states and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 238, + 470, + 250 + ], + "spans": [ + { + "bbox": [ + 141, + 238, + 470, + 250 + ], + "score": 1.0, + "content": "large vocabularies. Even then they struggle to predict rare or unseen words even if", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "score": 1.0, + "content": "the context makes the prediction unambiguous. We introduce the pointer sentinel", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 261, + 470, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 261, + 470, + 272 + ], + "score": 1.0, + "content": "mixture architecture for neural sequence models which has the ability to either", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 272, + 470, + 283 + ], + "spans": [ + { + "bbox": [ + 141, + 272, + 470, + 283 + ], + "score": 1.0, + "content": "reproduce a word from the recent context or produce a word from a standard", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 282, + 470, + 294 + ], + "spans": [ + { + "bbox": [ + 141, + 282, + 470, + 294 + ], + "score": 1.0, + "content": "softmax classifier. We explore applying the pointer sentinel mixture model to the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 292, + 470, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 470, + 306 + ], + "score": 1.0, + "content": "LSTM, a standard recurrent neural network building block. Utilizing an LSTM", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "score": 1.0, + "content": "that achieves 80.6 perplexity on the Penn Treebank, the pointer sentinel-LSTM", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 316, + 469, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 316, + 469, + 327 + ], + "score": 1.0, + "content": "model pushes perplexity down to 70.9 while using far fewer parameters than an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 326, + 469, + 338 + ], + "spans": [ + { + "bbox": [ + 141, + 326, + 469, + 338 + ], + "score": 1.0, + "content": "LSTM that achieves similar results. In order to evaluate how well language models", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 336, + 470, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 470, + 349 + ], + "score": 1.0, + "content": "can exploit longer contexts and deal with more realistic vocabularies and corpora", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 347, + 366, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 366, + 360 + ], + "score": 1.0, + "content": "we also introduce the freely available WikiText corpus.1", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 386, + 206, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 208, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 208, + 402 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 413, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "A major difficulty in language modeling is learning when to predict specific words from the imme-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "diate context. For instance, imagine a new person is introduced and two paragraphs later the context", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "would allow one to very accurately predict this person’s name as the next word. For standard neural", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "sequence models to predict this name, they would have to encode the name, store it for many time", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "steps in their hidden state, and then decode it when appropriate. As the hidden state is limited in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 469, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 506, + 481 + ], + "score": 1.0, + "content": "capacity and the optimization of such models suffer from the vanishing gradient problem, this is a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 480, + 476, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 476, + 492 + ], + "score": 1.0, + "content": "lossy operation when performed over many timesteps. This is especially true for rare words.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 108, + 497, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "Models with soft attention or memory components have been proposed to help deal with this chal-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 506, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 522 + ], + "score": 1.0, + "content": "lenge, aiming to allow for the retrieval and use of relevant previous hidden states, in effect increasing", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 517, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 532 + ], + "score": 1.0, + "content": "hidden state capacity and providing a path for gradients not tied to timesteps. Even with attention,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "the standard softmax classifier that is being used in these models often struggles to correctly predict", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 541, + 248, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 248, + 552 + ], + "score": 1.0, + "content": "rare or previously unknown words.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "score": 1.0, + "content": "Pointer networks (Vinyals et al., 2015) provide one potential solution for rare and out of vocabulary", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "(OoV) words as a pointer network uses attention to select an element from the input as output. This", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 578, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 592 + ], + "score": 1.0, + "content": "allows it to produce previously unseen input tokens. While pointer networks improve performance", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "on rare words and long-term dependencies they are unable to select words that do not exist in the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 600, + 132, + 615 + ], + "spans": [ + { + "bbox": [ + 104, + 600, + 132, + 615 + ], + "score": 1.0, + "content": "input.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "We introduce a mixture model, illustrated in Fig. 1, that combines the advantages of standard", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "softmax classifiers with those of a pointer component for effective and efficient language mod-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "eling. Rather than relying on the RNN hidden state to decide when to use the pointer, as in the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "recent work of Gulc¸ehre et al. ¨ (2016), we allow the pointer component itself to decide when to use", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 661, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 674 + ], + "score": 1.0, + "content": "the softmax vocabulary through a sentinel. The model improves the state of the art perplexity on the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 672, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 505, + 685 + ], + "score": 1.0, + "content": "Penn Treebank. Since this commonly used dataset is small and no other freely available alternative", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 684, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 506, + 696 + ], + "score": 1.0, + "content": "exists that allows for learning long range dependencies, we also introduce a new benchmark dataset", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 695, + 267, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 267, + 707 + ], + "score": 1.0, + "content": "for language modeling called WikiText.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 721, + 308, + 731 + ], + "lines": [ + { + "bbox": [ + 120, + 721, + 308, + 731 + ], + "spans": [ + { + "bbox": [ + 120, + 721, + 308, + 731 + ], + "score": 1.0, + "content": "1Available for download at the WikiText dataset site", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": [ + 108, + 78, + 397, + 96 + ], + "lines": [ + { + "bbox": [ + 104, + 77, + 399, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 77, + 399, + 98 + ], + "score": 1.0, + "content": "POINTER SENTINEL MIXTURE MODELS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 113, + 114, + 436, + 160 + ], + "lines": [ + { + "bbox": [ + 111, + 114, + 406, + 128 + ], + "spans": [ + { + "bbox": [ + 111, + 114, + 406, + 128 + ], + "score": 1.0, + "content": "Stephen Merity, Caiming Xiong, James Bradbury & Richard Socher", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 126, + 257, + 138 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 257, + 138 + ], + "score": 1.0, + "content": "MetaMind - A Salesforce Company", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 138, + 196, + 148 + ], + "spans": [ + { + "bbox": [ + 112, + 138, + 196, + 148 + ], + "score": 1.0, + "content": "Palo Alto, CA, USA", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 148, + 437, + 162 + ], + "spans": [ + { + "bbox": [ + 112, + 148, + 437, + 162 + ], + "score": 1.0, + "content": "{smerity,cxiong,james.bradbury,rsocher}@salesforce.com", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + } + ], + "index": 2.5, + "bbox_fs": [ + 111, + 114, + 437, + 162 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 188, + 333, + 200 + ], + "lines": [ + { + "bbox": [ + 276, + 188, + 335, + 201 + ], + "spans": [ + { + "bbox": [ + 276, + 188, + 335, + 201 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 216, + 468, + 358 + ], + "lines": [ + { + "bbox": [ + 142, + 216, + 469, + 228 + ], + "spans": [ + { + "bbox": [ + 142, + 216, + 469, + 228 + ], + "score": 1.0, + "content": "Recent neural network sequence models with softmax classifiers have achieved", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 227, + 470, + 240 + ], + "spans": [ + { + "bbox": [ + 141, + 227, + 470, + 240 + ], + "score": 1.0, + "content": "their best language modeling performance only with very large hidden states and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 238, + 470, + 250 + ], + "spans": [ + { + "bbox": [ + 141, + 238, + 470, + 250 + ], + "score": 1.0, + "content": "large vocabularies. Even then they struggle to predict rare or unseen words even if", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "score": 1.0, + "content": "the context makes the prediction unambiguous. We introduce the pointer sentinel", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 261, + 470, + 272 + ], + "spans": [ + { + "bbox": [ + 141, + 261, + 470, + 272 + ], + "score": 1.0, + "content": "mixture architecture for neural sequence models which has the ability to either", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 272, + 470, + 283 + ], + "spans": [ + { + "bbox": [ + 141, + 272, + 470, + 283 + ], + "score": 1.0, + "content": "reproduce a word from the recent context or produce a word from a standard", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 282, + 470, + 294 + ], + "spans": [ + { + "bbox": [ + 141, + 282, + 470, + 294 + ], + "score": 1.0, + "content": "softmax classifier. We explore applying the pointer sentinel mixture model to the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 292, + 470, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 292, + 470, + 306 + ], + "score": 1.0, + "content": "LSTM, a standard recurrent neural network building block. Utilizing an LSTM", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 470, + 317 + ], + "score": 1.0, + "content": "that achieves 80.6 perplexity on the Penn Treebank, the pointer sentinel-LSTM", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 316, + 469, + 327 + ], + "spans": [ + { + "bbox": [ + 142, + 316, + 469, + 327 + ], + "score": 1.0, + "content": "model pushes perplexity down to 70.9 while using far fewer parameters than an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 326, + 469, + 338 + ], + "spans": [ + { + "bbox": [ + 141, + 326, + 469, + 338 + ], + "score": 1.0, + "content": "LSTM that achieves similar results. In order to evaluate how well language models", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 336, + 470, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 470, + 349 + ], + "score": 1.0, + "content": "can exploit longer contexts and deal with more realistic vocabularies and corpora", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 347, + 366, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 366, + 360 + ], + "score": 1.0, + "content": "we also introduce the freely available WikiText corpus.1", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12, + "bbox_fs": [ + 141, + 216, + 470, + 360 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 386, + 206, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 208, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 208, + 402 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 413, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "A major difficulty in language modeling is learning when to predict specific words from the imme-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "diate context. For instance, imagine a new person is introduced and two paragraphs later the context", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "would allow one to very accurately predict this person’s name as the next word. For standard neural", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "sequence models to predict this name, they would have to encode the name, store it for many time", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "steps in their hidden state, and then decode it when appropriate. As the hidden state is limited in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 469, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 506, + 481 + ], + "score": 1.0, + "content": "capacity and the optimization of such models suffer from the vanishing gradient problem, this is a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 480, + 476, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 476, + 492 + ], + "score": 1.0, + "content": "lossy operation when performed over many timesteps. This is especially true for rare words.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 414, + 506, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 497, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "Models with soft attention or memory components have been proposed to help deal with this chal-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 506, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 522 + ], + "score": 1.0, + "content": "lenge, aiming to allow for the retrieval and use of relevant previous hidden states, in effect increasing", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 517, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 532 + ], + "score": 1.0, + "content": "hidden state capacity and providing a path for gradients not tied to timesteps. Even with attention,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "the standard softmax classifier that is being used in these models often struggles to correctly predict", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 541, + 248, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 248, + 552 + ], + "score": 1.0, + "content": "rare or previously unknown words.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 496, + 506, + 552 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 504, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "score": 1.0, + "content": "Pointer networks (Vinyals et al., 2015) provide one potential solution for rare and out of vocabulary", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "(OoV) words as a pointer network uses attention to select an element from the input as output. This", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 578, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 592 + ], + "score": 1.0, + "content": "allows it to produce previously unseen input tokens. While pointer networks improve performance", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "on rare words and long-term dependencies they are unable to select words that do not exist in the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 600, + 132, + 615 + ], + "spans": [ + { + "bbox": [ + 104, + 600, + 132, + 615 + ], + "score": 1.0, + "content": "input.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 556, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 618, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "We introduce a mixture model, illustrated in Fig. 1, that combines the advantages of standard", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "softmax classifiers with those of a pointer component for effective and efficient language mod-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "eling. Rather than relying on the RNN hidden state to decide when to use the pointer, as in the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "recent work of Gulc¸ehre et al. ¨ (2016), we allow the pointer component itself to decide when to use", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 661, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 674 + ], + "score": 1.0, + "content": "the softmax vocabulary through a sentinel. The model improves the state of the art perplexity on the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 672, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 505, + 685 + ], + "score": 1.0, + "content": "Penn Treebank. Since this commonly used dataset is small and no other freely available alternative", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 684, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 506, + 696 + ], + "score": 1.0, + "content": "exists that allows for learning long range dependencies, we also introduce a new benchmark dataset", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 695, + 267, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 267, + 707 + ], + "score": 1.0, + "content": "for language modeling called WikiText.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 618, + 506, + 707 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 187, + 78, + 424, + 195 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 187, + 78, + 424, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 187, + 78, + 424, + 195 + ], + "spans": [ + { + "bbox": [ + 187, + 78, + 424, + 195 + ], + "score": 0.97, + "type": "image", + "image_path": "8c26dfca638e32eea73667de18d4a96eb9d4f36a18ee233fb6986050ddd64f47.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 78, + 424, + 92.625 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 187, + 92.625, + 424, + 107.25 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 187, + 107.25, + 424, + 121.875 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 187, + 121.875, + 424, + 136.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 187, + 136.5, + 424, + 151.125 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 187, + 151.125, + 424, + 165.75 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 187, + 165.75, + 424, + 180.375 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 187, + 180.375, + 424, + 195.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 209, + 505, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 372, + 223 + ], + "score": 1.0, + "content": "Figure 1: Illustration of the pointer sentinel-RNN mixture model.", + "type": "text" + }, + { + "bbox": [ + 373, + 212, + 380, + 221 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 208, + 505, + 223 + ], + "score": 1.0, + "content": "is the mixture gate which uses", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 219, + 408, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 408, + 234 + ], + "score": 1.0, + "content": "the sentinel to dictate how much probability mass to give to the vocabulary.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 107, + 248, + 398, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 398, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 398, + 263 + ], + "score": 1.0, + "content": "2 THE POINTER SENTINEL FOR LANGUAGE MODELING", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 272, + 439, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 437, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 216, + 287 + ], + "score": 1.0, + "content": "Given a sequence of words", + "type": "text" + }, + { + "bbox": [ + 217, + 275, + 276, + 284 + ], + "score": 0.88, + "content": "w _ { 1 } , \\ldots , w _ { N - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 271, + 421, + 287 + ], + "score": 1.0, + "content": ", our task is to predict the next word", + "type": "text" + }, + { + "bbox": [ + 421, + 275, + 437, + 284 + ], + "score": 0.84, + "content": "w _ { N }", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 297, + 278, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 279, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 279, + 310 + ], + "score": 1.0, + "content": "2.1 THE SOFTMAX-RNN COMPONENT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "Recurrent neural networks (RNNs) have seen widespread use for language modeling (Mikolov", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 328, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 505, + 341 + ], + "score": 1.0, + "content": "et al., 2010) due to their ability to, at least in theory, retain long term dependencies. RNNs em-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 430, + 352 + ], + "score": 1.0, + "content": "ploy the chain rule to factorize the joint probabilities over a sequence of tokens:", + "type": "text" + }, + { + "bbox": [ + 431, + 339, + 505, + 352 + ], + "score": 0.9, + "content": "p ( w _ { 1 } , \\dots , w _ { N } ) =", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 213, + 365 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\prod _ { i = 1 } ^ { N } p ( w _ { i } | w _ { 1 } , \\dots , w _ { i - 1 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 351, + 354, + 366 + ], + "score": 1.0, + "content": ". More precisely, at each time step", + "type": "text" + }, + { + "bbox": [ + 354, + 354, + 359, + 363 + ], + "score": 0.63, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 351, + 506, + 366 + ], + "score": 1.0, + "content": ", we compute the RNN hidden state", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 117, + 375 + ], + "score": 0.85, + "content": "h _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 364, + 276, + 376 + ], + "score": 1.0, + "content": "according to the previous hidden state", + "type": "text" + }, + { + "bbox": [ + 277, + 364, + 298, + 375 + ], + "score": 0.91, + "content": "h _ { i - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 364, + 356, + 376 + ], + "score": 1.0, + "content": "and the input", + "type": "text" + }, + { + "bbox": [ + 357, + 366, + 367, + 375 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 364, + 408, + 376 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 408, + 363, + 501, + 375 + ], + "score": 0.91, + "content": "h _ { i } = R N N ( x _ { i } , h _ { i - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 364, + 505, + 376 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 373, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 163, + 388 + ], + "score": 1.0, + "content": "When all the", + "type": "text" + }, + { + "bbox": [ + 163, + 375, + 192, + 385 + ], + "score": 0.88, + "content": "N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 373, + 425, + 388 + ], + "score": 1.0, + "content": "words have been processed by the RNN, the final state", + "type": "text" + }, + { + "bbox": [ + 425, + 376, + 450, + 386 + ], + "score": 0.9, + "content": "h _ { { N - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 373, + 506, + 388 + ], + "score": 1.0, + "content": "is fed into a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 453, + 399 + ], + "score": 1.0, + "content": "softmax layer which computes the probability over a vocabulary of possible words:", + "type": "text" + }, + { + "bbox": [ + 453, + 385, + 505, + 397 + ], + "score": 0.91, + "content": "p _ { \\mathrm { v o c a b } } ( w ) =", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 393, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 393, + 142, + 410 + ], + "score": 1.0, + "content": "softmax", + "type": "text" + }, + { + "bbox": [ + 142, + 397, + 181, + 408 + ], + "score": 0.64, + "content": "\\left( U h _ { N - 1 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 393, + 213, + 410 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 213, + 396, + 265, + 408 + ], + "score": 0.86, + "content": "\\mathbf { \\Psi } _ { p _ { \\mathrm { v o c a b } } } \\in \\dot { \\mathbb { R } } ^ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 393, + 270, + 410 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 270, + 396, + 321, + 407 + ], + "score": 0.87, + "content": "U \\in \\mathbf { \\overline { { R } } } ^ { V \\times H }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 393, + 325, + 410 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 397, + 336, + 407 + ], + "score": 0.7, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 393, + 432, + 410 + ], + "score": 1.0, + "content": "is the hidden size, and", + "type": "text" + }, + { + "bbox": [ + 432, + 397, + 442, + 407 + ], + "score": 0.75, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 393, + 506, + 410 + ], + "score": 1.0, + "content": "the vocabulary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "size. RNNs can suffer from the vanishing gradient problem. The LSTM (Hochreiter & Schmidhu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "ber, 1997) architecture has been proposed to deal with this by updating the hidden state according", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "to a set of gates. Our work focuses on the LSTM but can be applied to any RNN architecture that", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 439, + 231, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 231, + 453 + ], + "score": 1.0, + "content": "ends in a vocabulary softmax.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 464, + 295, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 463, + 297, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 297, + 478 + ], + "score": 1.0, + "content": "2.2 THE POINTER NETWORK COMPONENT", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 497 + ], + "score": 1.0, + "content": "In this section, we propose a modification to pointer networks for language modeling. To predict", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "score": 1.0, + "content": "the next word in the sequence, a pointer network would select the member of the input sequence", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 507, + 369, + 520 + ], + "spans": [ + { + "bbox": [ + 107, + 507, + 179, + 520 + ], + "score": 0.9, + "content": "p ( w _ { 1 } , \\dots , w _ { N - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 507, + 369, + 520 + ], + "score": 1.0, + "content": "with the maximal attention score as the output.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 524, + 505, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "The simplest way to compute an attention score for a specific hidden state is an inner product with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 532, + 507, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 211, + 549 + ], + "score": 1.0, + "content": "all the past hidden states", + "type": "text" + }, + { + "bbox": [ + 212, + 536, + 218, + 545 + ], + "score": 0.78, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 532, + 319, + 549 + ], + "score": 1.0, + "content": ", with each hidden state", + "type": "text" + }, + { + "bbox": [ + 319, + 534, + 360, + 546 + ], + "score": 0.92, + "content": "\\boldsymbol { h } _ { i } ^ { \\star } \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 532, + 507, + 549 + ], + "score": 1.0, + "content": ". However, if we want to compute", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 546, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 558 + ], + "score": 1.0, + "content": "such a score for the most recent word (since this word may be repeated), we need to include the last", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "score": 1.0, + "content": "hidden state itself in this inner product. Taking the inner product of a vector with itself results in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 569, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 580 + ], + "score": 1.0, + "content": "the vector’s magnitude squared, meaning the attention scores would be strongly biased towards the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 426, + 591 + ], + "score": 1.0, + "content": "most recent word. Hence we project the current hidden state to a query vector", + "type": "text" + }, + { + "bbox": [ + 427, + 581, + 433, + 590 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "first. To produce", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 587, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 104, + 587, + 148, + 603 + ], + "score": 1.0, + "content": "the query", + "type": "text" + }, + { + "bbox": [ + 148, + 592, + 155, + 601 + ], + "score": 0.74, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 587, + 209, + 603 + ], + "score": 1.0, + "content": "we compute", + "type": "text" + }, + { + "bbox": [ + 210, + 590, + 312, + 602 + ], + "score": 0.9, + "content": "q = \\mathrm { t a n h } ( W h _ { N - 1 } + b )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 587, + 345, + 603 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 345, + 589, + 401, + 600 + ], + "score": 0.88, + "content": "W \\in \\dot { \\mathbb { R } ^ { H \\times } } \\mathbf { \\check { \\mathit { H } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 587, + 406, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 406, + 589, + 442, + 600 + ], + "score": 0.83, + "content": "b \\in \\mathring { \\mathbb { R } } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 587, + 464, + 603 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 465, + 589, + 501, + 601 + ], + "score": 0.92, + "content": "\\boldsymbol { q } ^ { \\mathbf { \\lambda } } \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 587, + 506, + 603 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "score": 1.0, + "content": "To generate the pointer attention scores, we compute the match between the previous RNN output", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 131, + 624 + ], + "score": 1.0, + "content": "states", + "type": "text" + }, + { + "bbox": [ + 131, + 612, + 142, + 623 + ], + "score": 0.88, + "content": "h _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 612, + 200, + 624 + ], + "score": 1.0, + "content": "and the query", + "type": "text" + }, + { + "bbox": [ + 201, + 614, + 207, + 623 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "by taking the inner product, followed by a softmax activation function to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 623, + 238, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 238, + 635 + ], + "score": 1.0, + "content": "obtain a probability distribution:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 260, + 635, + 330, + 665 + ], + "lines": [ + { + "bbox": [ + 260, + 635, + 330, + 665 + ], + "spans": [ + { + "bbox": [ + 260, + 635, + 330, + 665 + ], + "score": 0.86, + "content": "\\begin{array} { r } { z _ { i } = q ^ { T } h _ { i } , } \\\\ { a = \\mathrm { s o f t m a x } ( z ) , } \\end{array}", + "type": "interline_equation", + "image_path": "469059124895a99c3ee85d7a23fb0904355a5368933e17f10525830a22cc6c19.jpg" + } + ] + } + ], + "index": 39.5, + "virtual_lines": [ + { + "bbox": [ + 260, + 635, + 330, + 650.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 260, + 650.0, + 330, + 665.0 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 506, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 133, + 679 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 666, + 166, + 677 + ], + "score": 0.87, + "content": "z \\in \\mathbb { R } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 664, + 170, + 679 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 170, + 666, + 203, + 677 + ], + "score": 0.78, + "content": "a \\in \\mathbb { R } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 664, + 224, + 679 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 224, + 667, + 232, + 676 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 664, + 506, + 679 + ], + "score": 1.0, + "content": "is the total number of hidden states. The probability mass assigned", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "to a given word is the sum of the probability mass given to all token positions where the given word", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 689, + 143, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 689, + 143, + 702 + ], + "score": 1.0, + "content": "appears:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 701, + 349, + 730 + ], + "lines": [ + { + "bbox": [ + 261, + 701, + 349, + 730 + ], + "spans": [ + { + "bbox": [ + 261, + 701, + 349, + 730 + ], + "score": 0.93, + "content": "p _ { \\mathrm { p t r } } ( w ) = \\sum _ { i \\in I ( w , x ) } a _ { i } ,", + "type": "interline_equation", + "image_path": "c49f022a82926ffd594334936d27746c2f690ba865c32c91e4335746848bf3ae.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 261, + 701, + 349, + 715.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 261, + 715.5, + 349, + 730.0 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "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, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 187, + 78, + 424, + 195 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 187, + 78, + 424, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 187, + 78, + 424, + 195 + ], + "spans": [ + { + "bbox": [ + 187, + 78, + 424, + 195 + ], + "score": 0.97, + "type": "image", + "image_path": "8c26dfca638e32eea73667de18d4a96eb9d4f36a18ee233fb6986050ddd64f47.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 78, + 424, + 92.625 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 187, + 92.625, + 424, + 107.25 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 187, + 107.25, + 424, + 121.875 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 187, + 121.875, + 424, + 136.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 187, + 136.5, + 424, + 151.125 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 187, + 151.125, + 424, + 165.75 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 187, + 165.75, + 424, + 180.375 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 187, + 180.375, + 424, + 195.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 209, + 505, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 372, + 223 + ], + "score": 1.0, + "content": "Figure 1: Illustration of the pointer sentinel-RNN mixture model.", + "type": "text" + }, + { + "bbox": [ + 373, + 212, + 380, + 221 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 208, + 505, + 223 + ], + "score": 1.0, + "content": "is the mixture gate which uses", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 219, + 408, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 408, + 234 + ], + "score": 1.0, + "content": "the sentinel to dictate how much probability mass to give to the vocabulary.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 6.0 + }, + { + "type": "title", + "bbox": [ + 107, + 248, + 398, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 398, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 398, + 263 + ], + "score": 1.0, + "content": "2 THE POINTER SENTINEL FOR LANGUAGE MODELING", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 272, + 439, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 437, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 216, + 287 + ], + "score": 1.0, + "content": "Given a sequence of words", + "type": "text" + }, + { + "bbox": [ + 217, + 275, + 276, + 284 + ], + "score": 0.88, + "content": "w _ { 1 } , \\ldots , w _ { N - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 271, + 421, + 287 + ], + "score": 1.0, + "content": ", our task is to predict the next word", + "type": "text" + }, + { + "bbox": [ + 421, + 275, + 437, + 284 + ], + "score": 0.84, + "content": "w _ { N }", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 271, + 437, + 287 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 297, + 278, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 279, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 279, + 310 + ], + "score": 1.0, + "content": "2.1 THE SOFTMAX-RNN COMPONENT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "Recurrent neural networks (RNNs) have seen widespread use for language modeling (Mikolov", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 328, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 505, + 341 + ], + "score": 1.0, + "content": "et al., 2010) due to their ability to, at least in theory, retain long term dependencies. RNNs em-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 430, + 352 + ], + "score": 1.0, + "content": "ploy the chain rule to factorize the joint probabilities over a sequence of tokens:", + "type": "text" + }, + { + "bbox": [ + 431, + 339, + 505, + 352 + ], + "score": 0.9, + "content": "p ( w _ { 1 } , \\dots , w _ { N } ) =", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 213, + 365 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\prod _ { i = 1 } ^ { N } p ( w _ { i } | w _ { 1 } , \\dots , w _ { i - 1 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 351, + 354, + 366 + ], + "score": 1.0, + "content": ". More precisely, at each time step", + "type": "text" + }, + { + "bbox": [ + 354, + 354, + 359, + 363 + ], + "score": 0.63, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 351, + 506, + 366 + ], + "score": 1.0, + "content": ", we compute the RNN hidden state", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 117, + 375 + ], + "score": 0.85, + "content": "h _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 364, + 276, + 376 + ], + "score": 1.0, + "content": "according to the previous hidden state", + "type": "text" + }, + { + "bbox": [ + 277, + 364, + 298, + 375 + ], + "score": 0.91, + "content": "h _ { i - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 364, + 356, + 376 + ], + "score": 1.0, + "content": "and the input", + "type": "text" + }, + { + "bbox": [ + 357, + 366, + 367, + 375 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 364, + 408, + 376 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 408, + 363, + 501, + 375 + ], + "score": 0.91, + "content": "h _ { i } = R N N ( x _ { i } , h _ { i - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 364, + 505, + 376 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 373, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 163, + 388 + ], + "score": 1.0, + "content": "When all the", + "type": "text" + }, + { + "bbox": [ + 163, + 375, + 192, + 385 + ], + "score": 0.88, + "content": "N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 373, + 425, + 388 + ], + "score": 1.0, + "content": "words have been processed by the RNN, the final state", + "type": "text" + }, + { + "bbox": [ + 425, + 376, + 450, + 386 + ], + "score": 0.9, + "content": "h _ { { N - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 373, + 506, + 388 + ], + "score": 1.0, + "content": "is fed into a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 385, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 453, + 399 + ], + "score": 1.0, + "content": "softmax layer which computes the probability over a vocabulary of possible words:", + "type": "text" + }, + { + "bbox": [ + 453, + 385, + 505, + 397 + ], + "score": 0.91, + "content": "p _ { \\mathrm { v o c a b } } ( w ) =", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 393, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 393, + 142, + 410 + ], + "score": 1.0, + "content": "softmax", + "type": "text" + }, + { + "bbox": [ + 142, + 397, + 181, + 408 + ], + "score": 0.64, + "content": "\\left( U h _ { N - 1 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 393, + 213, + 410 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 213, + 396, + 265, + 408 + ], + "score": 0.86, + "content": "\\mathbf { \\Psi } _ { p _ { \\mathrm { v o c a b } } } \\in \\dot { \\mathbb { R } } ^ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 393, + 270, + 410 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 270, + 396, + 321, + 407 + ], + "score": 0.87, + "content": "U \\in \\mathbf { \\overline { { R } } } ^ { V \\times H }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 393, + 325, + 410 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 397, + 336, + 407 + ], + "score": 0.7, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 393, + 432, + 410 + ], + "score": 1.0, + "content": "is the hidden size, and", + "type": "text" + }, + { + "bbox": [ + 432, + 397, + 442, + 407 + ], + "score": 0.75, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 393, + 506, + 410 + ], + "score": 1.0, + "content": "the vocabulary", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "size. RNNs can suffer from the vanishing gradient problem. The LSTM (Hochreiter & Schmidhu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "ber, 1997) architecture has been proposed to deal with this by updating the hidden state according", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "to a set of gates. Our work focuses on the LSTM but can be applied to any RNN architecture that", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 439, + 231, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 231, + 453 + ], + "score": 1.0, + "content": "ends in a vocabulary softmax.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 317, + 506, + 453 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 464, + 295, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 463, + 297, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 297, + 478 + ], + "score": 1.0, + "content": "2.2 THE POINTER NETWORK COMPONENT", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 497 + ], + "score": 1.0, + "content": "In this section, we propose a modification to pointer networks for language modeling. To predict", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "score": 1.0, + "content": "the next word in the sequence, a pointer network would select the member of the input sequence", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 507, + 369, + 520 + ], + "spans": [ + { + "bbox": [ + 107, + 507, + 179, + 520 + ], + "score": 0.9, + "content": "p ( w _ { 1 } , \\dots , w _ { N - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 507, + 369, + 520 + ], + "score": 1.0, + "content": "with the maximal attention score as the output.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 486, + 505, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 524, + 505, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "The simplest way to compute an attention score for a specific hidden state is an inner product with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 532, + 507, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 211, + 549 + ], + "score": 1.0, + "content": "all the past hidden states", + "type": "text" + }, + { + "bbox": [ + 212, + 536, + 218, + 545 + ], + "score": 0.78, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 532, + 319, + 549 + ], + "score": 1.0, + "content": ", with each hidden state", + "type": "text" + }, + { + "bbox": [ + 319, + 534, + 360, + 546 + ], + "score": 0.92, + "content": "\\boldsymbol { h } _ { i } ^ { \\star } \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 532, + 507, + 549 + ], + "score": 1.0, + "content": ". However, if we want to compute", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 546, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 558 + ], + "score": 1.0, + "content": "such a score for the most recent word (since this word may be repeated), we need to include the last", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "score": 1.0, + "content": "hidden state itself in this inner product. Taking the inner product of a vector with itself results in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 569, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 580 + ], + "score": 1.0, + "content": "the vector’s magnitude squared, meaning the attention scores would be strongly biased towards the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 426, + 591 + ], + "score": 1.0, + "content": "most recent word. Hence we project the current hidden state to a query vector", + "type": "text" + }, + { + "bbox": [ + 427, + 581, + 433, + 590 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "first. To produce", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 587, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 104, + 587, + 148, + 603 + ], + "score": 1.0, + "content": "the query", + "type": "text" + }, + { + "bbox": [ + 148, + 592, + 155, + 601 + ], + "score": 0.74, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 587, + 209, + 603 + ], + "score": 1.0, + "content": "we compute", + "type": "text" + }, + { + "bbox": [ + 210, + 590, + 312, + 602 + ], + "score": 0.9, + "content": "q = \\mathrm { t a n h } ( W h _ { N - 1 } + b )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 587, + 345, + 603 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 345, + 589, + 401, + 600 + ], + "score": 0.88, + "content": "W \\in \\dot { \\mathbb { R } ^ { H \\times } } \\mathbf { \\check { \\mathit { H } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 587, + 406, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 406, + 589, + 442, + 600 + ], + "score": 0.83, + "content": "b \\in \\mathring { \\mathbb { R } } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 587, + 464, + 603 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 465, + 589, + 501, + 601 + ], + "score": 0.92, + "content": "\\boldsymbol { q } ^ { \\mathbf { \\lambda } } \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 587, + 506, + 603 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 613 + ], + "score": 1.0, + "content": "To generate the pointer attention scores, we compute the match between the previous RNN output", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 131, + 624 + ], + "score": 1.0, + "content": "states", + "type": "text" + }, + { + "bbox": [ + 131, + 612, + 142, + 623 + ], + "score": 0.88, + "content": "h _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 612, + 200, + 624 + ], + "score": 1.0, + "content": "and the query", + "type": "text" + }, + { + "bbox": [ + 201, + 614, + 207, + 623 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "by taking the inner product, followed by a softmax activation function to", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 623, + 238, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 238, + 635 + ], + "score": 1.0, + "content": "obtain a probability distribution:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 524, + 507, + 635 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 260, + 635, + 330, + 665 + ], + "lines": [ + { + "bbox": [ + 260, + 635, + 330, + 665 + ], + "spans": [ + { + "bbox": [ + 260, + 635, + 330, + 665 + ], + "score": 0.86, + "content": "\\begin{array} { r } { z _ { i } = q ^ { T } h _ { i } , } \\\\ { a = \\mathrm { s o f t m a x } ( z ) , } \\end{array}", + "type": "interline_equation", + "image_path": "469059124895a99c3ee85d7a23fb0904355a5368933e17f10525830a22cc6c19.jpg" + } + ] + } + ], + "index": 39.5, + "virtual_lines": [ + { + "bbox": [ + 260, + 635, + 330, + 650.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 260, + 650.0, + 330, + 665.0 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 506, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 133, + 679 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 666, + 166, + 677 + ], + "score": 0.87, + "content": "z \\in \\mathbb { R } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 664, + 170, + 679 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 170, + 666, + 203, + 677 + ], + "score": 0.78, + "content": "a \\in \\mathbb { R } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 664, + 224, + 679 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 224, + 667, + 232, + 676 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 664, + 506, + 679 + ], + "score": 1.0, + "content": "is the total number of hidden states. The probability mass assigned", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "to a given word is the sum of the probability mass given to all token positions where the given word", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 689, + 143, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 689, + 143, + 702 + ], + "score": 1.0, + "content": "appears:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 664, + 506, + 702 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 701, + 349, + 730 + ], + "lines": [ + { + "bbox": [ + 261, + 701, + 349, + 730 + ], + "spans": [ + { + "bbox": [ + 261, + 701, + 349, + 730 + ], + "score": 0.93, + "content": "p _ { \\mathrm { p t r } } ( w ) = \\sum _ { i \\in I ( w , x ) } a _ { i } ,", + "type": "interline_equation", + "image_path": "c49f022a82926ffd594334936d27746c2f690ba865c32c91e4335746848bf3ae.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 261, + 701, + 349, + 715.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 261, + 715.5, + 349, + 730.0 + ], + "spans": [], + "index": 45 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 165, + 82, + 442, + 206 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 82, + 442, + 206 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 82, + 442, + 206 + ], + "spans": [ + { + "bbox": [ + 165, + 82, + 442, + 206 + ], + "score": 0.973, + "type": "image", + "image_path": "0171833abe0201710740ca22ff0191abc247c1cd6f229bbb5f4880daf49a948b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 82, + 442, + 123.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 123.33333333333334, + 442, + 164.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 164.66666666666669, + 442, + 206.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 218, + 505, + 285 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "Figure 2: Visualization of the pointer sentinel-RNN mixture model. The query, produced from", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 229, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 506, + 243 + ], + "score": 1.0, + "content": "applying an MLP to the last output of the RNN, is used by the pointer network to identify likely", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 255, + 253 + ], + "score": 1.0, + "content": "matching words from the past. The", + "type": "text" + }, + { + "bbox": [ + 255, + 242, + 265, + 251 + ], + "score": 0.8, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "nodes are inner products between the query and the RNN", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 251, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 506, + 265 + ], + "score": 1.0, + "content": "hidden states. If the pointer component is not confident, probability mass can be directed to the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 303, + 275 + ], + "score": 1.0, + "content": "RNN by increasing the value of the mixture gate", + "type": "text" + }, + { + "bbox": [ + 303, + 264, + 310, + 274 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 262, + 439, + 275 + ], + "score": 1.0, + "content": "via the sentinel, seen in grey. If", + "type": "text" + }, + { + "bbox": [ + 439, + 263, + 464, + 274 + ], + "score": 0.91, + "content": "g = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "then only", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 273, + 330, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 187, + 286 + ], + "score": 1.0, + "content": "the RNN is used. If", + "type": "text" + }, + { + "bbox": [ + 187, + 274, + 212, + 285 + ], + "score": 0.91, + "content": "g = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 273, + 330, + 286 + ], + "score": 1.0, + "content": "then only the pointer is used.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 503, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 133, + 318 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 304, + 165, + 316 + ], + "score": 0.93, + "content": "I ( w , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 302, + 308, + 318 + ], + "score": 1.0, + "content": "results in all positions of the word", + "type": "text" + }, + { + "bbox": [ + 308, + 307, + 317, + 315 + ], + "score": 0.75, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 302, + 367, + 318 + ], + "score": 1.0, + "content": "in the input", + "type": "text" + }, + { + "bbox": [ + 367, + 307, + 374, + 315 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 302, + 392, + 318 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 304, + 435, + 317 + ], + "score": 0.92, + "content": "p _ { \\mathrm { p t r } } \\in \\mathbb { R } ^ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 302, + 505, + 318 + ], + "score": 1.0, + "content": ". This technique,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 314, + 489, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 489, + 328 + ], + "score": 1.0, + "content": "referred to as pointer sum attention, has been used for question answering (Kadlec et al., 2016).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 332, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "score": 1.0, + "content": "Given the length of the documents used in language modeling, it may not be feasible for the pointer", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "network to evaluate an attention score for all the words back to the beginning of the dataset. Instead,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 293, + 367 + ], + "score": 1.0, + "content": "we may elect to maintain only a window of the", + "type": "text" + }, + { + "bbox": [ + 293, + 355, + 301, + 364 + ], + "score": 0.68, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "most recent words for the pointer to match against.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 363, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 154, + 380 + ], + "score": 1.0, + "content": "The length", + "type": "text" + }, + { + "bbox": [ + 155, + 366, + 163, + 375 + ], + "score": 0.73, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 363, + 505, + 380 + ], + "score": 1.0, + "content": "of the window is a hyperparameter that can be tuned on a held out dataset or by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 376, + 469, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 332, + 389 + ], + "score": 1.0, + "content": "empirically analyzing how frequently a word at position", + "type": "text" + }, + { + "bbox": [ + 333, + 378, + 338, + 386 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 376, + 430, + 389 + ], + "score": 1.0, + "content": "appears within the last", + "type": "text" + }, + { + "bbox": [ + 431, + 377, + 438, + 386 + ], + "score": 0.72, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 376, + 469, + 389 + ], + "score": 1.0, + "content": "words.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 393, + 505, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "To illustrate the advantages of this approach, consider a long article featuring two sentences Pres-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "score": 1.0, + "content": "ident Obama discussed the economy and President Obama then flew to Prague. If the query was", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "Which President is the article about?, probability mass could be applied to Obama in either sentence.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "If the question was instead Who flew to Prague?, only the latter occurrence of Obama provides the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "proper context. The attention sum model ensures that, as long as the entire attention probability", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "mass is distributed on the occurrences of Obama, the pointer network can achieve zero loss. This", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "flexibility provides supervision without forcing the model to put mass on supervision signals that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 471, + 268, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 268, + 483 + ], + "score": 1.0, + "content": "may be incorrect or lack proper context.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 494, + 315, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 317, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 317, + 507 + ], + "score": 1.0, + "content": "2.3 THE POINTER SENTINEL MIXTURE MODEL", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 515, + 505, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "While pointer networks have proven to be effective, they cannot predict output words that are not", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "score": 1.0, + "content": "present in the input, a common scenario in language modeling. We propose to resolve this by using", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 537, + 372, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 372, + 550 + ], + "score": 1.0, + "content": "a mixture model that combines a standard softmax with a pointer.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "Our mixture model has two base distributions: the softmax vocabulary of the RNN output and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "the positional vocabulary of the pointer model. We refer to these as the RNN component and the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "pointer component respectively. To combine the two base distributions, we use a gating function", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 587, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 186, + 599 + ], + "score": 0.91, + "content": "\\bar { g } \\ : = \\ : p ( z _ { i } \\ : = \\ : k | x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 587, + 217, + 599 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 217, + 588, + 226, + 598 + ], + "score": 0.86, + "content": "z _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 587, + 506, + 599 + ], + "score": 1.0, + "content": "is the latent variable stating which base distribution the data point", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 321, + 611 + ], + "score": 1.0, + "content": "belongs to. As we only have two base distributions,", + "type": "text" + }, + { + "bbox": [ + 322, + 600, + 329, + 610 + ], + "score": 0.78, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 597, + 468, + 611 + ], + "score": 1.0, + "content": "can produce a scalar in the range", + "type": "text" + }, + { + "bbox": [ + 468, + 598, + 489, + 610 + ], + "score": 0.86, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 597, + 505, + 611 + ], + "score": 1.0, + "content": ". A", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 609, + 474, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 474, + 622 + ], + "score": 1.0, + "content": "value of 0 implies that only the pointer is used and 1 means only the softmax-RNN is used.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 624, + 403, + 639 + ], + "lines": [ + { + "bbox": [ + 208, + 624, + 403, + 639 + ], + "spans": [ + { + "bbox": [ + 208, + 624, + 403, + 639 + ], + "score": 0.9, + "content": "p ( y _ { i } | x _ { i } ) = g p _ { \\mathrm { v o c a b } } ( y _ { i } | x _ { i } ) + ( 1 - g ) p _ { \\mathrm { p t r } } ( y _ { i } | x _ { i } ) .", + "type": "interline_equation", + "image_path": "eb2b3c050181bba3b3a4a7f5601676418f3c1cf66a90cacb6cc22dd22fb2ceac.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 208, + 624, + 403, + 639 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 642, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "While the models could be entirely separate, we re-use many of the parameters for the softmax-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "score": 1.0, + "content": "RNN and pointer components. This sharing minimizes the total number of parameters in the model", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 664, + 417, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 417, + 677 + ], + "score": 1.0, + "content": "and capitalizes on the pointer network’s supervision for the RNN component.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 287, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 288, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 288, + 702 + ], + "score": 1.0, + "content": "2.4 DETAILS OF THE GATING FUNCTION", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 278, + 722 + ], + "score": 1.0, + "content": "To compute the new pointer sentinel gate", + "type": "text" + }, + { + "bbox": [ + 279, + 712, + 284, + 721 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ", we modify the pointer component. In particular, we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 225, + 733 + ], + "score": 1.0, + "content": "add an additional element to", + "type": "text" + }, + { + "bbox": [ + 225, + 723, + 231, + 730 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 720, + 506, + 733 + ], + "score": 1.0, + "content": ", the vector of attention scores as defined in Eq. 1. This element is", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 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": "image", + "bbox": [ + 165, + 82, + 442, + 206 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 82, + 442, + 206 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 82, + 442, + 206 + ], + "spans": [ + { + "bbox": [ + 165, + 82, + 442, + 206 + ], + "score": 0.973, + "type": "image", + "image_path": "0171833abe0201710740ca22ff0191abc247c1cd6f229bbb5f4880daf49a948b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 82, + 442, + 123.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 123.33333333333334, + 442, + 164.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 164.66666666666669, + 442, + 206.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 218, + 505, + 285 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "Figure 2: Visualization of the pointer sentinel-RNN mixture model. The query, produced from", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 229, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 506, + 243 + ], + "score": 1.0, + "content": "applying an MLP to the last output of the RNN, is used by the pointer network to identify likely", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 240, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 255, + 253 + ], + "score": 1.0, + "content": "matching words from the past. The", + "type": "text" + }, + { + "bbox": [ + 255, + 242, + 265, + 251 + ], + "score": 0.8, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 240, + 505, + 253 + ], + "score": 1.0, + "content": "nodes are inner products between the query and the RNN", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 251, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 506, + 265 + ], + "score": 1.0, + "content": "hidden states. If the pointer component is not confident, probability mass can be directed to the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 303, + 275 + ], + "score": 1.0, + "content": "RNN by increasing the value of the mixture gate", + "type": "text" + }, + { + "bbox": [ + 303, + 264, + 310, + 274 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 262, + 439, + 275 + ], + "score": 1.0, + "content": "via the sentinel, seen in grey. If", + "type": "text" + }, + { + "bbox": [ + 439, + 263, + 464, + 274 + ], + "score": 0.91, + "content": "g = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "then only", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 273, + 330, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 187, + 286 + ], + "score": 1.0, + "content": "the RNN is used. If", + "type": "text" + }, + { + "bbox": [ + 187, + 274, + 212, + 285 + ], + "score": 0.91, + "content": "g = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 273, + 330, + 286 + ], + "score": 1.0, + "content": "then only the pointer is used.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 503, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 133, + 318 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 304, + 165, + 316 + ], + "score": 0.93, + "content": "I ( w , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 302, + 308, + 318 + ], + "score": 1.0, + "content": "results in all positions of the word", + "type": "text" + }, + { + "bbox": [ + 308, + 307, + 317, + 315 + ], + "score": 0.75, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 302, + 367, + 318 + ], + "score": 1.0, + "content": "in the input", + "type": "text" + }, + { + "bbox": [ + 367, + 307, + 374, + 315 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 302, + 392, + 318 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 304, + 435, + 317 + ], + "score": 0.92, + "content": "p _ { \\mathrm { p t r } } \\in \\mathbb { R } ^ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 302, + 505, + 318 + ], + "score": 1.0, + "content": ". This technique,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 314, + 489, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 489, + 328 + ], + "score": 1.0, + "content": "referred to as pointer sum attention, has been used for question answering (Kadlec et al., 2016).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 302, + 505, + 328 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 332, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "score": 1.0, + "content": "Given the length of the documents used in language modeling, it may not be feasible for the pointer", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "network to evaluate an attention score for all the words back to the beginning of the dataset. Instead,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 293, + 367 + ], + "score": 1.0, + "content": "we may elect to maintain only a window of the", + "type": "text" + }, + { + "bbox": [ + 293, + 355, + 301, + 364 + ], + "score": 0.68, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "most recent words for the pointer to match against.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 363, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 154, + 380 + ], + "score": 1.0, + "content": "The length", + "type": "text" + }, + { + "bbox": [ + 155, + 366, + 163, + 375 + ], + "score": 0.73, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 363, + 505, + 380 + ], + "score": 1.0, + "content": "of the window is a hyperparameter that can be tuned on a held out dataset or by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 376, + 469, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 332, + 389 + ], + "score": 1.0, + "content": "empirically analyzing how frequently a word at position", + "type": "text" + }, + { + "bbox": [ + 333, + 378, + 338, + 386 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 376, + 430, + 389 + ], + "score": 1.0, + "content": "appears within the last", + "type": "text" + }, + { + "bbox": [ + 431, + 377, + 438, + 386 + ], + "score": 0.72, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 376, + 469, + 389 + ], + "score": 1.0, + "content": "words.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 333, + 505, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 393, + 505, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "To illustrate the advantages of this approach, consider a long article featuring two sentences Pres-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "score": 1.0, + "content": "ident Obama discussed the economy and President Obama then flew to Prague. If the query was", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "Which President is the article about?, probability mass could be applied to Obama in either sentence.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "If the question was instead Who flew to Prague?, only the latter occurrence of Obama provides the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "proper context. The attention sum model ensures that, as long as the entire attention probability", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "mass is distributed on the occurrences of Obama, the pointer network can achieve zero loss. This", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "flexibility provides supervision without forcing the model to put mass on supervision signals that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 471, + 268, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 268, + 483 + ], + "score": 1.0, + "content": "may be incorrect or lack proper context.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 392, + 505, + 483 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 494, + 315, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 317, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 317, + 507 + ], + "score": 1.0, + "content": "2.3 THE POINTER SENTINEL MIXTURE MODEL", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 515, + 505, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "While pointer networks have proven to be effective, they cannot predict output words that are not", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "score": 1.0, + "content": "present in the input, a common scenario in language modeling. We propose to resolve this by using", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 537, + 372, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 372, + 550 + ], + "score": 1.0, + "content": "a mixture model that combines a standard softmax with a pointer.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 514, + 505, + 550 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "Our mixture model has two base distributions: the softmax vocabulary of the RNN output and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "the positional vocabulary of the pointer model. We refer to these as the RNN component and the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "pointer component respectively. To combine the two base distributions, we use a gating function", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 587, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 186, + 599 + ], + "score": 0.91, + "content": "\\bar { g } \\ : = \\ : p ( z _ { i } \\ : = \\ : k | x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 587, + 217, + 599 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 217, + 588, + 226, + 598 + ], + "score": 0.86, + "content": "z _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 587, + 506, + 599 + ], + "score": 1.0, + "content": "is the latent variable stating which base distribution the data point", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 321, + 611 + ], + "score": 1.0, + "content": "belongs to. As we only have two base distributions,", + "type": "text" + }, + { + "bbox": [ + 322, + 600, + 329, + 610 + ], + "score": 0.78, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 597, + 468, + 611 + ], + "score": 1.0, + "content": "can produce a scalar in the range", + "type": "text" + }, + { + "bbox": [ + 468, + 598, + 489, + 610 + ], + "score": 0.86, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 597, + 505, + 611 + ], + "score": 1.0, + "content": ". A", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 609, + 474, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 474, + 622 + ], + "score": 1.0, + "content": "value of 0 implies that only the pointer is used and 1 means only the softmax-RNN is used.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 554, + 506, + 622 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 624, + 403, + 639 + ], + "lines": [ + { + "bbox": [ + 208, + 624, + 403, + 639 + ], + "spans": [ + { + "bbox": [ + 208, + 624, + 403, + 639 + ], + "score": 0.9, + "content": "p ( y _ { i } | x _ { i } ) = g p _ { \\mathrm { v o c a b } } ( y _ { i } | x _ { i } ) + ( 1 - g ) p _ { \\mathrm { p t r } } ( y _ { i } | x _ { i } ) .", + "type": "interline_equation", + "image_path": "eb2b3c050181bba3b3a4a7f5601676418f3c1cf66a90cacb6cc22dd22fb2ceac.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 208, + 624, + 403, + 639 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 642, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "While the models could be entirely separate, we re-use many of the parameters for the softmax-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "score": 1.0, + "content": "RNN and pointer components. This sharing minimizes the total number of parameters in the model", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 664, + 417, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 417, + 677 + ], + "score": 1.0, + "content": "and capitalizes on the pointer network’s supervision for the RNN component.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 642, + 505, + 677 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 287, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 288, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 288, + 702 + ], + "score": 1.0, + "content": "2.4 DETAILS OF THE GATING FUNCTION", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 278, + 722 + ], + "score": 1.0, + "content": "To compute the new pointer sentinel gate", + "type": "text" + }, + { + "bbox": [ + 279, + 712, + 284, + 721 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ", we modify the pointer component. In particular, we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 225, + 733 + ], + "score": 1.0, + "content": "add an additional element to", + "type": "text" + }, + { + "bbox": [ + 225, + 723, + 231, + 730 + ], + "score": 0.74, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 720, + 506, + 733 + ], + "score": 1.0, + "content": ", the vector of attention scores as defined in Eq. 1. This element is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 80, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 415, + 96 + ], + "score": 1.0, + "content": "computed using an inner product between the query and the sentinel2 vector", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 415, + 82, + 448, + 93 + ], + "score": 0.91, + "content": "s \\in \\mathbb { R } ^ { H }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 449, + 80, + 507, + 96 + ], + "score": 1.0, + "content": ". This change", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 507, + 106 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 273, + 106 + ], + "score": 1.0, + "content": "can be summarized by changing Eq. 2 to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 274, + 93, + 372, + 106 + ], + "score": 0.26, + "content": "a = \\operatorname { \\bar { s o f t m a x } } \\left( \\left[ z ; q ^ { T } s \\right] \\right)", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 373, + 92, + 422, + 106 + ], + "score": 1.0, + "content": ". We define", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 422, + 93, + 466, + 104 + ], + "score": 0.91, + "content": "a \\in \\mathbb { R } ^ { V + 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 466, + 92, + 507, + 106 + ], + "score": 1.0, + "content": "to be the", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 116 + ], + "score": 1.0, + "content": "attention distribution over both the words in the pointer window as well as the sentinel state. We", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 405, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 345, + 128 + ], + "score": 1.0, + "content": "interpret the last element of this vector to be the gate value:", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 346, + 115, + 401, + 127 + ], + "score": 0.92, + "content": "g = a [ V + 1 ]", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 401, + 114, + 405, + 128 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 709, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 415, + 96 + ], + "score": 1.0, + "content": "computed using an inner product between the query and the sentinel2 vector", + "type": "text" + }, + { + "bbox": [ + 415, + 82, + 448, + 93 + ], + "score": 0.91, + "content": "s \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 80, + 507, + 96 + ], + "score": 1.0, + "content": ". This change", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 507, + 106 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 273, + 106 + ], + "score": 1.0, + "content": "can be summarized by changing Eq. 2 to", + "type": "text" + }, + { + "bbox": [ + 274, + 93, + 372, + 106 + ], + "score": 0.26, + "content": "a = \\operatorname { \\bar { s o f t m a x } } \\left( \\left[ z ; q ^ { T } s \\right] \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 92, + 422, + 106 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 422, + 93, + 466, + 104 + ], + "score": 0.91, + "content": "a \\in \\mathbb { R } ^ { V + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 92, + 507, + 106 + ], + "score": 1.0, + "content": "to be the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 116 + ], + "score": 1.0, + "content": "attention distribution over both the words in the pointer window as well as the sentinel state. We", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 405, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 345, + 128 + ], + "score": 1.0, + "content": "interpret the last element of this vector to be the gate value:", + "type": "text" + }, + { + "bbox": [ + 346, + 115, + 401, + 127 + ], + "score": 0.92, + "content": "g = a [ V + 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 114, + 405, + 128 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 105, + 132, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 244, + 145 + ], + "score": 1.0, + "content": "Any probability mass assigned to", + "type": "text" + }, + { + "bbox": [ + 244, + 135, + 251, + 144 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "is given to the standard softmax vocabulary of the RNN. The", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 487, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 487, + 155 + ], + "score": 1.0, + "content": "final updated, normalized pointer probability over the vocabulary in the window then becomes:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 163, + 365, + 189 + ], + "lines": [ + { + "bbox": [ + 245, + 163, + 365, + 189 + ], + "spans": [ + { + "bbox": [ + 245, + 163, + 365, + 189 + ], + "score": 0.95, + "content": "p _ { \\mathrm { p t r } } ( y _ { i } | x _ { i } ) = \\frac { 1 } { 1 - g } a [ 1 : V ] ,", + "type": "interline_equation", + "image_path": "b60657368b68e271cad13cfea9f485c207b1c64656bcc81124ecf7ea8b6fd18e.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 245, + 163, + 365, + 189 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 107, + 198, + 504, + 210 + ], + "spans": [ + { + "bbox": [ + 107, + 198, + 182, + 209 + ], + "score": 1.0, + "content": "where we denoted", + "type": "text" + }, + { + "bbox": [ + 182, + 198, + 210, + 210 + ], + "score": 0.92, + "content": "[ 1 : V ]", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 198, + 278, + 209 + ], + "score": 1.0, + "content": "to mean the first", + "type": "text" + }, + { + "bbox": [ + 278, + 199, + 288, + 208 + ], + "score": 0.81, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 198, + 504, + 209 + ], + "score": 1.0, + "content": "elements of the vector. The final mixture model is the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 209, + 379, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 379, + 222 + ], + "score": 1.0, + "content": "same as Eq. 4 but with the updated Eq. 5 for the pointer probability.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "This setup encourages the model to have both components compete: use pointers whenever possible", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "and back-off to the standard softmax otherwise. By integrating the gating function into the pointer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 249, + 504, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 504, + 261 + ], + "score": 1.0, + "content": "computation, it is influenced by both the RNN hidden state and the pointer window’s hidden states.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 107, + 277, + 370, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 370, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 370, + 290 + ], + "score": 1.0, + "content": "2.5 MOTIVATION FOR THE SENTINEL AS GATING FUNCTION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 299, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "To make the best decision possible regarding which component to use the gating function must have", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 310, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 506, + 324 + ], + "score": 1.0, + "content": "as much context as possible. As we increase the window of words for the pointer component to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "consider, the RNN hidden state by itself isn’t guaranteed to accurately recall the identity or order of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 332, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 505, + 345 + ], + "score": 1.0, + "content": "words it has recently seen (Adi et al., 2016). This is an obvious limitation of encoding a variable", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 343, + 311, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 311, + 356 + ], + "score": 1.0, + "content": "length sequence into a fixed dimensionality vector.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 294, + 372 + ], + "score": 1.0, + "content": "If we want a pointer window where the length", + "type": "text" + }, + { + "bbox": [ + 294, + 361, + 303, + 370 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 361, + 505, + 372 + ], + "score": 1.0, + "content": "is in the hundreds, accurately modeling all of this", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "information within the RNN hidden state is impractical. The position of specific words is also a vital", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "score": 1.0, + "content": "feature as relevant words eventually fall out of the pointer component’s window. To correctly model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "this would require the RNN hidden state to store both the identity and position of each word in the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 403, + 491, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 403, + 491, + 419 + ], + "score": 1.0, + "content": "pointer window. This is far beyond the capability of the fixed dimensionality RNN hidden state.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "For this reason, we integrate the gating function directly into the pointer network by use of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 431, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 446 + ], + "score": 1.0, + "content": "sentinel. The decision to back-off to the softmax vocabulary is then informed by both the query", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 107, + 446, + 113, + 455 + ], + "score": 0.59, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 443, + 275, + 456 + ], + "score": 1.0, + "content": ", generated using the RNN hidden state", + "type": "text" + }, + { + "bbox": [ + 275, + 444, + 300, + 455 + ], + "score": 0.91, + "content": "h _ { N - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 443, + 506, + 456 + ], + "score": 1.0, + "content": ", and from the contents of the hidden states in the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "pointer window itself. This allows the model to accurately query what hidden states are contained in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 500, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 500, + 478 + ], + "score": 1.0, + "content": "the pointer window and avoid maintaining state for words that may have fallen out of the window.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 494, + 289, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 290, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 290, + 507 + ], + "score": 1.0, + "content": "2.6 POINTER SENTINEL LOSS FUNCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 507, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 267, + 531 + ], + "score": 1.0, + "content": "We minimize the cross-entropy loss of", + "type": "text" + }, + { + "bbox": [ + 268, + 516, + 359, + 531 + ], + "score": 0.91, + "content": "\\begin{array} { r } { - \\sum _ { j } \\hat { y _ { i j } } \\log p \\big ( y _ { i j } | x _ { i } \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 515, + 391, + 531 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 391, + 517, + 401, + 528 + ], + "score": 0.87, + "content": "\\hat { y } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 515, + 507, + 531 + ], + "score": 1.0, + "content": "is a one hot encoding of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 261, + 542 + ], + "score": 1.0, + "content": "the correct output. During training, as", + "type": "text" + }, + { + "bbox": [ + 261, + 530, + 270, + 541 + ], + "score": 0.88, + "content": "\\hat { y } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 529, + 443, + 542 + ], + "score": 1.0, + "content": "is one hot, only a single mixed probability", + "type": "text" + }, + { + "bbox": [ + 444, + 529, + 469, + 542 + ], + "score": 0.92, + "content": "p ( y _ { i j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "must be", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "score": 1.0, + "content": "computed for calculating the loss. This can result in a far more efficient GPU implementation. At", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 287, + 564 + ], + "score": 1.0, + "content": "prediction time, when we want all values for", + "type": "text" + }, + { + "bbox": [ + 288, + 551, + 321, + 564 + ], + "score": 0.93, + "content": "p ( y _ { i } | x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 552, + 386, + 564 + ], + "score": 1.0, + "content": ", a maximum of", + "type": "text" + }, + { + "bbox": [ + 387, + 552, + 394, + 561 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "word probabilities must be", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 561, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 104, + 561, + 242, + 576 + ], + "score": 1.0, + "content": "mixed, as there is a maximum of", + "type": "text" + }, + { + "bbox": [ + 243, + 563, + 250, + 572 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 561, + 440, + 576 + ], + "score": 1.0, + "content": "unique words in the pointer window of length", + "type": "text" + }, + { + "bbox": [ + 440, + 563, + 448, + 572 + ], + "score": 0.68, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 561, + 506, + 576 + ], + "score": 1.0, + "content": ". This mixing", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 573, + 448, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 448, + 586 + ], + "score": 1.0, + "content": "can occur on the CPU where random access indexing is more efficient than the GPU.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 106, + 591, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 505, + 602 + ], + "score": 1.0, + "content": "Following the pointer sum attention network, the aim is to place probability mass from the attention", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 243, + 613 + ], + "score": 1.0, + "content": "mechanism on the correct output", + "type": "text" + }, + { + "bbox": [ + 243, + 602, + 253, + 613 + ], + "score": 0.86, + "content": "\\hat { y } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "if it exists in the input. In the case of our mixture model the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 103, + 611, + 507, + 633 + ], + "spans": [ + { + "bbox": [ + 103, + 611, + 228, + 633 + ], + "score": 1.0, + "content": "pointer loss instead becomes", + "type": "text" + }, + { + "bbox": [ + 228, + 612, + 328, + 632 + ], + "score": 0.91, + "content": "\\begin{array} { r } { - \\log \\left( g + \\sum _ { i \\in I ( y , x ) } a _ { i } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 611, + 359, + 633 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 359, + 615, + 388, + 628 + ], + "score": 0.92, + "content": "I ( y , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 611, + 507, + 633 + ], + "score": 1.0, + "content": "results in all positions of the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 166, + 644 + ], + "score": 1.0, + "content": "correct output", + "type": "text" + }, + { + "bbox": [ + 166, + 632, + 173, + 642 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 630, + 225, + 644 + ], + "score": 1.0, + "content": "in the input", + "type": "text" + }, + { + "bbox": [ + 225, + 633, + 232, + 640 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 630, + 277, + 644 + ], + "score": 1.0, + "content": ". The gate", + "type": "text" + }, + { + "bbox": [ + 277, + 633, + 284, + 642 + ], + "score": 0.76, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "may be assigned all probability mass if, for instance,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 640, + 180, + 654 + ], + "score": 1.0, + "content": "the correct output", + "type": "text" + }, + { + "bbox": [ + 180, + 642, + 190, + 653 + ], + "score": 0.87, + "content": "\\hat { y } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "exists only in the softmax-RNN vocabulary. There is no penalty if the model", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 652, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 506, + 664 + ], + "score": 1.0, + "content": "places the entire probability mass on any of the instances of the correct word in the input window. If", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 414, + 676 + ], + "score": 1.0, + "content": "the pointer component places the entirety of the probability mass on the gate", + "type": "text" + }, + { + "bbox": [ + 414, + 665, + 421, + 675 + ], + "score": 0.69, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 662, + 506, + 676 + ], + "score": 1.0, + "content": ", the pointer network", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 674, + 497, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 497, + 686 + ], + "score": 1.0, + "content": "incurs no penalty and the loss is entirely determined by the loss of the softmax-RNN component.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 117, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "2A sentinel value is inserted at the end of a search space in order to ensure a search algorithm terminates if", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 712, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 505, + 722 + ], + "score": 1.0, + "content": "no matching item is found. Our sentinel value terminates the pointer search space and distributes the rest of the", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 255, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 255, + 733 + ], + "score": 1.0, + "content": "probability mass to the RNN vocabulary.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 104, + 80, + 507, + 128 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 105, + 132, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 244, + 145 + ], + "score": 1.0, + "content": "Any probability mass assigned to", + "type": "text" + }, + { + "bbox": [ + 244, + 135, + 251, + 144 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "is given to the standard softmax vocabulary of the RNN. The", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 487, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 487, + 155 + ], + "score": 1.0, + "content": "final updated, normalized pointer probability over the vocabulary in the window then becomes:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 132, + 505, + 155 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 163, + 365, + 189 + ], + "lines": [ + { + "bbox": [ + 245, + 163, + 365, + 189 + ], + "spans": [ + { + "bbox": [ + 245, + 163, + 365, + 189 + ], + "score": 0.95, + "content": "p _ { \\mathrm { p t r } } ( y _ { i } | x _ { i } ) = \\frac { 1 } { 1 - g } a [ 1 : V ] ,", + "type": "interline_equation", + "image_path": "b60657368b68e271cad13cfea9f485c207b1c64656bcc81124ecf7ea8b6fd18e.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 245, + 163, + 365, + 189 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 107, + 198, + 504, + 210 + ], + "spans": [ + { + "bbox": [ + 107, + 198, + 182, + 209 + ], + "score": 1.0, + "content": "where we denoted", + "type": "text" + }, + { + "bbox": [ + 182, + 198, + 210, + 210 + ], + "score": 0.92, + "content": "[ 1 : V ]", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 198, + 278, + 209 + ], + "score": 1.0, + "content": "to mean the first", + "type": "text" + }, + { + "bbox": [ + 278, + 199, + 288, + 208 + ], + "score": 0.81, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 198, + 504, + 209 + ], + "score": 1.0, + "content": "elements of the vector. The final mixture model is the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 209, + 379, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 379, + 222 + ], + "score": 1.0, + "content": "same as Eq. 4 but with the updated Eq. 5 for the pointer probability.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 198, + 504, + 222 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 239 + ], + "score": 1.0, + "content": "This setup encourages the model to have both components compete: use pointers whenever possible", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "and back-off to the standard softmax otherwise. By integrating the gating function into the pointer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 249, + 504, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 504, + 261 + ], + "score": 1.0, + "content": "computation, it is influenced by both the RNN hidden state and the pointer window’s hidden states.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 226, + 506, + 261 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 277, + 370, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 277, + 370, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 370, + 290 + ], + "score": 1.0, + "content": "2.5 MOTIVATION FOR THE SENTINEL AS GATING FUNCTION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 299, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "To make the best decision possible regarding which component to use the gating function must have", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 310, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 506, + 324 + ], + "score": 1.0, + "content": "as much context as possible. As we increase the window of words for the pointer component to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "consider, the RNN hidden state by itself isn’t guaranteed to accurately recall the identity or order of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 332, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 505, + 345 + ], + "score": 1.0, + "content": "words it has recently seen (Adi et al., 2016). This is an obvious limitation of encoding a variable", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 343, + 311, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 311, + 356 + ], + "score": 1.0, + "content": "length sequence into a fixed dimensionality vector.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 300, + 506, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 294, + 372 + ], + "score": 1.0, + "content": "If we want a pointer window where the length", + "type": "text" + }, + { + "bbox": [ + 294, + 361, + 303, + 370 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 361, + 505, + 372 + ], + "score": 1.0, + "content": "is in the hundreds, accurately modeling all of this", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "information within the RNN hidden state is impractical. The position of specific words is also a vital", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 505, + 394 + ], + "score": 1.0, + "content": "feature as relevant words eventually fall out of the pointer component’s window. To correctly model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "this would require the RNN hidden state to store both the identity and position of each word in the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 403, + 491, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 403, + 491, + 419 + ], + "score": 1.0, + "content": "pointer window. This is far beyond the capability of the fixed dimensionality RNN hidden state.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 104, + 361, + 505, + 419 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "For this reason, we integrate the gating function directly into the pointer network by use of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 431, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 446 + ], + "score": 1.0, + "content": "sentinel. The decision to back-off to the softmax vocabulary is then informed by both the query", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 107, + 446, + 113, + 455 + ], + "score": 0.59, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 443, + 275, + 456 + ], + "score": 1.0, + "content": ", generated using the RNN hidden state", + "type": "text" + }, + { + "bbox": [ + 275, + 444, + 300, + 455 + ], + "score": 0.91, + "content": "h _ { N - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 443, + 506, + 456 + ], + "score": 1.0, + "content": ", and from the contents of the hidden states in the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "pointer window itself. This allows the model to accurately query what hidden states are contained in", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 500, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 500, + 478 + ], + "score": 1.0, + "content": "the pointer window and avoid maintaining state for words that may have fallen out of the window.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 422, + 506, + 478 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 494, + 289, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 290, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 290, + 507 + ], + "score": 1.0, + "content": "2.6 POINTER SENTINEL LOSS FUNCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 507, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 267, + 531 + ], + "score": 1.0, + "content": "We minimize the cross-entropy loss of", + "type": "text" + }, + { + "bbox": [ + 268, + 516, + 359, + 531 + ], + "score": 0.91, + "content": "\\begin{array} { r } { - \\sum _ { j } \\hat { y _ { i j } } \\log p \\big ( y _ { i j } | x _ { i } \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 515, + 391, + 531 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 391, + 517, + 401, + 528 + ], + "score": 0.87, + "content": "\\hat { y } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 515, + 507, + 531 + ], + "score": 1.0, + "content": "is a one hot encoding of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 261, + 542 + ], + "score": 1.0, + "content": "the correct output. During training, as", + "type": "text" + }, + { + "bbox": [ + 261, + 530, + 270, + 541 + ], + "score": 0.88, + "content": "\\hat { y } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 529, + 443, + 542 + ], + "score": 1.0, + "content": "is one hot, only a single mixed probability", + "type": "text" + }, + { + "bbox": [ + 444, + 529, + 469, + 542 + ], + "score": 0.92, + "content": "p ( y _ { i j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "must be", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "score": 1.0, + "content": "computed for calculating the loss. This can result in a far more efficient GPU implementation. At", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 287, + 564 + ], + "score": 1.0, + "content": "prediction time, when we want all values for", + "type": "text" + }, + { + "bbox": [ + 288, + 551, + 321, + 564 + ], + "score": 0.93, + "content": "p ( y _ { i } | x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 552, + 386, + 564 + ], + "score": 1.0, + "content": ", a maximum of", + "type": "text" + }, + { + "bbox": [ + 387, + 552, + 394, + 561 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "word probabilities must be", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 561, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 104, + 561, + 242, + 576 + ], + "score": 1.0, + "content": "mixed, as there is a maximum of", + "type": "text" + }, + { + "bbox": [ + 243, + 563, + 250, + 572 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 561, + 440, + 576 + ], + "score": 1.0, + "content": "unique words in the pointer window of length", + "type": "text" + }, + { + "bbox": [ + 440, + 563, + 448, + 572 + ], + "score": 0.68, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 561, + 506, + 576 + ], + "score": 1.0, + "content": ". This mixing", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 573, + 448, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 448, + 586 + ], + "score": 1.0, + "content": "can occur on the CPU where random access indexing is more efficient than the GPU.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 515, + 507, + 586 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 106, + 591, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 505, + 602 + ], + "score": 1.0, + "content": "Following the pointer sum attention network, the aim is to place probability mass from the attention", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 243, + 613 + ], + "score": 1.0, + "content": "mechanism on the correct output", + "type": "text" + }, + { + "bbox": [ + 243, + 602, + 253, + 613 + ], + "score": 0.86, + "content": "\\hat { y } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "if it exists in the input. In the case of our mixture model the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 103, + 611, + 507, + 633 + ], + "spans": [ + { + "bbox": [ + 103, + 611, + 228, + 633 + ], + "score": 1.0, + "content": "pointer loss instead becomes", + "type": "text" + }, + { + "bbox": [ + 228, + 612, + 328, + 632 + ], + "score": 0.91, + "content": "\\begin{array} { r } { - \\log \\left( g + \\sum _ { i \\in I ( y , x ) } a _ { i } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 611, + 359, + 633 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 359, + 615, + 388, + 628 + ], + "score": 0.92, + "content": "I ( y , x )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 611, + 507, + 633 + ], + "score": 1.0, + "content": "results in all positions of the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 166, + 644 + ], + "score": 1.0, + "content": "correct output", + "type": "text" + }, + { + "bbox": [ + 166, + 632, + 173, + 642 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 630, + 225, + 644 + ], + "score": 1.0, + "content": "in the input", + "type": "text" + }, + { + "bbox": [ + 225, + 633, + 232, + 640 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 630, + 277, + 644 + ], + "score": 1.0, + "content": ". The gate", + "type": "text" + }, + { + "bbox": [ + 277, + 633, + 284, + 642 + ], + "score": 0.76, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "may be assigned all probability mass if, for instance,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 640, + 180, + 654 + ], + "score": 1.0, + "content": "the correct output", + "type": "text" + }, + { + "bbox": [ + 180, + 642, + 190, + 653 + ], + "score": 0.87, + "content": "\\hat { y } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "exists only in the softmax-RNN vocabulary. There is no penalty if the model", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 652, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 506, + 664 + ], + "score": 1.0, + "content": "places the entire probability mass on any of the instances of the correct word in the input window. If", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 104, + 662, + 414, + 676 + ], + "score": 1.0, + "content": "the pointer component places the entirety of the probability mass on the gate", + "type": "text" + }, + { + "bbox": [ + 414, + 665, + 421, + 675 + ], + "score": 0.69, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 662, + 506, + 676 + ], + "score": 1.0, + "content": ", the pointer network", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 674, + 497, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 497, + 686 + ], + "score": 1.0, + "content": "incurs no penalty and the loss is entirely determined by the loss of the softmax-RNN component.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38.5, + "bbox_fs": [ + 103, + 591, + 507, + 686 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 132, + 80, + 477, + 158 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 132, + 80, + 477, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 80, + 477, + 158 + ], + "spans": [ + { + "bbox": [ + 132, + 80, + 477, + 158 + ], + "score": 0.981, + "html": "
Penn Treebank TestWikiText-2 TestWikiText-103
Train ValidTrain ValidTrain Valid
Articles---600606028,47560Test 60
Tokens929k73k 10,00082k2,088k217k245k103,227k217k245k
Vocab size OoV rate4.8%33,278 2.6%267,735 0.4%
", + "type": "table", + "image_path": "2771546fc5355020a468b7b395918ab24c46037349e76a1b1f3768a9a2b4eafb.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 132, + 80, + 477, + 106.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 132, + 106.0, + 477, + 132.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 132, + 132.0, + 477, + 158.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 166, + 505, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 164, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 179 + ], + "score": 1.0, + "content": "Table 1: Statistics of the Penn Treebank, WikiText-2, and WikiText-103. The out of vocabulary", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 107, + 177, + 133, + 189 + ], + "score": 0.37, + "content": "\\left( \\mathrm { O o V } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 178, + 384, + 189 + ], + "score": 1.0, + "content": "rate notes what percentage of tokens have been replaced by an", + "type": "text" + }, + { + "bbox": [ + 384, + 177, + 409, + 189 + ], + "score": 0.86, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 178, + 505, + 189 + ], + "score": 1.0, + "content": "token. The token count", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 188, + 387, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 387, + 200 + ], + "score": 1.0, + "content": "includes newlines which add to the structure of the WikiText datasets.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 223, + 301, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 303, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 303, + 236 + ], + "score": 1.0, + "content": "2.7 PARAMETERS AND COMPUTATION TIME", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "The pointer sentinel-LSTM mixture model results in a relatively minor increase in parameters and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "computation time, especially when compared to the model size required to achieve similar perfor-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "score": 1.0, + "content": "mance using a standard LSTM. The only two additional parameters required by the model are those", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 103, + 273, + 507, + 292 + ], + "spans": [ + { + "bbox": [ + 103, + 273, + 200, + 292 + ], + "score": 1.0, + "content": "required for computing", + "type": "text" + }, + { + "bbox": [ + 201, + 279, + 207, + 288 + ], + "score": 0.67, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 273, + 258, + 292 + ], + "score": 1.0, + "content": ", specifically", + "type": "text" + }, + { + "bbox": [ + 259, + 276, + 310, + 286 + ], + "score": 0.93, + "content": "\\dot { W } \\in \\mathbb { R } ^ { H \\times H }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 273, + 328, + 292 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 276, + 360, + 287 + ], + "score": 0.91, + "content": "\\bar { b } \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 273, + 507, + 292 + ], + "score": 1.0, + "content": ", and the sentinel vector embedding,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 284, + 507, + 302 + ], + "spans": [ + { + "bbox": [ + 107, + 287, + 139, + 298 + ], + "score": 0.91, + "content": "s \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 284, + 507, + 302 + ], + "score": 1.0, + "content": ". This is independent of the depth of the RNN as the pointer component only interacts with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 298, + 507, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 311, + 312 + ], + "score": 1.0, + "content": "the output of the final RNN layer. The additional", + "type": "text" + }, + { + "bbox": [ + 311, + 298, + 353, + 309 + ], + "score": 0.92, + "content": "H ^ { 2 } + 2 H \\bar { }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 298, + 507, + 312 + ], + "score": 1.0, + "content": "parameters are minor compared to a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 308, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 191, + 323 + ], + "score": 1.0, + "content": "single LSTM layer’s", + "type": "text" + }, + { + "bbox": [ + 191, + 309, + 237, + 320 + ], + "score": 0.92, + "content": "8 H ^ { 2 } + 4 \\dot { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 308, + 470, + 323 + ], + "score": 1.0, + "content": "parameters. Most models also use multiple LSTM layers.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 326, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 417, + 339 + ], + "score": 1.0, + "content": "In terms of additional computation, a pointer sentinel-LSTM of window size", + "type": "text" + }, + { + "bbox": [ + 417, + 327, + 425, + 336 + ], + "score": 0.76, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "only requires com-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 338, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 177, + 349 + ], + "score": 1.0, + "content": "puting the query", + "type": "text" + }, + { + "bbox": [ + 177, + 339, + 184, + 349 + ], + "score": 0.76, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 338, + 380, + 349 + ], + "score": 1.0, + "content": "(a linear layer with tanh activation), a total of", + "type": "text" + }, + { + "bbox": [ + 381, + 338, + 389, + 347 + ], + "score": 0.75, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 338, + 505, + 349 + ], + "score": 1.0, + "content": "parallelizable inner product", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 349, + 464, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 284, + 360 + ], + "score": 1.0, + "content": "calculations, and the attention scores for the", + "type": "text" + }, + { + "bbox": [ + 284, + 349, + 292, + 358 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 349, + 464, + 360 + ], + "score": 1.0, + "content": "resulting scalars via the softmax function.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 375, + 211, + 388 + ], + "lines": [ + { + "bbox": [ + 104, + 374, + 213, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 213, + 391 + ], + "score": 1.0, + "content": "3 RELATED WORK", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "Considerable research has been dedicated to the task of language modeling, from traditional machine", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 411, + 385, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 385, + 424 + ], + "score": 1.0, + "content": "learning techniques such as n-grams to deep neural sequence models.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "Mixture models composed of various knowledge sources have been proposed in the past for language", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "modeling. Rosenfeld (1996) uses a maximum entropy model to combine a variety of information", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 451, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 462 + ], + "score": 1.0, + "content": "sources to improve language modeling on news text and speech. These information sources include", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 462, + 478, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 478, + 474 + ], + "score": 1.0, + "content": "complex overlapping n-gram distributions and n-gram caches that aim to capture rare words.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "Beyond n-grams, neural sequence models such as recurrent neural networks have been shown to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "score": 1.0, + "content": "achieve state of the art results (Mikolov et al., 2010). A variety of RNN regularization methods", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "have been explored, including a number of dropout variations (Zaremba et al., 2014; Gal, 2015)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "which prevent overfitting of complex LSTM language models. Other work has modified the RNN", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 521, + 407, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 407, + 535 + ], + "score": 1.0, + "content": "architecture to better handle increased recurrence depth (Zilly et al., 2016).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "In order to increase capacity and minimize the impact of vanishing gradients, some language and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "translation models have also added a soft attention or memory component (Bahdanau et al., 2015;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "Sukhbaatar et al., 2015; Cheng et al., 2016; Kumar et al., 2016; Xiong et al., 2016; Ahn et al., 2016).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "These mechanisms allow for the retrieval and use of relevant previous hidden states. Soft attention", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "mechanisms need to first encode the relevant word into a state vector and then decode it again,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "score": 1.0, + "content": "even if the output word is identical to the input word used to compute that hidden state or memory.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 605, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 616 + ], + "score": 1.0, + "content": "A drawback to soft attention is that if, for instance, January and March are both equally attended", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "candidates, the attention mechanism may blend the two vectors, resulting in a context vector closest", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "to February (Kadlec et al., 2016). Even with attention, the standard softmax classifier being used in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 637, + 442, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 442, + 650 + ], + "score": 1.0, + "content": "these models often struggles to correctly predict rare or previously unknown words.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "Attention-based pointer mechanisms were introduced in Vinyals et al. (2015) where the pointer", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "network is able to select elements from the input as output. In the above example, only January or", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "March would be available as options, as February does not appear in the input. The use of pointer", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "networks have been shown to help with geometric problems (Vinyals et al., 2015), code generation", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "(Ling et al., 2016), summarization (Gu et al., 2016; Gulc¸ehre et al. ¨ , 2016), question answering", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(Kadlec et al., 2016). While pointer networks improve performance on rare words and long-term", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 405, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 405, + 733 + ], + "score": 1.0, + "content": "dependencies they are unable to select words that do not exist in the input.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": "table", + "bbox": [ + 132, + 80, + 477, + 158 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 132, + 80, + 477, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 80, + 477, + 158 + ], + "spans": [ + { + "bbox": [ + 132, + 80, + 477, + 158 + ], + "score": 0.981, + "html": "
Penn Treebank TestWikiText-2 TestWikiText-103
Train ValidTrain ValidTrain Valid
Articles---600606028,47560Test 60
Tokens929k73k 10,00082k2,088k217k245k103,227k217k245k
Vocab size OoV rate4.8%33,278 2.6%267,735 0.4%
", + "type": "table", + "image_path": "2771546fc5355020a468b7b395918ab24c46037349e76a1b1f3768a9a2b4eafb.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 132, + 80, + 477, + 106.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 132, + 106.0, + 477, + 132.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 132, + 132.0, + 477, + 158.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 166, + 505, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 164, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 179 + ], + "score": 1.0, + "content": "Table 1: Statistics of the Penn Treebank, WikiText-2, and WikiText-103. The out of vocabulary", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 107, + 177, + 133, + 189 + ], + "score": 0.37, + "content": "\\left( \\mathrm { O o V } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 178, + 384, + 189 + ], + "score": 1.0, + "content": "rate notes what percentage of tokens have been replaced by an", + "type": "text" + }, + { + "bbox": [ + 384, + 177, + 409, + 189 + ], + "score": 0.86, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 178, + 505, + 189 + ], + "score": 1.0, + "content": "token. The token count", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 188, + 387, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 387, + 200 + ], + "score": 1.0, + "content": "includes newlines which add to the structure of the WikiText datasets.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 223, + 301, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 303, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 303, + 236 + ], + "score": 1.0, + "content": "2.7 PARAMETERS AND COMPUTATION TIME", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "The pointer sentinel-LSTM mixture model results in a relatively minor increase in parameters and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "computation time, especially when compared to the model size required to achieve similar perfor-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "score": 1.0, + "content": "mance using a standard LSTM. The only two additional parameters required by the model are those", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 103, + 273, + 507, + 292 + ], + "spans": [ + { + "bbox": [ + 103, + 273, + 200, + 292 + ], + "score": 1.0, + "content": "required for computing", + "type": "text" + }, + { + "bbox": [ + 201, + 279, + 207, + 288 + ], + "score": 0.67, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 273, + 258, + 292 + ], + "score": 1.0, + "content": ", specifically", + "type": "text" + }, + { + "bbox": [ + 259, + 276, + 310, + 286 + ], + "score": 0.93, + "content": "\\dot { W } \\in \\mathbb { R } ^ { H \\times H }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 273, + 328, + 292 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 276, + 360, + 287 + ], + "score": 0.91, + "content": "\\bar { b } \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 273, + 507, + 292 + ], + "score": 1.0, + "content": ", and the sentinel vector embedding,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 284, + 507, + 302 + ], + "spans": [ + { + "bbox": [ + 107, + 287, + 139, + 298 + ], + "score": 0.91, + "content": "s \\in \\mathbb { R } ^ { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 284, + 507, + 302 + ], + "score": 1.0, + "content": ". This is independent of the depth of the RNN as the pointer component only interacts with", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 298, + 507, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 311, + 312 + ], + "score": 1.0, + "content": "the output of the final RNN layer. The additional", + "type": "text" + }, + { + "bbox": [ + 311, + 298, + 353, + 309 + ], + "score": 0.92, + "content": "H ^ { 2 } + 2 H \\bar { }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 298, + 507, + 312 + ], + "score": 1.0, + "content": "parameters are minor compared to a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 308, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 191, + 323 + ], + "score": 1.0, + "content": "single LSTM layer’s", + "type": "text" + }, + { + "bbox": [ + 191, + 309, + 237, + 320 + ], + "score": 0.92, + "content": "8 H ^ { 2 } + 4 \\dot { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 308, + 470, + 323 + ], + "score": 1.0, + "content": "parameters. Most models also use multiple LSTM layers.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10, + "bbox_fs": [ + 103, + 244, + 507, + 323 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 326, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 417, + 339 + ], + "score": 1.0, + "content": "In terms of additional computation, a pointer sentinel-LSTM of window size", + "type": "text" + }, + { + "bbox": [ + 417, + 327, + 425, + 336 + ], + "score": 0.76, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "only requires com-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 338, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 177, + 349 + ], + "score": 1.0, + "content": "puting the query", + "type": "text" + }, + { + "bbox": [ + 177, + 339, + 184, + 349 + ], + "score": 0.76, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 338, + 380, + 349 + ], + "score": 1.0, + "content": "(a linear layer with tanh activation), a total of", + "type": "text" + }, + { + "bbox": [ + 381, + 338, + 389, + 347 + ], + "score": 0.75, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 338, + 505, + 349 + ], + "score": 1.0, + "content": "parallelizable inner product", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 349, + 464, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 284, + 360 + ], + "score": 1.0, + "content": "calculations, and the attention scores for the", + "type": "text" + }, + { + "bbox": [ + 284, + 349, + 292, + 358 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 349, + 464, + 360 + ], + "score": 1.0, + "content": "resulting scalars via the softmax function.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 325, + 505, + 360 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 375, + 211, + 388 + ], + "lines": [ + { + "bbox": [ + 104, + 374, + 213, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 213, + 391 + ], + "score": 1.0, + "content": "3 RELATED WORK", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "Considerable research has been dedicated to the task of language modeling, from traditional machine", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 411, + 385, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 385, + 424 + ], + "score": 1.0, + "content": "learning techniques such as n-grams to deep neural sequence models.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 400, + 505, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "Mixture models composed of various knowledge sources have been proposed in the past for language", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "modeling. Rosenfeld (1996) uses a maximum entropy model to combine a variety of information", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 451, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 462 + ], + "score": 1.0, + "content": "sources to improve language modeling on news text and speech. These information sources include", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 462, + 478, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 478, + 474 + ], + "score": 1.0, + "content": "complex overlapping n-gram distributions and n-gram caches that aim to capture rare words.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 428, + 505, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "Beyond n-grams, neural sequence models such as recurrent neural networks have been shown to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "score": 1.0, + "content": "achieve state of the art results (Mikolov et al., 2010). A variety of RNN regularization methods", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "have been explored, including a number of dropout variations (Zaremba et al., 2014; Gal, 2015)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "which prevent overfitting of complex LSTM language models. Other work has modified the RNN", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 521, + 407, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 407, + 535 + ], + "score": 1.0, + "content": "architecture to better handle increased recurrence depth (Zilly et al., 2016).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 478, + 505, + 535 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "In order to increase capacity and minimize the impact of vanishing gradients, some language and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "translation models have also added a soft attention or memory component (Bahdanau et al., 2015;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "Sukhbaatar et al., 2015; Cheng et al., 2016; Kumar et al., 2016; Xiong et al., 2016; Ahn et al., 2016).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "These mechanisms allow for the retrieval and use of relevant previous hidden states. Soft attention", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "mechanisms need to first encode the relevant word into a state vector and then decode it again,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "score": 1.0, + "content": "even if the output word is identical to the input word used to compute that hidden state or memory.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 605, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 616 + ], + "score": 1.0, + "content": "A drawback to soft attention is that if, for instance, January and March are both equally attended", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "candidates, the attention mechanism may blend the two vectors, resulting in a context vector closest", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "to February (Kadlec et al., 2016). Even with attention, the standard softmax classifier being used in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 637, + 442, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 442, + 650 + ], + "score": 1.0, + "content": "these models often struggles to correctly predict rare or previously unknown words.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 539, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "Attention-based pointer mechanisms were introduced in Vinyals et al. (2015) where the pointer", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "network is able to select elements from the input as output. In the above example, only January or", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "March would be available as options, as February does not appear in the input. The use of pointer", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "networks have been shown to help with geometric problems (Vinyals et al., 2015), code generation", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "(Ling et al., 2016), summarization (Gu et al., 2016; Gulc¸ehre et al. ¨ , 2016), question answering", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(Kadlec et al., 2016). While pointer networks improve performance on rare words and long-term", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 405, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 405, + 733 + ], + "score": 1.0, + "content": "dependencies they are unable to select words that do not exist in the input.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 654, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Gulc¸ehre et al. ¨ (2016) introduce a pointer softmax model that can generate output from either the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "vocabulary softmax of an RNN or the location softmax of the pointer network. Not only does this", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "allow for producing OoV words which are not in the input, the pointer softmax model is able to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "better deal with rare and unknown words than a model only featuring an RNN softmax. Rather", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "than constructing a mixture model as in our work, they use a switching network to decide which", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "component to use. For neural machine translation, the switching network is conditioned on the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "representation of the context of the source text and the hidden state of the decoder. The pointer", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "network is not used as a source of information for the switching network as in our model. The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "pointer and RNN softmax are scaled according to the switching network and the word or location", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 506, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 193 + ], + "score": 1.0, + "content": "with the highest final attention score is selected for output. Although this approach uses both a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "pointer and RNN component, it is not a mixture model and does not combine the probabilities for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "a word if it occurs in both the pointer location softmax and the RNN vocabulary softmax. In our", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 213, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 227 + ], + "score": 1.0, + "content": "model the word probability is a mix of both the RNN and pointer components, allowing for better", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 225, + 304, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 304, + 237 + ], + "score": 1.0, + "content": "predictions when the context may be ambiguous.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 242, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "Extending this concept further, the latent predictor network (Ling et al., 2016) generates an output", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "sequence conditioned on an arbitrary number of base models where each base model may have", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "differing granularity. In their task of code generation, the output could be produced one character", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "at a time using a standard softmax or instead copy entire words from referenced text fields using a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "pointer network. As opposed to Gulc¸ehre et al. ¨ (2016), all states which produce the same output are", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "score": 1.0, + "content": "merged by summing their probabilities. The model requires a complex training process involving", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 307, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 321 + ], + "score": 1.0, + "content": "the forward-backward algorithm for Semi-Markov models to prevent an exponential path explosion.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 335, + 417, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 419, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 419, + 349 + ], + "score": 1.0, + "content": "4 WIKITEXT - A BENCHMARK FOR LANGUAGE MODELING", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 504, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "We first describe the most commonly used language modeling dataset and its pre-processing in order", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 370, + 328, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 328, + 383 + ], + "score": 1.0, + "content": "to then motivate the need for a new benchmark dataset.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 395, + 205, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 207, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 207, + 408 + ], + "score": 1.0, + "content": "4.1 PENN TREEBANK", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "In order to compare our model to the many recent neural language models, we conduct word-level", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "score": 1.0, + "content": "prediction experiments on the Penn Treebank (PTB) dataset (Marcus et al., 1993), pre-processed by", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 290, + 450 + ], + "score": 1.0, + "content": "Mikolov et al. (2010). The dataset consists of", + "type": "text" + }, + { + "bbox": [ + 290, + 438, + 312, + 448 + ], + "score": 0.31, + "content": "9 2 9 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 437, + 348, + 450 + ], + "score": 1.0, + "content": "training,", + "type": "text" + }, + { + "bbox": [ + 348, + 438, + 365, + 448 + ], + "score": 0.31, + "content": "7 3 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 437, + 428, + 450 + ], + "score": 1.0, + "content": "validation, and", + "type": "text" + }, + { + "bbox": [ + 428, + 438, + 444, + 448 + ], + "score": 0.32, + "content": "{ } ^ { 8 2 \\mathrm { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "test words. As", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 449, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 460 + ], + "score": 1.0, + "content": "part of the pre-processing performed by Mikolov et al. (2010), words were lower-cased, numbers", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 460, + 504, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 316, + 472 + ], + "score": 1.0, + "content": "were replaced with N, newlines were replaced with", + "type": "text" + }, + { + "bbox": [ + 317, + 460, + 339, + 471 + ], + "score": 0.88, + "content": "\\langle e o s \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 460, + 504, + 472 + ], + "score": 1.0, + "content": ", and all other punctuation was removed.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 433, + 483 + ], + "score": 1.0, + "content": "The vocabulary is the most frequent 10k words with OoV tokens replaced by an", + "type": "text" + }, + { + "bbox": [ + 433, + 471, + 459, + 483 + ], + "score": 0.77, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "token. For", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 482, + 228, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 228, + 493 + ], + "score": 1.0, + "content": "full statistics, refer to Table 1.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 108, + 506, + 266, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 267, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 267, + 518 + ], + "score": 1.0, + "content": "4.2 REASONS FOR A NEW DATASET", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 526, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "While the processed version of the PTB above has been frequently used for language modeling,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "it has many limitations. The tokens in PTB are all lower case, stripped of any punctuation, and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "score": 1.0, + "content": "limited to a vocabulary of only 10k words. These limitations mean that the PTB is unrealistic for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "real language use, especially when far larger vocabularies with many rare words are involved. The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 570, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 584 + ], + "score": 1.0, + "content": "appendix contains a graph illustrating this using a Zipfian plot over the training partition of the PTB,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "with the curve stopping abruptly at the 10k limit. Given that accurately predicting rare words, such", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 593, + 502, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 502, + 605 + ], + "score": 1.0, + "content": "as named entities, is an important task for many applications, the lack of a long tail is problematic.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 108, + 609, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "Other larger scale language modeling datasets exist. Unfortunately, they either have restrictive li-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "censing which prevents widespread use or have randomized sentence ordering (Chelba et al., 2013)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "which is unrealistic for most language use and prevents the effective learning and evaluation of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "longer term dependencies. Hence, we constructed a language modeling dataset using text extracted", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 653, + 362, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 362, + 667 + ], + "score": 1.0, + "content": "from Wikipedia and have made this available to the community.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + }, + { + "type": "title", + "bbox": [ + 108, + 678, + 298, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 299, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 299, + 690 + ], + "score": 1.0, + "content": "4.3 CONSTRUCTION AND PRE-PROCESSING", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "We selected articles only fitting the Good or Featured article criteria specified by editors on", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "Wikipedia. These articles have been reviewed by humans and are considered well written, factu-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "ally accurate, broad in coverage, neutral in point of view, and stable. This resulted in 23,805 Good", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "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, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Gulc¸ehre et al. ¨ (2016) introduce a pointer softmax model that can generate output from either the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "vocabulary softmax of an RNN or the location softmax of the pointer network. Not only does this", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "allow for producing OoV words which are not in the input, the pointer softmax model is able to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "better deal with rare and unknown words than a model only featuring an RNN softmax. Rather", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "than constructing a mixture model as in our work, they use a switching network to decide which", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "component to use. For neural machine translation, the switching network is conditioned on the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "representation of the context of the source text and the hidden state of the decoder. The pointer", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "network is not used as a source of information for the switching network as in our model. The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "pointer and RNN softmax are scaled according to the switching network and the word or location", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 506, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 193 + ], + "score": 1.0, + "content": "with the highest final attention score is selected for output. Although this approach uses both a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "pointer and RNN component, it is not a mixture model and does not combine the probabilities for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "a word if it occurs in both the pointer location softmax and the RNN vocabulary softmax. In our", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 213, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 227 + ], + "score": 1.0, + "content": "model the word probability is a mix of both the RNN and pointer components, allowing for better", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 225, + 304, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 304, + 237 + ], + "score": 1.0, + "content": "predictions when the context may be ambiguous.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 82, + 506, + 237 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 242, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "Extending this concept further, the latent predictor network (Ling et al., 2016) generates an output", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "sequence conditioned on an arbitrary number of base models where each base model may have", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "differing granularity. In their task of code generation, the output could be produced one character", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "at a time using a standard softmax or instead copy entire words from referenced text fields using a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "pointer network. As opposed to Gulc¸ehre et al. ¨ (2016), all states which produce the same output are", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "score": 1.0, + "content": "merged by summing their probabilities. The model requires a complex training process involving", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 307, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 321 + ], + "score": 1.0, + "content": "the forward-backward algorithm for Semi-Markov models to prevent an exponential path explosion.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 241, + 506, + 321 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 335, + 417, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 419, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 419, + 349 + ], + "score": 1.0, + "content": "4 WIKITEXT - A BENCHMARK FOR LANGUAGE MODELING", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 504, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "We first describe the most commonly used language modeling dataset and its pre-processing in order", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 370, + 328, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 328, + 383 + ], + "score": 1.0, + "content": "to then motivate the need for a new benchmark dataset.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 358, + 505, + 383 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 395, + 205, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 207, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 207, + 408 + ], + "score": 1.0, + "content": "4.1 PENN TREEBANK", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "In order to compare our model to the many recent neural language models, we conduct word-level", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "score": 1.0, + "content": "prediction experiments on the Penn Treebank (PTB) dataset (Marcus et al., 1993), pre-processed by", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 290, + 450 + ], + "score": 1.0, + "content": "Mikolov et al. (2010). The dataset consists of", + "type": "text" + }, + { + "bbox": [ + 290, + 438, + 312, + 448 + ], + "score": 0.31, + "content": "9 2 9 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 437, + 348, + 450 + ], + "score": 1.0, + "content": "training,", + "type": "text" + }, + { + "bbox": [ + 348, + 438, + 365, + 448 + ], + "score": 0.31, + "content": "7 3 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 437, + 428, + 450 + ], + "score": 1.0, + "content": "validation, and", + "type": "text" + }, + { + "bbox": [ + 428, + 438, + 444, + 448 + ], + "score": 0.32, + "content": "{ } ^ { 8 2 \\mathrm { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "test words. As", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 449, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 460 + ], + "score": 1.0, + "content": "part of the pre-processing performed by Mikolov et al. (2010), words were lower-cased, numbers", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 460, + 504, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 316, + 472 + ], + "score": 1.0, + "content": "were replaced with N, newlines were replaced with", + "type": "text" + }, + { + "bbox": [ + 317, + 460, + 339, + 471 + ], + "score": 0.88, + "content": "\\langle e o s \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 460, + 504, + 472 + ], + "score": 1.0, + "content": ", and all other punctuation was removed.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 433, + 483 + ], + "score": 1.0, + "content": "The vocabulary is the most frequent 10k words with OoV tokens replaced by an", + "type": "text" + }, + { + "bbox": [ + 433, + 471, + 459, + 483 + ], + "score": 0.77, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "token. For", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 482, + 228, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 228, + 493 + ], + "score": 1.0, + "content": "full statistics, refer to Table 1.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 415, + 505, + 493 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 506, + 266, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 506, + 267, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 267, + 518 + ], + "score": 1.0, + "content": "4.2 REASONS FOR A NEW DATASET", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 526, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "While the processed version of the PTB above has been frequently used for language modeling,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "it has many limitations. The tokens in PTB are all lower case, stripped of any punctuation, and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 560 + ], + "score": 1.0, + "content": "limited to a vocabulary of only 10k words. These limitations mean that the PTB is unrealistic for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 572 + ], + "score": 1.0, + "content": "real language use, especially when far larger vocabularies with many rare words are involved. The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 570, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 584 + ], + "score": 1.0, + "content": "appendix contains a graph illustrating this using a Zipfian plot over the training partition of the PTB,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "with the curve stopping abruptly at the 10k limit. Given that accurately predicting rare words, such", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 593, + 502, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 502, + 605 + ], + "score": 1.0, + "content": "as named entities, is an important task for many applications, the lack of a long tail is problematic.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 526, + 505, + 605 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 609, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "Other larger scale language modeling datasets exist. Unfortunately, they either have restrictive li-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 633 + ], + "score": 1.0, + "content": "censing which prevents widespread use or have randomized sentence ordering (Chelba et al., 2013)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "which is unrealistic for most language use and prevents the effective learning and evaluation of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "longer term dependencies. Hence, we constructed a language modeling dataset using text extracted", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 653, + 362, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 362, + 667 + ], + "score": 1.0, + "content": "from Wikipedia and have made this available to the community.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 609, + 505, + 667 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 678, + 298, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 299, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 299, + 690 + ], + "score": 1.0, + "content": "4.3 CONSTRUCTION AND PRE-PROCESSING", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "We selected articles only fitting the Good or Featured article criteria specified by editors on", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "Wikipedia. These articles have been reviewed by humans and are considered well written, factu-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "ally accurate, broad in coverage, neutral in point of view, and stable. This resulted in 23,805 Good", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "articles and 4,790 Featured articles. The text for each article was extracted using the Wikipedia API.", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Extracting text from Wikipedia mark-up is nontrivial due to the large number of macros in use, used", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 411, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 411, + 117 + ], + "score": 1.0, + "content": "for metric conversions, abbreviations, language notation, and date handling.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 47, + "bbox_fs": [ + 106, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "articles and 4,790 Featured articles. The text for each article was extracted using the Wikipedia API.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Extracting text from Wikipedia mark-up is nontrivial due to the large number of macros in use, used", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 411, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 411, + 117 + ], + "score": 1.0, + "content": "for metric conversions, abbreviations, language notation, and date handling.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 133 + ], + "score": 1.0, + "content": "Once extracted, specific sections which primarily featured lists were removed by default. Other", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 144 + ], + "score": 1.0, + "content": "minor bugs, such as sort keys and Edit buttons that leaked in from the HTML, were also removed.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 220, + 155 + ], + "score": 1.0, + "content": "Mathematical formulae and", + "type": "text" + }, + { + "bbox": [ + 220, + 144, + 244, + 155 + ], + "score": 0.7, + "content": "\\mathrm { { I A T } _ { E } X }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 143, + 347, + 155 + ], + "score": 1.0, + "content": "code were replaced with", + "type": "text" + }, + { + "bbox": [ + 347, + 144, + 393, + 155 + ], + "score": 0.3, + "content": "\\langle f o r m u l a \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 143, + 505, + 155 + ], + "score": 1.0, + "content": "tokens. Normalization and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "tokenization were performed using the Moses tokenizer (Koehn et al., 2007), slightly augmented", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 208, + 178 + ], + "score": 1.0, + "content": "to further split numbers", + "type": "text" + }, + { + "bbox": [ + 208, + 165, + 300, + 176 + ], + "score": 0.7, + "content": "( 8 , 6 0 0 8 \\ \\textcircled { \\omega } , @ \\ 6 0 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "and with some additional minor fixes. Following", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "score": 1.0, + "content": "Chelba et al. (2013) a vocabulary was constructed by discarding all words with a count below 3.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 186, + 489, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 319, + 200 + ], + "score": 1.0, + "content": "Words outside of the vocabulary were mapped to the", + "type": "text" + }, + { + "bbox": [ + 319, + 187, + 345, + 199 + ], + "score": 0.84, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 186, + 489, + 200 + ], + "score": 1.0, + "content": "token, also a part of the vocabulary.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 107, + 213, + 180, + 224 + ], + "lines": [ + { + "bbox": [ + 105, + 211, + 182, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 182, + 225 + ], + "score": 1.0, + "content": "4.4 STATISTICS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 506, + 245 + ], + "score": 1.0, + "content": "The full WikiText dataset is over 103 million words in size, a hundred times larger than the PTB. It", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "is also a tenth the size of the One Billion Word Benchmark (Chelba et al., 2013), one of the largest", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "score": 1.0, + "content": "publicly available language modeling benchmarks, whilst consisting of articles that allow for the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 267, + 473, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 473, + 279 + ], + "score": 1.0, + "content": "capture and usage of longer term dependencies as might be found in many real world tasks.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 504, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "The dataset is available in two different sizes: WikiText-2 and WikiText-103. Both feature punctua-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 295, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 306 + ], + "score": 1.0, + "content": "tion, original casing, a larger vocabulary, and numbers. WikiText-2 is two times the size of the Penn", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 305, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 317 + ], + "score": 1.0, + "content": "Treebank dataset. WikiText-103 features all extracted articles. Both datasets use the same articles", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 488, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 488, + 329 + ], + "score": 1.0, + "content": "for validation and testing, only differing in the vocabularies. For full statistics, refer to Table 1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 344, + 200, + 357 + ], + "lines": [ + { + "bbox": [ + 104, + 343, + 202, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 343, + 202, + 360 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 370, + 215, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 217, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 217, + 383 + ], + "score": 1.0, + "content": "5.1 TRAINING DETAILS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 430, + 403 + ], + "score": 1.0, + "content": "As the pointer sentinel mixture model uses the outputs of the RNN from up to", + "type": "text" + }, + { + "bbox": [ + 430, + 391, + 439, + 401 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "timesteps back,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "this presents a challenge for training. If we do not regenerate the stale historical outputs of the RNN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "when we update the gradients, backpropagation through these stale outputs may result in incorrect", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "gradient updates. If we do regenerate all stale outputs of the RNN, the training process is far slower.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "As we can make no theoretical guarantees on the impact of stale outputs on gradient updates, we opt", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "to regenerate the window of RNN outputs used by the pointer component after each gradient update.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "We also use truncated backpropagation through time (BPTT) in a different manner to many other", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "RNN language models. Truncated BPTT allows for practical time-efficient training of RNN models", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "but has fundamental trade-offs that are rarely discussed. For running truncated BPTT, BPTT is run", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 121, + 508 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 122, + 496, + 132, + 506 + ], + "score": 0.87, + "content": "k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 495, + 223, + 508 + ], + "score": 1.0, + "content": "timesteps once every", + "type": "text" + }, + { + "bbox": [ + 224, + 496, + 235, + 506 + ], + "score": 0.87, + "content": "k _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "timesteps. For many RNN language modeling training schemes,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 140, + 518 + ], + "score": 0.92, + "content": "k _ { 1 } = k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 506, + 222, + 519 + ], + "score": 1.0, + "content": ", meaning that every", + "type": "text" + }, + { + "bbox": [ + 222, + 507, + 229, + 516 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 506, + 417, + 519 + ], + "score": 1.0, + "content": "timesteps truncated BPTT is performed for the", + "type": "text" + }, + { + "bbox": [ + 418, + 507, + 425, + 516 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "previous timesteps.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 395, + 530 + ], + "score": 1.0, + "content": "This results in only a single RNN output receiving backpropagation for", + "type": "text" + }, + { + "bbox": [ + 396, + 518, + 402, + 527 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 516, + 506, + 530 + ], + "score": 1.0, + "content": "timesteps, with the other", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "extreme being that the first token receives backpropagation for 0 timesteps. As such, most words in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 539, + 418, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 367, + 553 + ], + "score": 1.0, + "content": "the training data will never experience a full backpropagation for", + "type": "text" + }, + { + "bbox": [ + 368, + 540, + 375, + 549 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 539, + 418, + 553 + ], + "score": 1.0, + "content": "timesteps.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 504, + 600 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 306, + 569 + ], + "score": 1.0, + "content": "In our task, the pointer component always looks", + "type": "text" + }, + { + "bbox": [ + 307, + 557, + 315, + 566 + ], + "score": 0.75, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 556, + 420, + 569 + ], + "score": 1.0, + "content": "timesteps into the past if", + "type": "text" + }, + { + "bbox": [ + 420, + 557, + 428, + 566 + ], + "score": 0.76, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "past timesteps are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 567, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 187, + 580 + ], + "score": 1.0, + "content": "available. We select", + "type": "text" + }, + { + "bbox": [ + 188, + 567, + 217, + 578 + ], + "score": 0.92, + "content": "k _ { 1 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 567, + 234, + 580 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 235, + 567, + 266, + 578 + ], + "score": 0.92, + "content": "k _ { 2 } = L", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 567, + 506, + 580 + ], + "score": 1.0, + "content": "such that for each timestep we perform backpropagation for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 107, + 579, + 115, + 588 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "timesteps and advance one timestep at a time. Only the loss for the final predicted word is used", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 589, + 274, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 274, + 601 + ], + "score": 1.0, + "content": "for backpropagation through the window.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 108, + 614, + 204, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 205, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 205, + 627 + ], + "score": 1.0, + "content": "5.2 MODEL DETAILS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 647 + ], + "score": 1.0, + "content": "Our experimental setup reflects that of Zaremba et al. (2014) and Gal (2015). We increased the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 647, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 493, + 658 + ], + "score": 1.0, + "content": "number of timesteps used during training from 35 to 100, matching the length of the window", + "type": "text" + }, + { + "bbox": [ + 493, + 647, + 501, + 657 + ], + "score": 0.73, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 647, + 505, + 658 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "score": 1.0, + "content": "Batch size was increased to 32 from 20. We also halve the learning rate when validation perplexity", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "is worse than the previous iteration, stopping training when validation perplexity fails to improve for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "score": 1.0, + "content": "three epochs or when 64 epochs are reached. The gradients are rescaled if their global norm exceeds", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "1 (Pascanu et al., 2013b).3 We evaluate the medium model configuration which features a two layer", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 505, + 725 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 505, + 725 + ], + "score": 1.0, + "content": "3The highly aggressive clipping is likely due to the increased BPTT length. Even with such clipping early", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 720, + 392, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 392, + 733 + ], + "score": 1.0, + "content": "batches may experience excessively high perplexity, though this settles rapidly.", + "type": "text" + } + ] + } + ] + }, + { + "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, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 117 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 133 + ], + "score": 1.0, + "content": "Once extracted, specific sections which primarily featured lists were removed by default. Other", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 144 + ], + "score": 1.0, + "content": "minor bugs, such as sort keys and Edit buttons that leaked in from the HTML, were also removed.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 220, + 155 + ], + "score": 1.0, + "content": "Mathematical formulae and", + "type": "text" + }, + { + "bbox": [ + 220, + 144, + 244, + 155 + ], + "score": 0.7, + "content": "\\mathrm { { I A T } _ { E } X }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 143, + 347, + 155 + ], + "score": 1.0, + "content": "code were replaced with", + "type": "text" + }, + { + "bbox": [ + 347, + 144, + 393, + 155 + ], + "score": 0.3, + "content": "\\langle f o r m u l a \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 143, + 505, + 155 + ], + "score": 1.0, + "content": "tokens. Normalization and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "tokenization were performed using the Moses tokenizer (Koehn et al., 2007), slightly augmented", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 208, + 178 + ], + "score": 1.0, + "content": "to further split numbers", + "type": "text" + }, + { + "bbox": [ + 208, + 165, + 300, + 176 + ], + "score": 0.7, + "content": "( 8 , 6 0 0 8 \\ \\textcircled { \\omega } , @ \\ 6 0 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "and with some additional minor fixes. Following", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 188 + ], + "score": 1.0, + "content": "Chelba et al. (2013) a vocabulary was constructed by discarding all words with a count below 3.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 186, + 489, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 319, + 200 + ], + "score": 1.0, + "content": "Words outside of the vocabulary were mapped to the", + "type": "text" + }, + { + "bbox": [ + 319, + 187, + 345, + 199 + ], + "score": 0.84, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 186, + 489, + 200 + ], + "score": 1.0, + "content": "token, also a part of the vocabulary.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 121, + 506, + 200 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 213, + 180, + 224 + ], + "lines": [ + { + "bbox": [ + 105, + 211, + 182, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 182, + 225 + ], + "score": 1.0, + "content": "4.4 STATISTICS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 506, + 245 + ], + "score": 1.0, + "content": "The full WikiText dataset is over 103 million words in size, a hundred times larger than the PTB. It", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "is also a tenth the size of the One Billion Word Benchmark (Chelba et al., 2013), one of the largest", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "score": 1.0, + "content": "publicly available language modeling benchmarks, whilst consisting of articles that allow for the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 267, + 473, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 473, + 279 + ], + "score": 1.0, + "content": "capture and usage of longer term dependencies as might be found in many real world tasks.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 234, + 506, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 504, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "The dataset is available in two different sizes: WikiText-2 and WikiText-103. Both feature punctua-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 295, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 505, + 306 + ], + "score": 1.0, + "content": "tion, original casing, a larger vocabulary, and numbers. WikiText-2 is two times the size of the Penn", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 305, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 317 + ], + "score": 1.0, + "content": "Treebank dataset. WikiText-103 features all extracted articles. Both datasets use the same articles", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 316, + 488, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 488, + 329 + ], + "score": 1.0, + "content": "for validation and testing, only differing in the vocabularies. For full statistics, refer to Table 1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 282, + 506, + 329 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 344, + 200, + 357 + ], + "lines": [ + { + "bbox": [ + 104, + 343, + 202, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 343, + 202, + 360 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 370, + 215, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 217, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 217, + 383 + ], + "score": 1.0, + "content": "5.1 TRAINING DETAILS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 390, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 430, + 403 + ], + "score": 1.0, + "content": "As the pointer sentinel mixture model uses the outputs of the RNN from up to", + "type": "text" + }, + { + "bbox": [ + 430, + 391, + 439, + 401 + ], + "score": 0.77, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "timesteps back,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "this presents a challenge for training. If we do not regenerate the stale historical outputs of the RNN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "when we update the gradients, backpropagation through these stale outputs may result in incorrect", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "gradient updates. If we do regenerate all stale outputs of the RNN, the training process is far slower.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "As we can make no theoretical guarantees on the impact of stale outputs on gradient updates, we opt", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "to regenerate the window of RNN outputs used by the pointer component after each gradient update.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 390, + 505, + 459 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "We also use truncated backpropagation through time (BPTT) in a different manner to many other", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "RNN language models. Truncated BPTT allows for practical time-efficient training of RNN models", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "but has fundamental trade-offs that are rarely discussed. For running truncated BPTT, BPTT is run", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 121, + 508 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 122, + 496, + 132, + 506 + ], + "score": 0.87, + "content": "k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 495, + 223, + 508 + ], + "score": 1.0, + "content": "timesteps once every", + "type": "text" + }, + { + "bbox": [ + 224, + 496, + 235, + 506 + ], + "score": 0.87, + "content": "k _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 495, + 505, + 508 + ], + "score": 1.0, + "content": "timesteps. For many RNN language modeling training schemes,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 140, + 518 + ], + "score": 0.92, + "content": "k _ { 1 } = k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 506, + 222, + 519 + ], + "score": 1.0, + "content": ", meaning that every", + "type": "text" + }, + { + "bbox": [ + 222, + 507, + 229, + 516 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 506, + 417, + 519 + ], + "score": 1.0, + "content": "timesteps truncated BPTT is performed for the", + "type": "text" + }, + { + "bbox": [ + 418, + 507, + 425, + 516 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "previous timesteps.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 395, + 530 + ], + "score": 1.0, + "content": "This results in only a single RNN output receiving backpropagation for", + "type": "text" + }, + { + "bbox": [ + 396, + 518, + 402, + 527 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 516, + 506, + 530 + ], + "score": 1.0, + "content": "timesteps, with the other", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "extreme being that the first token receives backpropagation for 0 timesteps. As such, most words in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 539, + 418, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 367, + 553 + ], + "score": 1.0, + "content": "the training data will never experience a full backpropagation for", + "type": "text" + }, + { + "bbox": [ + 368, + 540, + 375, + 549 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 539, + 418, + 553 + ], + "score": 1.0, + "content": "timesteps.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 462, + 506, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 556, + 504, + 600 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 306, + 569 + ], + "score": 1.0, + "content": "In our task, the pointer component always looks", + "type": "text" + }, + { + "bbox": [ + 307, + 557, + 315, + 566 + ], + "score": 0.75, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 556, + 420, + 569 + ], + "score": 1.0, + "content": "timesteps into the past if", + "type": "text" + }, + { + "bbox": [ + 420, + 557, + 428, + 566 + ], + "score": 0.76, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "past timesteps are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 567, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 187, + 580 + ], + "score": 1.0, + "content": "available. We select", + "type": "text" + }, + { + "bbox": [ + 188, + 567, + 217, + 578 + ], + "score": 0.92, + "content": "k _ { 1 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 567, + 234, + 580 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 235, + 567, + 266, + 578 + ], + "score": 0.92, + "content": "k _ { 2 } = L", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 567, + 506, + 580 + ], + "score": 1.0, + "content": "such that for each timestep we perform backpropagation for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 107, + 579, + 115, + 588 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "timesteps and advance one timestep at a time. Only the loss for the final predicted word is used", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 589, + 274, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 274, + 601 + ], + "score": 1.0, + "content": "for backpropagation through the window.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 556, + 506, + 601 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 614, + 204, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 205, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 205, + 627 + ], + "score": 1.0, + "content": "5.2 MODEL DETAILS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 647 + ], + "score": 1.0, + "content": "Our experimental setup reflects that of Zaremba et al. (2014) and Gal (2015). We increased the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 647, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 493, + 658 + ], + "score": 1.0, + "content": "number of timesteps used during training from 35 to 100, matching the length of the window", + "type": "text" + }, + { + "bbox": [ + 493, + 647, + 501, + 657 + ], + "score": 0.73, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 647, + 505, + 658 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "score": 1.0, + "content": "Batch size was increased to 32 from 20. We also halve the learning rate when validation perplexity", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "is worse than the previous iteration, stopping training when validation perplexity fails to improve for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "score": 1.0, + "content": "three epochs or when 64 epochs are reached. The gradients are rescaled if their global norm exceeds", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 703 + ], + "score": 1.0, + "content": "1 (Pascanu et al., 2013b).3 We evaluate the medium model configuration which features a two layer", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 636, + 505, + 703 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 117, + 81, + 492, + 283 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 117, + 81, + 492, + 283 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 81, + 492, + 283 + ], + "spans": [ + { + "bbox": [ + 117, + 81, + 492, + 283 + ], + "score": 0.982, + "html": "
ModelParametersValidationTest
Mikolov & Zweig (2012) - KN-52M141.2
Mikolov & Zweig (2012) - KN5 + cache2M125.7
Mikolov&Zweig g(2012) -RNN6M124.7
Mikolov&Zweig g(2012)-RNN-LDA7M113.7
Mikolov & Zweig ( g(2012) - RNN-LDA + KN-5 +cache9M92.0
Pascanu et al. (2013a) - Deep RNN6M107.5
Cheng et al. (2014) - Sum-Prod Net5Mt100.0
Zaremba et al. (2014) - LSTM (medium) Zaremba et al. (2014) - LSTM (large)20M86.282.7
Gal (2015) - Variational LSTM (medium, untied)66M82.278.4
Gal (2015) - Variational LSTM (medium,untied, MC)20M 20M81.9 ± 0.279.7 ± 0.1
Gal (2015) - Variational LSTM (large,untied)66M78.6 ±0.1
Gal (2015) - Variational LSTM (large,untied, MC)77.9 ± 0.375.2 ± 0.2
Kim etal. (2016) - CharCNN66M 19M173.4± 0.0
Zilly et al. (2016) - Variational RHN32M78.9
72.871.3
Zoneout + Variational LSTM (medium)20M84.480.6
Pointer Sentinel-LSTM (medium)21M72.470.9
", + "type": "table", + "image_path": "bb3d98ce30f7ae806c74c7ce5a6ac5f840f0ca0c2ae8bbfe76910b06718261a4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 81, + 492, + 148.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 148.33333333333331, + 492, + 215.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 215.66666666666663, + 492, + 282.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 291, + 505, + 336 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "Table 2: Single model perplexity on validation and test sets for the Penn Treebank language model-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "ing task. For our models and the models of Zaremba et al. (2014) and Gal (2015), medium and large", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 443, + 325 + ], + "score": 1.0, + "content": "refer to a 650 and 1500 unit two layer LSTM respectively. Parameter numbers with", + "type": "text" + }, + { + "bbox": [ + 443, + 314, + 450, + 325 + ], + "score": 0.73, + "content": "^ \\ddag", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "are estimates", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 324, + 443, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 443, + 337 + ], + "score": 1.0, + "content": "based upon our understanding of the model and with reference to Kim et al. (2016).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 104, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 104, + 360, + 506, + 375 + ], + "score": 1.0, + "content": "LSTM of hidden size 650. We compare against the large model configuration which features a two", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 372, + 241, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 241, + 384 + ], + "score": 1.0, + "content": "layer LSTM of hidden size 1500.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "score": 1.0, + "content": "We produce results for two model types, an LSTM model that uses dropout regularization and the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "pointer sentinel-LSTM model. The variants of dropout used were zoneout (Krueger et al., 2016)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "and variational inference based dropout (Gal, 2015). Zoneout, which stochastically forces some", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 423, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 433 + ], + "score": 1.0, + "content": "recurrent units to maintain their previous values, was used for the recurrent connections within the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "LSTM. Variational inference based dropout, where the dropout mask for a layer is locked across", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "timesteps, was used on the input to each RNN layer and also on the output of the final RNN layer.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 454, + 320, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 320, + 468 + ], + "score": 1.0, + "content": "We used a value of 0.5 for both dropout connections.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 485, + 291, + 496 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 293, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 293, + 498 + ], + "score": 1.0, + "content": "5.3 COMPARISON OVER PENN TREEBANK", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "Table 2 compares the pointer sentinel-LSTM to a variety of other models on the Penn Treebank", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "dataset. The pointer sentinel-LSTM achieves the lowest perplexity, followed by the recent Recurrent", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 530, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 542 + ], + "score": 1.0, + "content": "Highway Networks (Zilly et al., 2016). The medium pointer sentinel-LSTM model also achieves", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "lower perplexity than the large LSTM models. Note that the best performing large variational LSTM", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "model uses computationally intensive Monte Carlo (MC) dropout averaging. Monte Carlo dropout", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "averaging is a general improvement for any sequence model that uses dropout but comes at a greatly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "increased test time cost. In Gal (2015) it requires rerunning the test model with 1000 different", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 585, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 504, + 597 + ], + "score": 1.0, + "content": "dropout masks. The pointer sentinel-LSTM is able to achieve these results with far fewer parameters", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "than other models with comparable performance, specifically with less than a third the parameters", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 607, + 282, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 282, + 619 + ], + "score": 1.0, + "content": "used in the large variational LSTM models.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 108, + 624, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 624, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 635 + ], + "score": 1.0, + "content": "We also test a variational LSTM that uses zoneout, which serves as the RNN component of our", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "pointer sentinel-LSTM mixture. This variational LSTM model performs BPTT for the same length", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 107, + 646, + 115, + 655 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 646, + 266, + 658 + ], + "score": 1.0, + "content": "as the pointer sentinel-LSTM, where", + "type": "text" + }, + { + "bbox": [ + 266, + 646, + 304, + 656 + ], + "score": 0.89, + "content": "L = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "timesteps. The results for this model ablation are", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 656, + 470, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 470, + 670 + ], + "score": 1.0, + "content": "worse than that of Gal (2015)’s variational LSTM without Monte Carlo dropout averaging.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 108, + 686, + 271, + 698 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 273, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 273, + 699 + ], + "score": 1.0, + "content": "5.4 COMPARISON OVER WIKITEXT-2", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "As WikiText-2 is being introduced in this dataset, there are no existing baselines. We provide two", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "baselines to compare the pointer sentinel-LSTM against: our variational LSTM using zoneout and", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 117, + 81, + 492, + 283 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 117, + 81, + 492, + 283 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 81, + 492, + 283 + ], + "spans": [ + { + "bbox": [ + 117, + 81, + 492, + 283 + ], + "score": 0.982, + "html": "
ModelParametersValidationTest
Mikolov & Zweig (2012) - KN-52M141.2
Mikolov & Zweig (2012) - KN5 + cache2M125.7
Mikolov&Zweig g(2012) -RNN6M124.7
Mikolov&Zweig g(2012)-RNN-LDA7M113.7
Mikolov & Zweig ( g(2012) - RNN-LDA + KN-5 +cache9M92.0
Pascanu et al. (2013a) - Deep RNN6M107.5
Cheng et al. (2014) - Sum-Prod Net5Mt100.0
Zaremba et al. (2014) - LSTM (medium) Zaremba et al. (2014) - LSTM (large)20M86.282.7
Gal (2015) - Variational LSTM (medium, untied)66M82.278.4
Gal (2015) - Variational LSTM (medium,untied, MC)20M 20M81.9 ± 0.279.7 ± 0.1
Gal (2015) - Variational LSTM (large,untied)66M78.6 ±0.1
Gal (2015) - Variational LSTM (large,untied, MC)77.9 ± 0.375.2 ± 0.2
Kim etal. (2016) - CharCNN66M 19M173.4± 0.0
Zilly et al. (2016) - Variational RHN32M78.9
72.871.3
Zoneout + Variational LSTM (medium)20M84.480.6
Pointer Sentinel-LSTM (medium)21M72.470.9
", + "type": "table", + "image_path": "bb3d98ce30f7ae806c74c7ce5a6ac5f840f0ca0c2ae8bbfe76910b06718261a4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 81, + 492, + 148.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 148.33333333333331, + 492, + 215.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 215.66666666666663, + 492, + 282.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 291, + 505, + 336 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "Table 2: Single model perplexity on validation and test sets for the Penn Treebank language model-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "ing task. For our models and the models of Zaremba et al. (2014) and Gal (2015), medium and large", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 443, + 325 + ], + "score": 1.0, + "content": "refer to a 650 and 1500 unit two layer LSTM respectively. Parameter numbers with", + "type": "text" + }, + { + "bbox": [ + 443, + 314, + 450, + 325 + ], + "score": 0.73, + "content": "^ \\ddag", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "are estimates", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 324, + 443, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 443, + 337 + ], + "score": 1.0, + "content": "based upon our understanding of the model and with reference to Kim et al. (2016).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 104, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 104, + 360, + 506, + 375 + ], + "score": 1.0, + "content": "LSTM of hidden size 650. We compare against the large model configuration which features a two", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 372, + 241, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 241, + 384 + ], + "score": 1.0, + "content": "layer LSTM of hidden size 1500.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 360, + 506, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "score": 1.0, + "content": "We produce results for two model types, an LSTM model that uses dropout regularization and the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "pointer sentinel-LSTM model. The variants of dropout used were zoneout (Krueger et al., 2016)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 424 + ], + "score": 1.0, + "content": "and variational inference based dropout (Gal, 2015). Zoneout, which stochastically forces some", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 423, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 433 + ], + "score": 1.0, + "content": "recurrent units to maintain their previous values, was used for the recurrent connections within the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "LSTM. Variational inference based dropout, where the dropout mask for a layer is locked across", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "timesteps, was used on the input to each RNN layer and also on the output of the final RNN layer.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 454, + 320, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 320, + 468 + ], + "score": 1.0, + "content": "We used a value of 0.5 for both dropout connections.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 388, + 505, + 468 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 485, + 291, + 496 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 293, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 293, + 498 + ], + "score": 1.0, + "content": "5.3 COMPARISON OVER PENN TREEBANK", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 520 + ], + "score": 1.0, + "content": "Table 2 compares the pointer sentinel-LSTM to a variety of other models on the Penn Treebank", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "dataset. The pointer sentinel-LSTM achieves the lowest perplexity, followed by the recent Recurrent", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 530, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 542 + ], + "score": 1.0, + "content": "Highway Networks (Zilly et al., 2016). The medium pointer sentinel-LSTM model also achieves", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "lower perplexity than the large LSTM models. Note that the best performing large variational LSTM", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "model uses computationally intensive Monte Carlo (MC) dropout averaging. Monte Carlo dropout", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "averaging is a general improvement for any sequence model that uses dropout but comes at a greatly", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "increased test time cost. In Gal (2015) it requires rerunning the test model with 1000 different", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 585, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 504, + 597 + ], + "score": 1.0, + "content": "dropout masks. The pointer sentinel-LSTM is able to achieve these results with far fewer parameters", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "than other models with comparable performance, specifically with less than a third the parameters", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 607, + 282, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 282, + 619 + ], + "score": 1.0, + "content": "used in the large variational LSTM models.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 508, + 505, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 624, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 624, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 635 + ], + "score": 1.0, + "content": "We also test a variational LSTM that uses zoneout, which serves as the RNN component of our", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "pointer sentinel-LSTM mixture. This variational LSTM model performs BPTT for the same length", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 107, + 646, + 115, + 655 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 646, + 266, + 658 + ], + "score": 1.0, + "content": "as the pointer sentinel-LSTM, where", + "type": "text" + }, + { + "bbox": [ + 266, + 646, + 304, + 656 + ], + "score": 0.89, + "content": "L = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "timesteps. The results for this model ablation are", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 656, + 470, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 470, + 670 + ], + "score": 1.0, + "content": "worse than that of Gal (2015)’s variational LSTM without Monte Carlo dropout averaging.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 624, + 505, + 670 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 686, + 271, + 698 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 273, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 273, + 699 + ], + "score": 1.0, + "content": "5.4 COMPARISON OVER WIKITEXT-2", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "As WikiText-2 is being introduced in this dataset, there are no existing baselines. We provide two", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "baselines to compare the pointer sentinel-LSTM against: our variational LSTM using zoneout and", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 135, + 80, + 474, + 138 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 135, + 80, + 474, + 138 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 80, + 474, + 138 + ], + "spans": [ + { + "bbox": [ + 135, + 80, + 474, + 138 + ], + "score": 0.98, + "html": "
ModelParametersValidationTest
Variational LSTM implementation from Gal (2015)20M101.796.3
Zoneout + Variational LSTM20M108.7100.9
Pointer Sentinel-LSTM21M84.880.8
", + "type": "table", + "image_path": "e118bfa88fa9949d7520597d73dce917db8fa9e729b242dd65df300d0c46b6ab.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 135, + 80, + 474, + 99.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 135, + 99.33333333333333, + 474, + 118.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 135, + 118.66666666666666, + 474, + 138.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 146, + 503, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 144, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 505, + 160 + ], + "score": 1.0, + "content": "Table 3: Single model perplexity on validation and test sets for the WikiText-2 language modeling", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 157, + 414, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 414, + 169 + ], + "score": 1.0, + "content": "task. All compared models use a two layer LSTM with a hidden size of 650.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 190 + ], + "score": 1.0, + "content": "the medium variational LSTM used in Gal (2015).4 Attempts to run the Gal (2015) large model", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "variant, a two layer LSTM with hidden size 1500, resulted in out of memory errors on a 12GB K80", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "GPU, likely due to the increased vocabulary size. We chose the best hyperparameters from PTB", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "experiments for all models. Table 3 shows a similar gain made by the pointer sentinel-LSTM over", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "the variational LSTM models. The variational LSTM from Gal (2015) again beats out the variational", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 231, + 277, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 277, + 244 + ], + "score": 1.0, + "content": "LSTM used as a base for our experiments.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 107, + 261, + 178, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 181, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 181, + 276 + ], + "score": 1.0, + "content": "6 ANALYSIS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 286, + 242, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 243, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 243, + 299 + ], + "score": 1.0, + "content": "6.1 IMPACT ON RARE WORDS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 108, + 308, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "A hypothesis as to why the pointer sentinel-LSTM can outperform an LSTM is that the pointer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "component allows the model to effectively reproduce rare words. The RNN may better use hidden", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "state capacity by relying on the pointer component. The pointer component may also allow for a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 342, + 428, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 428, + 354 + ], + "score": 1.0, + "content": "sharper selection of a single word than may be possible using only the softmax.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 358, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "The appendix contains a graph which shows the improvement of perplexity when comparing the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "score": 1.0, + "content": "LSTM to the pointer sentinel-LSTM. Words are split across buckets according to frequency. As the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "words become rarer, the pointer sentinel-LSTM has stronger improvements in perplexity. Even on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "the Penn Treebank, where there is a relative absence of rare words due to only selecting the most", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "frequent 10k words, we can see the pointer sentinel-LSTM mixture model provides a direct benefit.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 108, + 419, + 504, + 463 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 431 + ], + "score": 1.0, + "content": "While the improvements are largest on rare words, we can see the pointer sentinel-LSTM is still", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "helpful on relatively frequent words. This may be the pointer component directly selecting the word", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "or through the pointer supervision signal improving the RNN by allowing gradients to flow directly", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 452, + 302, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 302, + 464 + ], + "score": 1.0, + "content": "to other occurrences of the word in that window.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 110, + 479, + 322, + 490 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 325, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 325, + 492 + ], + "score": 1.0, + "content": "6.2 QUALITATIVE ANALYSIS OF POINTER USAGE", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 108, + 500, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "In a qualitative analysis, we visualized the gate use and pointer attention for a variety of examples", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 510, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 504, + 523 + ], + "score": 1.0, + "content": "in the validation set, focusing on predictions where the gate primarily used the pointer component.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 521, + 309, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 309, + 534 + ], + "score": 1.0, + "content": "These visualizations are available in the appendix.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "As expected, the pointer component is heavily used for rare names such as Seidman (23 times in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "training), Iverson (7 times in training), and Rosenthal (3 times in training). The pointer component", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "was also heavily used when it came to other named entity names such as companies like Honeywell", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "(8 times in training) and Integrated (41 times in training, though due to lowercasing of words this", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "includes integrated circuits, fully integrated, and other generic usage). Surprisingly, the pointer", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "component was also used for many frequent tokens. For selecting units of measurement (tons,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "kilograms, . . . ) or the short scale of numbers (thousands, millions, billions, . . . ), the pointer would", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "score": 1.0, + "content": "refer to recent usage. This is to be expected, especially when phrases are of the form increased from", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "N tons to N tons. The model can even be found relying on a mixture of the softmax and the pointer", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 639, + 276, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 276, + 650 + ], + "score": 1.0, + "content": "for predicting frequent verbs such as said.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 709 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Finally, the pointer component can be seen pointing to words at the very end of the 100 word", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "window (position 97), a far longer horizon than the 35 steps that most language models truncate", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "their backpropagation training to. This illustrates why the gating function must be integrated into", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "the pointer component. If the gating function could only use the RNN hidden state, it would need", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "to be wary of words that were near the tail of the pointer, especially if it was not able to accurately", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 721, + 276, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 277, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 277, + 734 + ], + "score": 1.0, + "content": "4https://github.com/yaringal/BayesianRNN", + "type": "text" + } + ] + } + ] + }, + { + "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, + 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": [ + 135, + 80, + 474, + 138 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 135, + 80, + 474, + 138 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 80, + 474, + 138 + ], + "spans": [ + { + "bbox": [ + 135, + 80, + 474, + 138 + ], + "score": 0.98, + "html": "
ModelParametersValidationTest
Variational LSTM implementation from Gal (2015)20M101.796.3
Zoneout + Variational LSTM20M108.7100.9
Pointer Sentinel-LSTM21M84.880.8
", + "type": "table", + "image_path": "e118bfa88fa9949d7520597d73dce917db8fa9e729b242dd65df300d0c46b6ab.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 135, + 80, + 474, + 99.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 135, + 99.33333333333333, + 474, + 118.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 135, + 118.66666666666666, + 474, + 138.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 146, + 503, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 144, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 505, + 160 + ], + "score": 1.0, + "content": "Table 3: Single model perplexity on validation and test sets for the WikiText-2 language modeling", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 157, + 414, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 414, + 169 + ], + "score": 1.0, + "content": "task. All compared models use a two layer LSTM with a hidden size of 650.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 144, + 505, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 190 + ], + "score": 1.0, + "content": "the medium variational LSTM used in Gal (2015).4 Attempts to run the Gal (2015) large model", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "variant, a two layer LSTM with hidden size 1500, resulted in out of memory errors on a 12GB K80", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "GPU, likely due to the increased vocabulary size. We chose the best hyperparameters from PTB", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "experiments for all models. Table 3 shows a similar gain made by the pointer sentinel-LSTM over", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "the variational LSTM models. The variational LSTM from Gal (2015) again beats out the variational", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 231, + 277, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 277, + 244 + ], + "score": 1.0, + "content": "LSTM used as a base for our experiments.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 175, + 505, + 244 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 261, + 178, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 181, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 181, + 276 + ], + "score": 1.0, + "content": "6 ANALYSIS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 286, + 242, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 243, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 243, + 299 + ], + "score": 1.0, + "content": "6.1 IMPACT ON RARE WORDS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 108, + 308, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "A hypothesis as to why the pointer sentinel-LSTM can outperform an LSTM is that the pointer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "component allows the model to effectively reproduce rare words. The RNN may better use hidden", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "state capacity by relying on the pointer component. The pointer component may also allow for a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 342, + 428, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 428, + 354 + ], + "score": 1.0, + "content": "sharper selection of a single word than may be possible using only the softmax.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 308, + 505, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 358, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "The appendix contains a graph which shows the improvement of perplexity when comparing the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "score": 1.0, + "content": "LSTM to the pointer sentinel-LSTM. Words are split across buckets according to frequency. As the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "words become rarer, the pointer sentinel-LSTM has stronger improvements in perplexity. Even on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "the Penn Treebank, where there is a relative absence of rare words due to only selecting the most", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "frequent 10k words, we can see the pointer sentinel-LSTM mixture model provides a direct benefit.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 358, + 505, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 419, + 504, + 463 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 431 + ], + "score": 1.0, + "content": "While the improvements are largest on rare words, we can see the pointer sentinel-LSTM is still", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "helpful on relatively frequent words. This may be the pointer component directly selecting the word", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "or through the pointer supervision signal improving the RNN by allowing gradients to flow directly", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 452, + 302, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 302, + 464 + ], + "score": 1.0, + "content": "to other occurrences of the word in that window.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 419, + 506, + 464 + ] + }, + { + "type": "title", + "bbox": [ + 110, + 479, + 322, + 490 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 325, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 325, + 492 + ], + "score": 1.0, + "content": "6.2 QUALITATIVE ANALYSIS OF POINTER USAGE", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 108, + 500, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "In a qualitative analysis, we visualized the gate use and pointer attention for a variety of examples", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 510, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 504, + 523 + ], + "score": 1.0, + "content": "in the validation set, focusing on predictions where the gate primarily used the pointer component.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 521, + 309, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 309, + 534 + ], + "score": 1.0, + "content": "These visualizations are available in the appendix.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 499, + 505, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "As expected, the pointer component is heavily used for rare names such as Seidman (23 times in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "training), Iverson (7 times in training), and Rosenthal (3 times in training). The pointer component", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "was also heavily used when it came to other named entity names such as companies like Honeywell", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "(8 times in training) and Integrated (41 times in training, though due to lowercasing of words this", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "includes integrated circuits, fully integrated, and other generic usage). Surprisingly, the pointer", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "component was also used for many frequent tokens. For selecting units of measurement (tons,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "kilograms, . . . ) or the short scale of numbers (thousands, millions, billions, . . . ), the pointer would", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "score": 1.0, + "content": "refer to recent usage. This is to be expected, especially when phrases are of the form increased from", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "N tons to N tons. The model can even be found relying on a mixture of the softmax and the pointer", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 639, + 276, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 276, + 650 + ], + "score": 1.0, + "content": "for predicting frequent verbs such as said.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 540, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 709 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Finally, the pointer component can be seen pointing to words at the very end of the 100 word", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "window (position 97), a far longer horizon than the 35 steps that most language models truncate", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "their backpropagation training to. This illustrates why the gating function must be integrated into", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "the pointer component. If the gating function could only use the RNN hidden state, it would need", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "to be wary of words that were near the tail of the pointer, especially if it was not able to accurately", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "track exactly how long it was since seeing a word. By integrating the gating function into the pointer", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 471, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 471, + 107 + ], + "score": 1.0, + "content": "component, we avoid the RNN hidden state having to maintain this intensive bookkeeping.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 654, + 506, + 711 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "track exactly how long it was since seeing a word. By integrating the gating function into the pointer", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 471, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 471, + 107 + ], + "score": 1.0, + "content": "component, we avoid the RNN hidden state having to maintain this intensive bookkeeping.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 121, + 195, + 135 + ], + "lines": [ + { + "bbox": [ + 104, + 119, + 198, + 138 + ], + "spans": [ + { + "bbox": [ + 104, + 119, + 198, + 138 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 147, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 107, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 107, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "We introduced the pointer sentinel mixture model and the WikiText language modeling dataset. The", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "pointer sentinel mixture model can be applied to any classifier that ends in a softmax, including", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 168, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 506, + 182 + ], + "score": 1.0, + "content": "various recurrent neural network building blocks. When applied to a standard LSTM, the pointer", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "sentinel-LSTM achieves state of the art results in language modeling over the Penn Treebank while", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 190, + 498, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 498, + 204 + ], + "score": 1.0, + "content": "using few additional parameters and little additional computational complexity at prediction time.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 108, + 208, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "score": 1.0, + "content": "We have also motivated the need to move from Penn Treebank to a new language modeling dataset", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "score": 1.0, + "content": "for long range dependencies, providing WikiText-2 and WikiText-103 as potential options. We hope", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "these new datasets can serve as a platform to improve handling of rare words and the usage of long", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 240, + 275, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 275, + 254 + ], + "score": 1.0, + "content": "term dependencies in language modeling.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 270, + 175, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 176, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 176, + 284 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 105, + 284, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 303 + ], + "score": 1.0, + "content": "Yossi Adi, Einat Kermany, Yonatan Belinkov, Ofer Lavi, and Yoav Goldberg. Fine-grained Analysis", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 299, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 114, + 299, + 506, + 315 + ], + "score": 1.0, + "content": "of Sentence Embeddings Using Auxiliary Prediction Tasks. arXiv preprint arXiv:1608.04207,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 311, + 142, + 324 + ], + "spans": [ + { + "bbox": [ + 115, + 311, + 142, + 324 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 330, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 104, + 330, + 505, + 347 + ], + "score": 1.0, + "content": "Sungjin Ahn, Heeyoul Choi, Tanel Parnamaa, and Yoshua Bengio. A Neural Knowledge Language ¨", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 114, + 342, + 271, + 356 + ], + "spans": [ + { + "bbox": [ + 114, + 342, + 271, + 356 + ], + "score": 1.0, + "content": "Model. CoRR, abs/1608.00318, 2016.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 361, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 505, + 378 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural Machine Translation by Jointly", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 114, + 374, + 312, + 388 + ], + "spans": [ + { + "bbox": [ + 114, + 374, + 312, + 388 + ], + "score": 1.0, + "content": "Learning to Align and Translate. In ICLR, 2015.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 393, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 409 + ], + "score": 1.0, + "content": "Ciprian Chelba, Tomas Mikolov, Mike Schuster, Qi Ge, Thorsten Brants, Phillipp Koehn, and Tony", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 114, + 404, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 114, + 404, + 505, + 420 + ], + "score": 1.0, + "content": "Robinson. One Billion Word Benchmark for Measuring Progress in Statistical Language Model-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 416, + 293, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 416, + 293, + 430 + ], + "score": 1.0, + "content": "ing. arXiv preprint arXiv:1312.3005, 2013.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 435, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 104, + 435, + 505, + 452 + ], + "score": 1.0, + "content": "Jianpeng Cheng, Li Dong, and Mirella Lapata. Long Short-Term Memory-Networks for Machine", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 448, + 279, + 462 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 279, + 462 + ], + "score": 1.0, + "content": "Reading. CoRR, abs/1601.06733, 2016.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "Wei-Chen Cheng, Stanley Kok, Hoai Vu Pham, Hai Leong Chieu, and Kian Ming Adam Chai.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 480, + 425, + 493 + ], + "spans": [ + { + "bbox": [ + 114, + 480, + 425, + 493 + ], + "score": 1.0, + "content": "Language Modeling with Sum-Product Networks. In INTERSPEECH, 2014.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "Yarin Gal. A Theoretically Grounded Application of Dropout in Recurrent Neural Networks. arXiv", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 510, + 255, + 524 + ], + "spans": [ + { + "bbox": [ + 114, + 510, + 255, + 524 + ], + "score": 1.0, + "content": "preprint arXiv:1512.05287, 2015.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 530, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 104, + 530, + 506, + 545 + ], + "score": 1.0, + "content": "Jiatao Gu, Zhengdong Lu, Hang Li, and Victor O. K. Li. Incorporating Copying Mechanism in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 542, + 374, + 556 + ], + "spans": [ + { + "bbox": [ + 114, + 542, + 374, + 556 + ], + "score": 1.0, + "content": "Sequence-to-Sequence Learning. CoRR, abs/1603.06393, 2016.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 562, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 104, + 562, + 505, + 577 + ], + "score": 1.0, + "content": "C¸ aglar Gulc¸ehre, Sungjin Ahn, Ramesh Nallapati, Bowen Zhou, and Yoshua Bengio. Pointing the ¨", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 573, + 352, + 587 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 352, + 587 + ], + "score": 1.0, + "content": "Unknown Words. arXiv preprint arXiv:1603.08148, 2016.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 593, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 609 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long Short-Term Memory. ¨ Neural Computation, 9(8):", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 604, + 284, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 604, + 284, + 619 + ], + "score": 1.0, + "content": "1735–1780, Nov 1997. ISSN 0899-7667.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 624, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 505, + 640 + ], + "score": 1.0, + "content": "Rudolf Kadlec, Martin Schmid, Ondrej Bajgar, and Jan Kleindienst. Text Understanding with the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 636, + 411, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 411, + 650 + ], + "score": 1.0, + "content": "Attention Sum Reader Network. arXiv preprint arXiv:1603.01547, 2016.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 655, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 672 + ], + "score": 1.0, + "content": "Yoon Kim, Yacine Jernite, David Sontag, and Alexander M. Rush. Character-aware neural language", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 667, + 274, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 667, + 274, + 681 + ], + "score": 1.0, + "content": "models. CoRR, abs/1508.06615, 2016.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "Philipp Koehn, Hieu Hoang, Alexandra Birch, Chris Callison-Burch, Marcello Federico, Nicola", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 698, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 714 + ], + "score": 1.0, + "content": "Bertoldi, Brooke Cowan, Wade Shen, Christine Moran, Richard Zens, Chris Dyer, Ondej Bojar,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "Alexandra Constantin, and Evan Herbst. Moses: Open Source Toolkit for Statistical Machine", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 720, + 227, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 227, + 734 + ], + "score": 1.0, + "content": "Translation. In ACL, 2007.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 27.5 + } + ], + "page_idx": 9, + "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": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 83, + 505, + 107 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 121, + 195, + 135 + ], + "lines": [ + { + "bbox": [ + 104, + 119, + 198, + 138 + ], + "spans": [ + { + "bbox": [ + 104, + 119, + 198, + 138 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 147, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 107, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 107, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "We introduced the pointer sentinel mixture model and the WikiText language modeling dataset. The", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "pointer sentinel mixture model can be applied to any classifier that ends in a softmax, including", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 168, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 506, + 182 + ], + "score": 1.0, + "content": "various recurrent neural network building blocks. When applied to a standard LSTM, the pointer", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "sentinel-LSTM achieves state of the art results in language modeling over the Penn Treebank while", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 190, + 498, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 498, + 204 + ], + "score": 1.0, + "content": "using few additional parameters and little additional computational complexity at prediction time.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 147, + 506, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 208, + 505, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 220 + ], + "score": 1.0, + "content": "We have also motivated the need to move from Penn Treebank to a new language modeling dataset", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 505, + 232 + ], + "score": 1.0, + "content": "for long range dependencies, providing WikiText-2 and WikiText-103 as potential options. We hope", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "these new datasets can serve as a platform to improve handling of rare words and the usage of long", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 240, + 275, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 275, + 254 + ], + "score": 1.0, + "content": "term dependencies in language modeling.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 208, + 505, + 254 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 270, + 175, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 176, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 176, + 284 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "list", + "bbox": [ + 105, + 284, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 303 + ], + "score": 1.0, + "content": "Yossi Adi, Einat Kermany, Yonatan Belinkov, Ofer Lavi, and Yoav Goldberg. Fine-grained Analysis", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 299, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 114, + 299, + 506, + 315 + ], + "score": 1.0, + "content": "of Sentence Embeddings Using Auxiliary Prediction Tasks. arXiv preprint arXiv:1608.04207,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 311, + 142, + 324 + ], + "spans": [ + { + "bbox": [ + 115, + 311, + 142, + 324 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 330, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 104, + 330, + 505, + 347 + ], + "score": 1.0, + "content": "Sungjin Ahn, Heeyoul Choi, Tanel Parnamaa, and Yoshua Bengio. A Neural Knowledge Language ¨", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 342, + 271, + 356 + ], + "spans": [ + { + "bbox": [ + 114, + 342, + 271, + 356 + ], + "score": 1.0, + "content": "Model. CoRR, abs/1608.00318, 2016.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 361, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 505, + 378 + ], + "score": 1.0, + "content": "Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural Machine Translation by Jointly", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 374, + 312, + 388 + ], + "spans": [ + { + "bbox": [ + 114, + 374, + 312, + 388 + ], + "score": 1.0, + "content": "Learning to Align and Translate. In ICLR, 2015.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 393, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 409 + ], + "score": 1.0, + "content": "Ciprian Chelba, Tomas Mikolov, Mike Schuster, Qi Ge, Thorsten Brants, Phillipp Koehn, and Tony", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 404, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 114, + 404, + 505, + 420 + ], + "score": 1.0, + "content": "Robinson. One Billion Word Benchmark for Measuring Progress in Statistical Language Model-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 416, + 293, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 416, + 293, + 430 + ], + "score": 1.0, + "content": "ing. arXiv preprint arXiv:1312.3005, 2013.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 435, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 104, + 435, + 505, + 452 + ], + "score": 1.0, + "content": "Jianpeng Cheng, Li Dong, and Mirella Lapata. Long Short-Term Memory-Networks for Machine", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 448, + 279, + 462 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 279, + 462 + ], + "score": 1.0, + "content": "Reading. CoRR, abs/1601.06733, 2016.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 482 + ], + "score": 1.0, + "content": "Wei-Chen Cheng, Stanley Kok, Hoai Vu Pham, Hai Leong Chieu, and Kian Ming Adam Chai.", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 480, + 425, + 493 + ], + "spans": [ + { + "bbox": [ + 114, + 480, + 425, + 493 + ], + "score": 1.0, + "content": "Language Modeling with Sum-Product Networks. In INTERSPEECH, 2014.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "Yarin Gal. A Theoretically Grounded Application of Dropout in Recurrent Neural Networks. arXiv", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 510, + 255, + 524 + ], + "spans": [ + { + "bbox": [ + 114, + 510, + 255, + 524 + ], + "score": 1.0, + "content": "preprint arXiv:1512.05287, 2015.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 530, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 104, + 530, + 506, + 545 + ], + "score": 1.0, + "content": "Jiatao Gu, Zhengdong Lu, Hang Li, and Victor O. K. Li. Incorporating Copying Mechanism in", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 542, + 374, + 556 + ], + "spans": [ + { + "bbox": [ + 114, + 542, + 374, + 556 + ], + "score": 1.0, + "content": "Sequence-to-Sequence Learning. CoRR, abs/1603.06393, 2016.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 562, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 104, + 562, + 505, + 577 + ], + "score": 1.0, + "content": "C¸ aglar Gulc¸ehre, Sungjin Ahn, Ramesh Nallapati, Bowen Zhou, and Yoshua Bengio. Pointing the ¨", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 573, + 352, + 587 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 352, + 587 + ], + "score": 1.0, + "content": "Unknown Words. arXiv preprint arXiv:1603.08148, 2016.", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 593, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 609 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long Short-Term Memory. ¨ Neural Computation, 9(8):", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 604, + 284, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 604, + 284, + 619 + ], + "score": 1.0, + "content": "1735–1780, Nov 1997. ISSN 0899-7667.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 624, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 505, + 640 + ], + "score": 1.0, + "content": "Rudolf Kadlec, Martin Schmid, Ondrej Bajgar, and Jan Kleindienst. Text Understanding with the", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 636, + 411, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 411, + 650 + ], + "score": 1.0, + "content": "Attention Sum Reader Network. arXiv preprint arXiv:1603.01547, 2016.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 655, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 672 + ], + "score": 1.0, + "content": "Yoon Kim, Yacine Jernite, David Sontag, and Alexander M. Rush. Character-aware neural language", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 667, + 274, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 667, + 274, + 681 + ], + "score": 1.0, + "content": "models. CoRR, abs/1508.06615, 2016.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "Philipp Koehn, Hieu Hoang, Alexandra Birch, Chris Callison-Burch, Marcello Federico, Nicola", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 698, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 714 + ], + "score": 1.0, + "content": "Bertoldi, Brooke Cowan, Wade Shen, Christine Moran, Richard Zens, Chris Dyer, Ondej Bojar,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "Alexandra Constantin, and Evan Herbst. Moses: Open Source Toolkit for Statistical Machine", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 720, + 227, + 734 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 227, + 734 + ], + "score": 1.0, + "content": "Translation. In ACL, 2007.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 288, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 104, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "David Krueger, Tegan Maharaj, Janos Kram ´ ar, Mohammad Pezeshki, Nicolas Ballas, Nan Rosemary ´", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Ke, Anirudh Goyal, Yoshua Bengio, Hugo Larochelle, Aaron Courville, et al. Zoneout: Regu-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "larizing RNNs by Randomly Preserving Hidden Activations. arXiv preprint arXiv:1606.01305,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 142, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 142, + 127 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 108, + 134, + 505, + 168 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "Ankit Kumar, Ozan Irsoy, Peter Ondruska, Mohit Iyyer, James Bradbury, Ishaan Gulrajani, Victor", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "Zhong, Romain Paulus, and Richard Socher. Ask me anything: Dynamic memory networks for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 156, + 298, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 156, + 298, + 169 + ], + "score": 1.0, + "content": "natural language processing. In ICML, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 175, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 188 + ], + "score": 1.0, + "content": "Wang Ling, Edward Grefenstette, Karl Moritz Hermann, Tomas Kocisk ´ y, Andrew Senior, ´", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "Fumin Wang, and Phil Blunsom. Latent Predictor Networks for Code Generation. CoRR,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 197, + 209, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 197, + 209, + 208 + ], + "score": 1.0, + "content": "abs/1603.06744, 2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 504, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Mitchell P. Marcus, Beatrice Santorini, and Mary Ann Marcinkiewicz. Building a Large Annotated", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 227, + 467, + 240 + ], + "spans": [ + { + "bbox": [ + 117, + 227, + 467, + 240 + ], + "score": 1.0, + "content": "Corpus of English: The Penn Treebank. Computational Linguistics, 19:313–330, 1993.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 503, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 245, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 504, + 259 + ], + "score": 1.0, + "content": "Tomas Mikolov and Geoffrey Zweig. Context dependent recurrent neural network language model.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 256, + 173, + 268 + ], + "spans": [ + { + "bbox": [ + 116, + 256, + 173, + 268 + ], + "score": 1.0, + "content": "In SLT, 2012.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 503, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 274, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 505, + 289 + ], + "score": 1.0, + "content": "Tomas Mikolov, Martin Karafiat, Luk ´ as Burget, Jan Cernock ´ y, and Sanjeev Khudanpur. Recurrent ´", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 286, + 379, + 298 + ], + "spans": [ + { + "bbox": [ + 115, + 286, + 379, + 298 + ], + "score": 1.0, + "content": "neural network based language model. In INTERSPEECH, 2010.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 320 + ], + "score": 1.0, + "content": "Razvan Pascanu, C¸ aglar Gulc¸ehre, Kyunghyun Cho, and Yoshua Bengio. How to Construct Deep ¨", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 117, + 317, + 353, + 328 + ], + "spans": [ + { + "bbox": [ + 117, + 317, + 353, + 328 + ], + "score": 1.0, + "content": "Recurrent Neural Networks. CoRR, abs/1312.6026, 2013a.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 503, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 347, + 228, + 357 + ], + "spans": [ + { + "bbox": [ + 116, + 347, + 228, + 357 + ], + "score": 1.0, + "content": "networks. In ICML, 2013b.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 503, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 504, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 504, + 379 + ], + "score": 1.0, + "content": "Roni Rosenfeld. A Maximum Entropy Approach to Adaptive Statistical Language Modeling. 1996.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 384, + 504, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Arthur Szlam, Jason Weston, and Rob Fergus. End-To-End Memory Net-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 395, + 208, + 406 + ], + "spans": [ + { + "bbox": [ + 116, + 395, + 208, + 406 + ], + "score": 1.0, + "content": "works. In NIPS, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 504, + 437 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 427 + ], + "score": 1.0, + "content": "Oriol Vinyals, Meire Fortunato, and Navdeep Jaitly. Pointer networks. In Advances in Neural", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 424, + 339, + 437 + ], + "spans": [ + { + "bbox": [ + 115, + 424, + 339, + 437 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 2692–2700, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 504, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "Caiming Xiong, Stephen Merity, and Richard Socher. Dynamic Memory Networks for Visual and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 455, + 302, + 468 + ], + "spans": [ + { + "bbox": [ + 117, + 455, + 302, + 468 + ], + "score": 1.0, + "content": "Textual Question Answering. In ICML, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 503, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 487 + ], + "score": 1.0, + "content": "Wojciech Zaremba, Ilya Sutskever, and Oriol Vinyals. Recurrent neural network regularization.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 485, + 274, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 274, + 497 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1409.2329, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "Julian Georg Zilly, Rupesh Kumar Srivastava, Jan Koutn´ık, and Jurgen Schmidhuber. Recurrent ¨", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 515, + 362, + 528 + ], + "spans": [ + { + "bbox": [ + 116, + 515, + 362, + 528 + ], + "score": 1.0, + "content": "Highway Networks. arXiv preprint arXiv:1607.03474, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + } + ], + "page_idx": 10, + "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, + 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": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 104, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "David Krueger, Tegan Maharaj, Janos Kram ´ ar, Mohammad Pezeshki, Nicolas Ballas, Nan Rosemary ´", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Ke, Anirudh Goyal, Yoshua Bengio, Hugo Larochelle, Aaron Courville, et al. Zoneout: Regu-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "larizing RNNs by Randomly Preserving Hidden Activations. arXiv preprint arXiv:1606.01305,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 142, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 142, + 127 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 104, + 81, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 134, + 505, + 168 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "Ankit Kumar, Ozan Irsoy, Peter Ondruska, Mohit Iyyer, James Bradbury, Ishaan Gulrajani, Victor", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "Zhong, Romain Paulus, and Richard Socher. Ask me anything: Dynamic memory networks for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 156, + 298, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 156, + 298, + 169 + ], + "score": 1.0, + "content": "natural language processing. In ICML, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 133, + 505, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 175, + 505, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 188 + ], + "score": 1.0, + "content": "Wang Ling, Edward Grefenstette, Karl Moritz Hermann, Tomas Kocisk ´ y, Andrew Senior, ´", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "Fumin Wang, and Phil Blunsom. Latent Predictor Networks for Code Generation. CoRR,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 197, + 209, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 197, + 209, + 208 + ], + "score": 1.0, + "content": "abs/1603.06744, 2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 173, + 505, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 504, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Mitchell P. Marcus, Beatrice Santorini, and Mary Ann Marcinkiewicz. Building a Large Annotated", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 227, + 467, + 240 + ], + "spans": [ + { + "bbox": [ + 117, + 227, + 467, + 240 + ], + "score": 1.0, + "content": "Corpus of English: The Penn Treebank. Computational Linguistics, 19:313–330, 1993.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 216, + 505, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 503, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 245, + 504, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 504, + 259 + ], + "score": 1.0, + "content": "Tomas Mikolov and Geoffrey Zweig. Context dependent recurrent neural network language model.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 256, + 173, + 268 + ], + "spans": [ + { + "bbox": [ + 116, + 256, + 173, + 268 + ], + "score": 1.0, + "content": "In SLT, 2012.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 245, + 504, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 503, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 274, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 505, + 289 + ], + "score": 1.0, + "content": "Tomas Mikolov, Martin Karafiat, Luk ´ as Burget, Jan Cernock ´ y, and Sanjeev Khudanpur. Recurrent ´", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 286, + 379, + 298 + ], + "spans": [ + { + "bbox": [ + 115, + 286, + 379, + 298 + ], + "score": 1.0, + "content": "neural network based language model. In INTERSPEECH, 2010.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 274, + 505, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 320 + ], + "score": 1.0, + "content": "Razvan Pascanu, C¸ aglar Gulc¸ehre, Kyunghyun Cho, and Yoshua Bengio. How to Construct Deep ¨", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 117, + 317, + 353, + 328 + ], + "spans": [ + { + "bbox": [ + 117, + 317, + 353, + 328 + ], + "score": 1.0, + "content": "Recurrent Neural Networks. CoRR, abs/1312.6026, 2013a.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 303, + 505, + 328 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 503, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "Razvan Pascanu, Tomas Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 347, + 228, + 357 + ], + "spans": [ + { + "bbox": [ + 116, + 347, + 228, + 357 + ], + "score": 1.0, + "content": "networks. In ICML, 2013b.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 335, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 503, + 378 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 504, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 504, + 379 + ], + "score": 1.0, + "content": "Roni Rosenfeld. A Maximum Entropy Approach to Adaptive Statistical Language Modeling. 1996.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 365, + 504, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 384, + 504, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 397 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar, Arthur Szlam, Jason Weston, and Rob Fergus. End-To-End Memory Net-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 395, + 208, + 406 + ], + "spans": [ + { + "bbox": [ + 116, + 395, + 208, + 406 + ], + "score": 1.0, + "content": "works. In NIPS, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 383, + 505, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 504, + 437 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 427 + ], + "score": 1.0, + "content": "Oriol Vinyals, Meire Fortunato, and Navdeep Jaitly. Pointer networks. In Advances in Neural", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 424, + 339, + 437 + ], + "spans": [ + { + "bbox": [ + 115, + 424, + 339, + 437 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 2692–2700, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 414, + 505, + 437 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 504, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 457 + ], + "score": 1.0, + "content": "Caiming Xiong, Stephen Merity, and Richard Socher. Dynamic Memory Networks for Visual and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 455, + 302, + 468 + ], + "spans": [ + { + "bbox": [ + 117, + 455, + 302, + 468 + ], + "score": 1.0, + "content": "Textual Question Answering. In ICML, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 443, + 506, + 468 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 503, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 487 + ], + "score": 1.0, + "content": "Wojciech Zaremba, Ilya Sutskever, and Oriol Vinyals. Recurrent neural network regularization.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 485, + 274, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 274, + 497 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1409.2329, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 473, + 505, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "Julian Georg Zilly, Rupesh Kumar Srivastava, Jan Koutn´ık, and Jurgen Schmidhuber. Recurrent ¨", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 515, + 362, + 528 + ], + "spans": [ + { + "bbox": [ + 116, + 515, + 362, + 528 + ], + "score": 1.0, + "content": "Highway Networks. arXiv preprint arXiv:1607.03474, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 504, + 505, + 528 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 161, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 123, + 152, + 466, + 422 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 123, + 152, + 466, + 422 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 152, + 466, + 422 + ], + "spans": [ + { + "bbox": [ + 123, + 152, + 466, + 422 + ], + "score": 0.97, + "type": "image", + "image_path": "c45d689e3a9e29ba2e76713a83dcf9f4d4092e2ed8fea40c92d7c483e5b46e8e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 123, + 152, + 466, + 242.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 242.0, + 466, + 332.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 123, + 332.0, + 466, + 422.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 436, + 504, + 460 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "Figure A1: Mean difference in log perplexity on PTB when using the pointer sentinel-LSTM", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 447, + 502, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 502, + 461 + ], + "score": 1.0, + "content": "compared to the LSTM model. Words were sorted by frequency and split into equal sized buckets.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + } + ], + "index": 3.25 + } + ], + "page_idx": 11, + "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": "12", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 107, + 411, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 108, + 412, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 412, + 118 + ], + "score": 1.0, + "content": "PERPLEXITY IMPROVEMENTS FOR POINTER SENTINEL MIXTURE MODEL", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 161, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 163, + 96 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 123, + 152, + 466, + 422 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 123, + 152, + 466, + 422 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 152, + 466, + 422 + ], + "spans": [ + { + "bbox": [ + 123, + 152, + 466, + 422 + ], + "score": 0.97, + "type": "image", + "image_path": "c45d689e3a9e29ba2e76713a83dcf9f4d4092e2ed8fea40c92d7c483e5b46e8e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 123, + 152, + 466, + 242.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 242.0, + 466, + 332.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 123, + 332.0, + 466, + 422.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 436, + 504, + 460 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "Figure A1: Mean difference in log perplexity on PTB when using the pointer sentinel-LSTM", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 447, + 502, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 502, + 461 + ], + "score": 1.0, + "content": "compared to the LSTM model. Words were sorted by frequency and split into equal sized buckets.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + } + ], + "index": 3.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 288, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 289, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 289, + 95 + ], + "score": 1.0, + "content": "POINTER USAGE ON THE PENN TREEBANK", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 106, + 103, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 505, + 116 + ], + "score": 1.0, + "content": "For a qualitative analysis, we visualize how the pointer component is used within the pointer sentinel", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "mixture model. The gate refers to the result of the gating function, with 1 indicating the RNN", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "component is exclusively used whilst 0 indicates the pointer component is exclusively used. We", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 136, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 505, + 148 + ], + "score": 1.0, + "content": "begin with predictions that are using the RNN component primarily and move to ones that use the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 147, + 224, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 224, + 159 + ], + "score": 1.0, + "content": "pointer component primarily.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "image", + "bbox": [ + 112, + 172, + 501, + 217 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 172, + 501, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 172, + 501, + 217 + ], + "spans": [ + { + "bbox": [ + 112, + 172, + 501, + 217 + ], + "score": 0.879, + "type": "image", + "image_path": "bfe1101a2fb87f4dcc5d4a29f6b3f7d8300c9eaa08d693f87d33a6263f3313bb.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 112, + 172, + 501, + 187.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 112, + 187.0, + 501, + 202.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 112, + 202.0, + 501, + 217.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 239, + 505, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "Figure A2: In predicting the fall season has been a good one especially for those retailers, the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 252, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 262 + ], + "score": 1.0, + "content": "pointer component suggests many words from the historical window that would fit - retailers, in-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 262, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 273 + ], + "score": 1.0, + "content": "vestments, chains, and institutions. The gate is still primarily weighted towards the RNN component", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 272, + 145, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 145, + 285 + ], + "score": 1.0, + "content": "however.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + } + ], + "index": 8.75 + }, + { + "type": "image", + "bbox": [ + 113, + 302, + 500, + 345 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 302, + 500, + 345 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 113, + 302, + 500, + 345 + ], + "spans": [ + { + "bbox": [ + 113, + 302, + 500, + 345 + ], + "score": 0.838, + "type": "image", + "image_path": "74f8b37f282e29b8fa0aba935aeef9ab0765afe5633d21f65b8558f8effb4fca.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 113, + 302, + 500, + 316.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 113, + 316.3333333333333, + 500, + 330.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 113, + 330.66666666666663, + 500, + 344.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 369, + 505, + 403 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "Figure A3: In predicting the national cancer institute also projected that overall u.s. mortality, the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "pointer component is focused on mortality and rates, both of which would fit. The gate is still", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 392, + 306, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 306, + 403 + ], + "score": 1.0, + "content": "primarily weighted towards the RNN component.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "image", + "bbox": [ + 112, + 423, + 500, + 461 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 423, + 500, + 461 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 112, + 423, + 500, + 461 + ], + "spans": [ + { + "bbox": [ + 112, + 423, + 500, + 461 + ], + "score": 0.902, + "type": "image", + "image_path": "29f2ee31d97f97d485e728471fd2cd3eb34ab3a8f310dc8086e09059401473fd.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 112, + 423, + 500, + 435.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 112, + 435.6666666666667, + 500, + 448.33333333333337 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 112, + 448.33333333333337, + 500, + 461.00000000000006 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 487, + 504, + 521 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Figure A4: In predicting people do n’t seem to be unhappy with it he said, the pointer component", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "correctly selects said and is almost equally weighted with the RNN component. This is surprising", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 510, + 381, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 381, + 522 + ], + "score": 1.0, + "content": "given how frequent the word said is used within the Penn Treebank.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "page_idx": 12, + "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": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 288, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 289, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 289, + 95 + ], + "score": 1.0, + "content": "POINTER USAGE ON THE PENN TREEBANK", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 106, + 103, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 505, + 116 + ], + "score": 1.0, + "content": "For a qualitative analysis, we visualize how the pointer component is used within the pointer sentinel", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "mixture model. The gate refers to the result of the gating function, with 1 indicating the RNN", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "component is exclusively used whilst 0 indicates the pointer component is exclusively used. We", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 136, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 505, + 148 + ], + "score": 1.0, + "content": "begin with predictions that are using the RNN component primarily and move to ones that use the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 147, + 224, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 224, + 159 + ], + "score": 1.0, + "content": "pointer component primarily.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 103, + 505, + 159 + ] + }, + { + "type": "image", + "bbox": [ + 112, + 172, + 501, + 217 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 172, + 501, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 172, + 501, + 217 + ], + "spans": [ + { + "bbox": [ + 112, + 172, + 501, + 217 + ], + "score": 0.879, + "type": "image", + "image_path": "bfe1101a2fb87f4dcc5d4a29f6b3f7d8300c9eaa08d693f87d33a6263f3313bb.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 112, + 172, + 501, + 187.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 112, + 187.0, + 501, + 202.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 112, + 202.0, + 501, + 217.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 239, + 505, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "Figure A2: In predicting the fall season has been a good one especially for those retailers, the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 252, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 262 + ], + "score": 1.0, + "content": "pointer component suggests many words from the historical window that would fit - retailers, in-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 262, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 505, + 273 + ], + "score": 1.0, + "content": "vestments, chains, and institutions. The gate is still primarily weighted towards the RNN component", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 272, + 145, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 145, + 285 + ], + "score": 1.0, + "content": "however.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + } + ], + "index": 8.75 + }, + { + "type": "image", + "bbox": [ + 113, + 302, + 500, + 345 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 302, + 500, + 345 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 113, + 302, + 500, + 345 + ], + "spans": [ + { + "bbox": [ + 113, + 302, + 500, + 345 + ], + "score": 0.838, + "type": "image", + "image_path": "74f8b37f282e29b8fa0aba935aeef9ab0765afe5633d21f65b8558f8effb4fca.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 113, + 302, + 500, + 316.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 113, + 316.3333333333333, + 500, + 330.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 113, + 330.66666666666663, + 500, + 344.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 369, + 505, + 403 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "Figure A3: In predicting the national cancer institute also projected that overall u.s. mortality, the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "pointer component is focused on mortality and rates, both of which would fit. The gate is still", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 392, + 306, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 306, + 403 + ], + "score": 1.0, + "content": "primarily weighted towards the RNN component.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "image", + "bbox": [ + 112, + 423, + 500, + 461 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 423, + 500, + 461 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 112, + 423, + 500, + 461 + ], + "spans": [ + { + "bbox": [ + 112, + 423, + 500, + 461 + ], + "score": 0.902, + "type": "image", + "image_path": "29f2ee31d97f97d485e728471fd2cd3eb34ab3a8f310dc8086e09059401473fd.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 112, + 423, + 500, + 435.6666666666667 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 112, + 435.6666666666667, + 500, + 448.33333333333337 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 112, + 448.33333333333337, + 500, + 461.00000000000006 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 487, + 504, + 521 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Figure A4: In predicting people do n’t seem to be unhappy with it he said, the pointer component", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "correctly selects said and is almost equally weighted with the RNN component. This is surprising", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 510, + 381, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 381, + 522 + ], + "score": 1.0, + "content": "given how frequent the word said is used within the Penn Treebank.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 43, + 501, + 133 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 43, + 501, + 133 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 43, + 501, + 133 + ], + "spans": [ + { + "bbox": [ + 110, + 43, + 501, + 133 + ], + "score": 0.274, + "type": "image", + "image_path": "ef168c7e1ca9bc89964097cbd337eb2c1028caa5e8e233bb485daa4283e232c1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 43, + 501, + 73.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 73.0, + 501, + 103.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 103.0, + 501, + 133.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 158, + 506, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 405, + 171 + ], + "score": 1.0, + "content": "Figure A5: For predicting the federal government has had to pump in", + "type": "text" + }, + { + "bbox": [ + 405, + 159, + 412, + 169 + ], + "score": 0.35, + "content": "\\$ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "N billion, the pointer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "component focuses on the recent usage of billion with highly similar context. The pointer component", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 179, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 104, + 179, + 505, + 194 + ], + "score": 1.0, + "content": "is also relied upon more heavily than the RNN component - surprising given the frequency of billion", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 190, + 355, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 355, + 204 + ], + "score": 1.0, + "content": "within the Penn Treebank and that the usage was quite recent.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 112, + 227, + 500, + 264 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 227, + 500, + 264 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 112, + 227, + 500, + 264 + ], + "spans": [ + { + "bbox": [ + 112, + 227, + 500, + 264 + ], + "score": 0.896, + "type": "image", + "image_path": "dd311d97c72a9f4fa21add99ecf8515494eb4cc97c98fcb7f45e7fd312eb7776.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 112, + 227, + 500, + 239.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 112, + 239.33333333333334, + 500, + 251.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 112, + 251.66666666666669, + 500, + 264.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 291, + 506, + 358 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 216, + 304 + ], + "score": 1.0, + "content": "Figure A6: For predicting", + "type": "text" + }, + { + "bbox": [ + 217, + 291, + 242, + 303 + ], + "score": 0.64, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "’s ghost sometimes runs through the e ring dressed like gen. nor-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "iega, the pointer component reaches 97 timesteps back to retrieve gen. douglas. Unfortunately this", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "prediction is incorrect but without additional context a human would have guessed the same word.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "This additionally illustrates why the gating function must be integrated into the pointer component.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "The named entity gen. douglas would have fallen out of the window in only four more timesteps, a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 485, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 485, + 360 + ], + "score": 1.0, + "content": "fact that the RNN hidden state would not be able to accurately retain for almost 100 timesteps.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + } + ], + "index": 10.25 + }, + { + "type": "image", + "bbox": [ + 112, + 383, + 500, + 423 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 383, + 500, + 423 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 112, + 383, + 500, + 423 + ], + "spans": [ + { + "bbox": [ + 112, + 383, + 500, + 423 + ], + "score": 0.9, + "type": "image", + "image_path": "12273399d0022a69702f98b310adb69608c6c1657321fc3e0ec1618d18640606.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 112, + 383, + 500, + 396.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 112, + 396.3333333333333, + 500, + 409.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 112, + 409.66666666666663, + 500, + 422.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 449, + 505, + 483 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "Figure A7: For predicting mr. iverson, the pointer component has learned the ability to point to the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "last name of the most recent named entity. The named entity also occurs 45 timesteps ago, which is", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 471, + 450, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 450, + 484 + ], + "score": 1.0, + "content": "longer than the 35 steps that most language models truncate their backpropagation to.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "image", + "bbox": [ + 111, + 507, + 500, + 557 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 507, + 500, + 557 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 111, + 507, + 500, + 557 + ], + "spans": [ + { + "bbox": [ + 111, + 507, + 500, + 557 + ], + "score": 0.88, + "type": "image", + "image_path": "81f496401397d434510e2273937e7d5a166e9cb126ae3d3fa7dc1987293081e2.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 507, + 500, + 523.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 523.6666666666666, + 500, + 540.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 540.3333333333333, + 500, + 556.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 575, + 504, + 598 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 106, + 575, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 588 + ], + "score": 1.0, + "content": "Figure A8: For predicting mr. rosenthal, the pointer is almost exclusively used and reaches back 65", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 586, + 504, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 504, + 600 + ], + "score": 1.0, + "content": "timesteps to identify bruce rosenthal as the person speaking, correctly only selecting the last name.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + } + ], + "index": 24.25 + }, + { + "type": "image", + "bbox": [ + 111, + 622, + 500, + 663 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 622, + 500, + 663 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 111, + 622, + 500, + 663 + ], + "spans": [ + { + "bbox": [ + 111, + 622, + 500, + 663 + ], + "score": 0.912, + "type": "image", + "image_path": "5244179d618289042f46d23f44db0ec07e116e8a3e2a4f736497656a6a7b8d86.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 111, + 622, + 500, + 635.6666666666666 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 111, + 635.6666666666666, + 500, + 649.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 111, + 649.3333333333333, + 500, + 662.9999999999999 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 689, + 505, + 722 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 106, + 689, + 504, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 504, + 701 + ], + "score": 1.0, + "content": "Figure A9: For predicting in composite trading on the new york stock exchange yesterday inte-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 700, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 268, + 712 + ], + "score": 1.0, + "content": "grated, the company Integrated and the", + "type": "text" + }, + { + "bbox": [ + 268, + 700, + 294, + 712 + ], + "score": 0.69, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 700, + 504, + 712 + ], + "score": 1.0, + "content": "token are primarily attended to by the pointer com-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 711, + 439, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 439, + 724 + ], + "score": 1.0, + "content": "ponent, with nearly the full prediction being determined by the pointer component.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + } + ], + "index": 29.5 + } + ], + "page_idx": 13, + "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, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 43, + 501, + 133 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 43, + 501, + 133 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 43, + 501, + 133 + ], + "spans": [ + { + "bbox": [ + 110, + 43, + 501, + 133 + ], + "score": 0.274, + "type": "image", + "image_path": "ef168c7e1ca9bc89964097cbd337eb2c1028caa5e8e233bb485daa4283e232c1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 43, + 501, + 73.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 73.0, + 501, + 103.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 103.0, + 501, + 133.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 158, + 506, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 158, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 405, + 171 + ], + "score": 1.0, + "content": "Figure A5: For predicting the federal government has had to pump in", + "type": "text" + }, + { + "bbox": [ + 405, + 159, + 412, + 169 + ], + "score": 0.35, + "content": "\\$ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 158, + 505, + 171 + ], + "score": 1.0, + "content": "N billion, the pointer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "component focuses on the recent usage of billion with highly similar context. The pointer component", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 179, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 104, + 179, + 505, + 194 + ], + "score": 1.0, + "content": "is also relied upon more heavily than the RNN component - surprising given the frequency of billion", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 190, + 355, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 355, + 204 + ], + "score": 1.0, + "content": "within the Penn Treebank and that the usage was quite recent.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 112, + 227, + 500, + 264 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 227, + 500, + 264 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 112, + 227, + 500, + 264 + ], + "spans": [ + { + "bbox": [ + 112, + 227, + 500, + 264 + ], + "score": 0.896, + "type": "image", + "image_path": "dd311d97c72a9f4fa21add99ecf8515494eb4cc97c98fcb7f45e7fd312eb7776.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 112, + 227, + 500, + 239.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 112, + 239.33333333333334, + 500, + 251.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 112, + 251.66666666666669, + 500, + 264.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 291, + 506, + 358 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 216, + 304 + ], + "score": 1.0, + "content": "Figure A6: For predicting", + "type": "text" + }, + { + "bbox": [ + 217, + 291, + 242, + 303 + ], + "score": 0.64, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "’s ghost sometimes runs through the e ring dressed like gen. nor-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "iega, the pointer component reaches 97 timesteps back to retrieve gen. douglas. Unfortunately this", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "prediction is incorrect but without additional context a human would have guessed the same word.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "This additionally illustrates why the gating function must be integrated into the pointer component.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "The named entity gen. douglas would have fallen out of the window in only four more timesteps, a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 485, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 485, + 360 + ], + "score": 1.0, + "content": "fact that the RNN hidden state would not be able to accurately retain for almost 100 timesteps.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + } + ], + "index": 10.25 + }, + { + "type": "image", + "bbox": [ + 112, + 383, + 500, + 423 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 383, + 500, + 423 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 112, + 383, + 500, + 423 + ], + "spans": [ + { + "bbox": [ + 112, + 383, + 500, + 423 + ], + "score": 0.9, + "type": "image", + "image_path": "12273399d0022a69702f98b310adb69608c6c1657321fc3e0ec1618d18640606.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 112, + 383, + 500, + 396.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 112, + 396.3333333333333, + 500, + 409.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 112, + 409.66666666666663, + 500, + 422.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 449, + 505, + 483 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "Figure A7: For predicting mr. iverson, the pointer component has learned the ability to point to the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "last name of the most recent named entity. The named entity also occurs 45 timesteps ago, which is", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 471, + 450, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 450, + 484 + ], + "score": 1.0, + "content": "longer than the 35 steps that most language models truncate their backpropagation to.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "image", + "bbox": [ + 111, + 507, + 500, + 557 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 507, + 500, + 557 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 111, + 507, + 500, + 557 + ], + "spans": [ + { + "bbox": [ + 111, + 507, + 500, + 557 + ], + "score": 0.88, + "type": "image", + "image_path": "81f496401397d434510e2273937e7d5a166e9cb126ae3d3fa7dc1987293081e2.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 507, + 500, + 523.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 523.6666666666666, + 500, + 540.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 540.3333333333333, + 500, + 556.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 575, + 504, + 598 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 106, + 575, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 588 + ], + "score": 1.0, + "content": "Figure A8: For predicting mr. rosenthal, the pointer is almost exclusively used and reaches back 65", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 586, + 504, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 504, + 600 + ], + "score": 1.0, + "content": "timesteps to identify bruce rosenthal as the person speaking, correctly only selecting the last name.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + } + ], + "index": 24.25 + }, + { + "type": "image", + "bbox": [ + 111, + 622, + 500, + 663 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 622, + 500, + 663 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 111, + 622, + 500, + 663 + ], + "spans": [ + { + "bbox": [ + 111, + 622, + 500, + 663 + ], + "score": 0.912, + "type": "image", + "image_path": "5244179d618289042f46d23f44db0ec07e116e8a3e2a4f736497656a6a7b8d86.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 111, + 622, + 500, + 635.6666666666666 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 111, + 635.6666666666666, + 500, + 649.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 111, + 649.3333333333333, + 500, + 662.9999999999999 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 689, + 505, + 722 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 106, + 689, + 504, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 504, + 701 + ], + "score": 1.0, + "content": "Figure A9: For predicting in composite trading on the new york stock exchange yesterday inte-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 700, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 268, + 712 + ], + "score": 1.0, + "content": "grated, the company Integrated and the", + "type": "text" + }, + { + "bbox": [ + 268, + 700, + 294, + 712 + ], + "score": 0.69, + "content": "\\left. u n k \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 700, + 504, + 712 + ], + "score": 1.0, + "content": "token are primarily attended to by the pointer com-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 711, + 439, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 439, + 724 + ], + "score": 1.0, + "content": "ponent, with nearly the full prediction being determined by the pointer component.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + } + ], + "index": 29.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 293, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 294, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 294, + 95 + ], + "score": 1.0, + "content": "ZIPFIAN PLOT OVER PTB AND WIKITEXT-2", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 110, + 109, + 539, + 282 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 109, + 539, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 109, + 539, + 282 + ], + "spans": [ + { + "bbox": [ + 110, + 109, + 539, + 282 + ], + "score": 0.973, + "type": "image", + "image_path": "fef900b9bfea3ce6d1b68bfa9dc98ab50ad06567225c817639d232fbc434491e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 110, + 109, + 539, + 166.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 166.66666666666666, + 539, + 224.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 110, + 224.33333333333331, + 539, + 282.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 298, + 507, + 332 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "Figure A10: Zipfian plot over the training partition in Penn Treebank and WikiText-2 datasets.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 406, + 321 + ], + "score": 1.0, + "content": "Notice the severe drop on the Penn Treebank when the vocabulary hits", + "type": "text" + }, + { + "bbox": [ + 406, + 309, + 422, + 320 + ], + "score": 0.88, + "content": "1 0 ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 309, + 505, + 321 + ], + "score": 1.0, + "content": ". Two thirds of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 320, + 425, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 425, + 332 + ], + "score": 1.0, + "content": "vocabulary in WikiText-2 are past the vocabulary cut-off of the Penn Treebank.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 260, + 364 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 261, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 261, + 365 + ], + "score": 1.0, + "content": "ZIPFIAN PLOT OVER WIKITEXT-103", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 169, + 381, + 436, + 580 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 169, + 381, + 436, + 580 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 169, + 381, + 436, + 580 + ], + "spans": [ + { + "bbox": [ + 169, + 381, + 436, + 580 + ], + "score": 0.967, + "type": "image", + "image_path": "750b091fb947314259a95c5ff06b556058e55aa11164e7c6a76439cd5d72c9cf.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 169, + 381, + 436, + 393.4375 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 169, + 393.4375, + 436, + 405.875 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 169, + 405.875, + 436, + 418.3125 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 169, + 418.3125, + 436, + 430.75 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 169, + 430.75, + 436, + 443.1875 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 169, + 443.1875, + 436, + 455.625 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 169, + 455.625, + 436, + 468.0625 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 169, + 468.0625, + 436, + 480.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 169, + 480.5, + 436, + 492.9375 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 169, + 492.9375, + 436, + 505.375 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 169, + 505.375, + 436, + 517.8125 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 169, + 517.8125, + 436, + 530.25 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 169, + 530.25, + 436, + 542.6875 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 169, + 542.6875, + 436, + 555.125 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 555.125, + 436, + 567.5625 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 169, + 567.5625, + 436, + 580.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 597, + 505, + 621 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "Figure A11: Zipfian plot over the training partition in the WikiText-103 dataset. With the dataset", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 608, + 500, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 500, + 622 + ], + "score": 1.0, + "content": "containing over 100 million tokens, there is reasonable coverage of the long tail of the vocabulary.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + } + ], + "index": 20.0 + } + ], + "page_idx": 14, + "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": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 293, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 294, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 294, + 95 + ], + "score": 1.0, + "content": "ZIPFIAN PLOT OVER PTB AND WIKITEXT-2", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 110, + 109, + 539, + 282 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 109, + 539, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 109, + 539, + 282 + ], + "spans": [ + { + "bbox": [ + 110, + 109, + 539, + 282 + ], + "score": 0.973, + "type": "image", + "image_path": "fef900b9bfea3ce6d1b68bfa9dc98ab50ad06567225c817639d232fbc434491e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 110, + 109, + 539, + 166.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 166.66666666666666, + 539, + 224.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 110, + 224.33333333333331, + 539, + 282.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 298, + 507, + 332 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "Figure A10: Zipfian plot over the training partition in Penn Treebank and WikiText-2 datasets.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 406, + 321 + ], + "score": 1.0, + "content": "Notice the severe drop on the Penn Treebank when the vocabulary hits", + "type": "text" + }, + { + "bbox": [ + 406, + 309, + 422, + 320 + ], + "score": 0.88, + "content": "1 0 ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 309, + 505, + 321 + ], + "score": 1.0, + "content": ". Two thirds of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 320, + 425, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 425, + 332 + ], + "score": 1.0, + "content": "vocabulary in WikiText-2 are past the vocabulary cut-off of the Penn Treebank.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 260, + 364 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 261, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 261, + 365 + ], + "score": 1.0, + "content": "ZIPFIAN PLOT OVER WIKITEXT-103", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 353, + 261, + 365 + ] + }, + { + "type": "image", + "bbox": [ + 169, + 381, + 436, + 580 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 169, + 381, + 436, + 580 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 169, + 381, + 436, + 580 + ], + "spans": [ + { + "bbox": [ + 169, + 381, + 436, + 580 + ], + "score": 0.967, + "type": "image", + "image_path": "750b091fb947314259a95c5ff06b556058e55aa11164e7c6a76439cd5d72c9cf.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 169, + 381, + 436, + 393.4375 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 169, + 393.4375, + 436, + 405.875 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 169, + 405.875, + 436, + 418.3125 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 169, + 418.3125, + 436, + 430.75 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 169, + 430.75, + 436, + 443.1875 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 169, + 443.1875, + 436, + 455.625 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 169, + 455.625, + 436, + 468.0625 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 169, + 468.0625, + 436, + 480.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 169, + 480.5, + 436, + 492.9375 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 169, + 492.9375, + 436, + 505.375 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 169, + 505.375, + 436, + 517.8125 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 169, + 517.8125, + 436, + 530.25 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 169, + 530.25, + 436, + 542.6875 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 169, + 542.6875, + 436, + 555.125 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 169, + 555.125, + 436, + 567.5625 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 169, + 567.5625, + 436, + 580.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 597, + 505, + 621 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "Figure A11: Zipfian plot over the training partition in the WikiText-103 dataset. With the dataset", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 608, + 500, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 500, + 622 + ], + "score": 1.0, + "content": "containing over 100 million tokens, there is reasonable coverage of the long tail of the vocabulary.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + } + ], + "index": 20.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/Byj72udxe/Byj72udxe_model.json b/parse/train/Byj72udxe/Byj72udxe_model.json new file mode 100644 index 0000000000000000000000000000000000000000..ec36a3e93404db6140799690e8fb461f46fccb9b --- /dev/null +++ b/parse/train/Byj72udxe/Byj72udxe_model.json @@ -0,0 +1,22062 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 601, + 1302, + 601, + 1302, + 997, + 398, + 997 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1149, + 1403, + 1149, + 1403, + 1365, + 299, + 1365 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 1381, + 1402, + 1381, + 1402, + 1532, + 300, + 1532 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1717, + 1404, + 1717, + 1404, + 1962, + 298, + 1962 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1549, + 1402, + 1549, + 1402, + 1702, + 299, + 1702 + ], + "score": 0.97 + }, + { + "category_id": 0, + "poly": [ + 301, + 219, + 1105, + 219, + 1105, + 269, + 301, + 269 + ], + "score": 0.936 + }, + { + "category_id": 2, + "poly": [ + 333, + 2005, + 856, + 2005, + 856, + 2032, + 333, + 2032 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 302, + 1074, + 573, + 1074, + 573, + 1109, + 302, + 1109 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.876 + }, + { + "category_id": 0, + "poly": [ + 773, + 524, + 926, + 524, + 926, + 558, + 773, + 558 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 857, + 2089, + 857, + 2112, + 842, + 2112 + ], + "score": 0.687 + }, + { + "category_id": 1, + "poly": [ + 314, + 319, + 1212, + 319, + 1212, + 446, + 314, + 446 + ], + "score": 0.603 + }, + { + "category_id": 15, + "poly": [ + 291.0, + 216.0, + 1111.0, + 216.0, + 1111.0, + 274.0, + 291.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 2003.0, + 857.0, + 2003.0, + 857.0, + 2033.0, + 334.0, + 2033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1071.0, + 579.0, + 1071.0, + 579.0, + 1118.0, + 294.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 523.0, + 932.0, + 523.0, + 932.0, + 561.0, + 769.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 860.0, + 2088.0, + 860.0, + 2118.0, + 841.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 602.0, + 1304.0, + 602.0, + 1304.0, + 634.0, + 395.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 631.0, + 1306.0, + 631.0, + 1306.0, + 668.0, + 393.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 662.0, + 1307.0, + 662.0, + 1307.0, + 697.0, + 392.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 694.0, + 1305.0, + 694.0, + 1305.0, + 726.0, + 393.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 725.0, + 1306.0, + 725.0, + 1306.0, + 757.0, + 394.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 756.0, + 1306.0, + 756.0, + 1306.0, + 787.0, + 394.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 784.0, + 1307.0, + 784.0, + 1307.0, + 819.0, + 392.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 812.0, + 1307.0, + 812.0, + 1307.0, + 850.0, + 393.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 845.0, + 1306.0, + 845.0, + 1306.0, + 881.0, + 394.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 878.0, + 1305.0, + 878.0, + 1305.0, + 910.0, + 395.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 906.0, + 1305.0, + 906.0, + 1305.0, + 940.0, + 394.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 936.0, + 1307.0, + 936.0, + 1307.0, + 972.0, + 393.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 966.0, + 1018.0, + 966.0, + 1018.0, + 1001.0, + 394.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1150.0, + 1407.0, + 1150.0, + 1407.0, + 1188.0, + 294.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1180.0, + 1405.0, + 1180.0, + 1405.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1211.0, + 1405.0, + 1211.0, + 1405.0, + 1245.0, + 294.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1243.0, + 1405.0, + 1243.0, + 1405.0, + 1277.0, + 293.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 1405.0, + 1273.0, + 1405.0, + 1308.0, + 295.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1303.0, + 1407.0, + 1303.0, + 1407.0, + 1337.0, + 295.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1335.0, + 1323.0, + 1335.0, + 1323.0, + 1369.0, + 295.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1406.0, + 1379.0, + 1406.0, + 1416.0, + 294.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1407.0, + 1406.0, + 1407.0, + 1406.0, + 1450.0, + 293.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1438.0, + 1406.0, + 1438.0, + 1406.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1406.0, + 1468.0, + 1406.0, + 1508.0, + 294.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1504.0, + 689.0, + 1504.0, + 689.0, + 1536.0, + 294.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1719.0, + 1405.0, + 1719.0, + 1405.0, + 1752.0, + 296.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1747.0, + 1404.0, + 1747.0, + 1404.0, + 1782.0, + 293.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1780.0, + 1405.0, + 1780.0, + 1405.0, + 1813.0, + 296.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1807.0, + 1406.0, + 1807.0, + 1406.0, + 1846.0, + 291.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1838.0, + 1404.0, + 1838.0, + 1404.0, + 1874.0, + 293.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1868.0, + 1405.0, + 1868.0, + 1405.0, + 1904.0, + 293.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1902.0, + 1406.0, + 1902.0, + 1406.0, + 1935.0, + 294.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1932.0, + 743.0, + 1932.0, + 743.0, + 1965.0, + 294.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1546.0, + 1404.0, + 1546.0, + 1404.0, + 1586.0, + 292.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1578.0, + 1406.0, + 1578.0, + 1406.0, + 1615.0, + 295.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1608.0, + 1406.0, + 1608.0, + 1406.0, + 1647.0, + 294.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1641.0, + 1404.0, + 1641.0, + 1404.0, + 1674.0, + 294.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1669.0, + 369.0, + 1669.0, + 369.0, + 1709.0, + 290.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 319.0, + 1129.0, + 319.0, + 1129.0, + 356.0, + 311.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 384.0, + 546.0, + 384.0, + 546.0, + 413.0, + 312.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 413.0, + 1214.0, + 413.0, + 1214.0, + 450.0, + 312.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 350.5, + 716.0, + 350.5, + 716.0, + 386.0, + 310.0, + 386.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 882, + 1405, + 882, + 1405, + 1255, + 297, + 1255 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1456, + 1404, + 1456, + 1404, + 1762, + 297, + 1762 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1349, + 1404, + 1349, + 1404, + 1442, + 298, + 1442 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 522, + 217, + 1179, + 217, + 1179, + 543, + 522, + 543 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 725, + 1952, + 971, + 1952, + 971, + 2028, + 725, + 2028 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 298, + 1851, + 1408, + 1851, + 1408, + 1945, + 298, + 1945 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 300, + 758, + 1220, + 758, + 1220, + 791, + 300, + 791 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 300, + 1291, + 822, + 1291, + 822, + 1323, + 300, + 1323 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 814, + 75, + 814, + 104, + 298, + 104 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 301, + 825, + 773, + 825, + 773, + 857, + 301, + 857 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1815, + 1399, + 1815, + 1399, + 1843, + 1366, + 1843 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1962, + 1400, + 1962, + 1400, + 1991, + 1366, + 1991 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1776, + 1399, + 1776, + 1399, + 1805, + 1366, + 1805 + ], + "score": 0.871 + }, + { + "category_id": 4, + "poly": [ + 294, + 582, + 1404, + 582, + 1404, + 646, + 294, + 646 + ], + "score": 0.848 + }, + { + "category_id": 8, + "poly": [ + 723, + 1813, + 919, + 1813, + 919, + 1845, + 723, + 1845 + ], + "score": 0.831 + }, + { + "category_id": 8, + "poly": [ + 787, + 1769, + 914, + 1769, + 914, + 1807, + 787, + 1807 + ], + "score": 0.81 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.753 + }, + { + "category_id": 0, + "poly": [ + 299, + 689, + 1106, + 689, + 1106, + 726, + 299, + 726 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 299, + 689, + 1106, + 689, + 1106, + 726, + 299, + 726 + ], + "score": 0.175 + }, + { + "category_id": 8, + "poly": [ + 725, + 1769, + 922, + 1769, + 922, + 1845, + 725, + 1845 + ], + "score": 0.146 + }, + { + "category_id": 14, + "poly": [ + 726, + 1949, + 971, + 1949, + 971, + 2030, + 726, + 2030 + ], + "score": 0.93, + "latex": "p _ { \\mathrm { p t r } } ( w ) = \\sum _ { i \\in I ( w , x ) } a _ { i } ," + }, + { + "category_id": 13, + "poly": [ + 888, + 1486, + 1001, + 1486, + 1001, + 1518, + 888, + 1518 + ], + "score": 0.92, + "latex": "\\boldsymbol { h } _ { i } ^ { \\star } \\in \\mathbb { R } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1637, + 1393, + 1637, + 1393, + 1671, + 1292, + 1671 + ], + "score": 0.92, + "latex": "\\boldsymbol { q } ^ { \\mathbf { \\lambda } } \\in \\mathbb { R } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 770, + 1013, + 828, + 1013, + 828, + 1044, + 770, + 1044 + ], + "score": 0.91, + "latex": "h _ { i - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1011, + 1393, + 1011, + 1393, + 1044, + 1136, + 1044 + ], + "score": 0.91, + "latex": "h _ { i } = R N N ( x _ { i } , h _ { i - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1072, + 1404, + 1072, + 1404, + 1105, + 1260, + 1105 + ], + "score": 0.91, + "latex": "p _ { \\mathrm { v o c a b } } ( w ) =" + }, + { + "category_id": 13, + "poly": [ + 296, + 975, + 592, + 975, + 592, + 1016, + 296, + 1016 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\prod _ { i = 1 } ^ { N } p ( w _ { i } | w _ { 1 } , \\dots , w _ { i - 1 } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1198, + 944, + 1405, + 944, + 1405, + 979, + 1198, + 979 + ], + "score": 0.9, + "latex": "p ( w _ { 1 } , \\dots , w _ { N } ) =" + }, + { + "category_id": 13, + "poly": [ + 298, + 1410, + 498, + 1410, + 498, + 1445, + 298, + 1445 + ], + "score": 0.9, + "latex": "p ( w _ { 1 } , \\dots , w _ { N - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1183, + 1045, + 1251, + 1045, + 1251, + 1074, + 1183, + 1074 + ], + "score": 0.9, + "latex": "h _ { { N - 1 } }" + }, + { + "category_id": 13, + "poly": [ + 584, + 1640, + 868, + 1640, + 868, + 1673, + 584, + 1673 + ], + "score": 0.9, + "latex": "q = \\mathrm { t a n h } ( W h _ { N - 1 } + b )" + }, + { + "category_id": 13, + "poly": [ + 366, + 1702, + 395, + 1702, + 395, + 1731, + 366, + 1731 + ], + "score": 0.88, + "latex": "h _ { i }" + }, + { + "category_id": 13, + "poly": [ + 455, + 1043, + 536, + 1043, + 536, + 1072, + 455, + 1072 + ], + "score": 0.88, + "latex": "N - 1" + }, + { + "category_id": 13, + "poly": [ + 603, + 765, + 768, + 765, + 768, + 791, + 603, + 791 + ], + "score": 0.88, + "latex": "w _ { 1 } , \\ldots , w _ { N - 1 }" + }, + { + "category_id": 13, + "poly": [ + 961, + 1637, + 1114, + 1637, + 1114, + 1668, + 961, + 1668 + ], + "score": 0.88, + "latex": "W \\in \\dot { \\mathbb { R } ^ { H \\times } } \\mathbf { \\check { \\mathit { H } } }" + }, + { + "category_id": 13, + "poly": [ + 752, + 1100, + 892, + 1100, + 892, + 1131, + 752, + 1131 + ], + "score": 0.87, + "latex": "U \\in \\mathbf { \\overline { { R } } } ^ { V \\times H }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1850, + 462, + 1850, + 462, + 1882, + 372, + 1882 + ], + "score": 0.87, + "latex": "z \\in \\mathbb { R } ^ { L }" + }, + { + "category_id": 14, + "poly": [ + 723, + 1765, + 918, + 1765, + 918, + 1849, + 723, + 1849 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { z _ { i } = q ^ { T } h _ { i } , } \\\\ { a = \\mathrm { s o f t m a x } ( z ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 594, + 1101, + 737, + 1101, + 737, + 1134, + 594, + 1134 + ], + "score": 0.86, + "latex": "\\mathbf { \\Psi } _ { p _ { \\mathrm { v o c a b } } } \\in \\dot { \\mathbb { R } } ^ { V }" + }, + { + "category_id": 13, + "poly": [ + 992, + 1017, + 1020, + 1017, + 1020, + 1042, + 992, + 1042 + ], + "score": 0.85, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1015, + 325, + 1015, + 325, + 1042, + 297, + 1042 + ], + "score": 0.85, + "latex": "h _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 764, + 1214, + 764, + 1214, + 789, + 1171, + 789 + ], + "score": 0.84, + "latex": "w _ { N }" + }, + { + "category_id": 14, + "poly": [ + 680, + 516, + 1067, + 516, + 1067, + 542, + 680, + 542 + ], + "score": 0.84, + "latex": "p ( { \\mathrm { Y e l l e n } } ) = g \\ p _ { \\mathrm { v o c a b } } ( { \\mathrm { Y e l l e n } } ) + ( 1 - g ) \\ p _ { \\mathrm { p t r } } ( { \\mathrm { Y e l l e n } } )" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1638, + 1228, + 1638, + 1228, + 1669, + 1129, + 1669 + ], + "score": 0.83, + "latex": "b \\in \\mathring { \\mathbb { R } } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 624, + 1854, + 646, + 1854, + 646, + 1880, + 624, + 1880 + ], + "score": 0.82, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 474, + 1850, + 564, + 1850, + 564, + 1882, + 474, + 1882 + ], + "score": 0.78, + "latex": "a \\in \\mathbb { R } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 589, + 1489, + 608, + 1489, + 608, + 1516, + 589, + 1516 + ], + "score": 0.78, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 1037, + 589, + 1056, + 589, + 1056, + 616, + 1037, + 616 + ], + "score": 0.77, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 559, + 1706, + 576, + 1706, + 576, + 1733, + 559, + 1733 + ], + "score": 0.77, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1202, + 1104, + 1228, + 1104, + 1228, + 1131, + 1202, + 1131 + ], + "score": 0.75, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 413, + 1646, + 431, + 1646, + 431, + 1671, + 413, + 1671 + ], + "score": 0.74, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1187, + 1615, + 1204, + 1615, + 1204, + 1639, + 1187, + 1639 + ], + "score": 0.72, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 906, + 1103, + 935, + 1103, + 935, + 1131, + 906, + 1131 + ], + "score": 0.7, + "latex": "H" + }, + { + "category_id": 13, + "poly": [ + 397, + 1103, + 503, + 1103, + 503, + 1136, + 397, + 1136 + ], + "score": 0.64, + "latex": "\\left( U h _ { N - 1 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 985, + 984, + 998, + 984, + 998, + 1009, + 985, + 1009 + ], + "score": 0.63, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 220.0, + 1133.0, + 220.0, + 1133.0, + 256.0, + 565.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 257.0, + 598.0, + 257.0, + 598.0, + 283.0, + 559.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 256.0, + 791.0, + 256.0, + 791.0, + 283.0, + 614.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 266.0, + 832.0, + 266.0, + 832.0, + 281.0, + 809.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 258.0, + 902.0, + 258.0, + 902.0, + 282.0, + 844.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 260.0, + 957.0, + 260.0, + 957.0, + 282.0, + 910.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 269.0, + 1002.0, + 269.0, + 1002.0, + 281.0, + 989.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 257.0, + 1078.0, + 257.0, + 1078.0, + 284.0, + 1038.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 257.0, + 1138.0, + 257.0, + 1138.0, + 284.0, + 1099.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 277.0, + 586.0, + 277.0, + 586.0, + 293.0, + 570.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 279.0, + 645.0, + 279.0, + 645.0, + 291.0, + 633.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 279.0, + 708.0, + 279.0, + 708.0, + 292.0, + 694.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 279.0, + 771.0, + 279.0, + 771.0, + 291.0, + 757.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 280.0, + 877.0, + 280.0, + 877.0, + 289.0, + 868.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 278.0, + 942.0, + 278.0, + 942.0, + 293.0, + 925.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 278.0, + 1002.0, + 278.0, + 1002.0, + 291.0, + 989.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 278.0, + 1066.0, + 278.0, + 1066.0, + 293.0, + 1048.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 295.0, + 550.0, + 295.0, + 550.0, + 369.0, + 524.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 299.0, + 582.0, + 299.0, + 582.0, + 308.0, + 573.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 297.0, + 769.0, + 297.0, + 769.0, + 306.0, + 759.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 299.0, + 1000.0, + 299.0, + 1000.0, + 307.0, + 992.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 331.0, + 1153.0, + 331.0, + 1153.0, + 358.0, + 1083.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 370.0, + 813.0, + 370.0, + 813.0, + 398.0, + 711.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 370.0, + 1133.0, + 370.0, + 1133.0, + 395.0, + 1110.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 397.0, + 549.0, + 397.0, + 549.0, + 478.0, + 520.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 403.0, + 640.0, + 403.0, + 640.0, + 426.0, + 569.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 403.0, + 741.0, + 403.0, + 741.0, + 426.0, + 665.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 403.0, + 966.0, + 403.0, + 966.0, + 426.0, + 887.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 402.0, + 1050.0, + 402.0, + 1050.0, + 426.0, + 997.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 400.0, + 1131.0, + 400.0, + 1131.0, + 427.0, + 1079.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 413.0, + 568.0, + 413.0, + 568.0, + 465.0, + 541.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 414.0, + 830.0, + 414.0, + 830.0, + 425.0, + 812.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 427.0, + 609.0, + 427.0, + 609.0, + 440.0, + 597.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 429.0, + 708.0, + 429.0, + 708.0, + 439.0, + 699.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 427.0, + 932.0, + 427.0, + 932.0, + 439.0, + 920.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 428.0, + 1030.0, + 428.0, + 1030.0, + 440.0, + 1017.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 428.0, + 1109.0, + 428.0, + 1109.0, + 439.0, + 1101.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 467.0, + 601.0, + 467.0, + 601.0, + 481.0, + 578.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 471.0, + 723.0, + 471.0, + 723.0, + 478.0, + 714.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 471.0, + 1014.0, + 471.0, + 1014.0, + 478.0, + 1002.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 469.0, + 1046.0, + 469.0, + 1046.0, + 477.0, + 1035.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 469.0, + 1082.0, + 469.0, + 1082.0, + 480.0, + 1065.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 468.0, + 1110.0, + 468.0, + 1110.0, + 478.0, + 1101.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 478.0, + 1085.0, + 478.0, + 1085.0, + 504.0, + 967.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1288.0, + 827.0, + 1288.0, + 827.0, + 1328.0, + 294.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 777.0, + 823.0, + 777.0, + 862.0, + 294.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 579.0, + 1036.0, + 579.0, + 1036.0, + 620.0, + 294.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 579.0, + 1404.0, + 579.0, + 1404.0, + 620.0, + 1057.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 610.0, + 1136.0, + 610.0, + 1136.0, + 650.0, + 293.0, + 650.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": [ + 292.0, + 686.0, + 1108.0, + 686.0, + 1108.0, + 731.0, + 292.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 881.0, + 1405.0, + 881.0, + 1405.0, + 919.0, + 294.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 913.0, + 1405.0, + 913.0, + 1405.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 943.0, + 1197.0, + 943.0, + 1197.0, + 980.0, + 292.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 977.0, + 295.0, + 977.0, + 295.0, + 1017.0, + 292.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 977.0, + 984.0, + 977.0, + 984.0, + 1017.0, + 593.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 977.0, + 1407.0, + 977.0, + 1407.0, + 1017.0, + 999.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1012.0, + 769.0, + 1012.0, + 769.0, + 1046.0, + 326.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1012.0, + 991.0, + 1012.0, + 991.0, + 1046.0, + 829.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1012.0, + 1135.0, + 1012.0, + 1135.0, + 1046.0, + 1021.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1012.0, + 1403.0, + 1012.0, + 1403.0, + 1046.0, + 1394.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1038.0, + 454.0, + 1038.0, + 454.0, + 1078.0, + 292.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1038.0, + 1182.0, + 1038.0, + 1182.0, + 1078.0, + 537.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1038.0, + 1408.0, + 1038.0, + 1408.0, + 1078.0, + 1252.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1071.0, + 1259.0, + 1071.0, + 1259.0, + 1109.0, + 292.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1094.0, + 396.0, + 1094.0, + 396.0, + 1141.0, + 291.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1094.0, + 593.0, + 1094.0, + 593.0, + 1141.0, + 504.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1094.0, + 751.0, + 1094.0, + 751.0, + 1141.0, + 738.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1094.0, + 905.0, + 1094.0, + 905.0, + 1141.0, + 893.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1094.0, + 1201.0, + 1094.0, + 1201.0, + 1141.0, + 936.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1094.0, + 1407.0, + 1094.0, + 1407.0, + 1141.0, + 1229.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1133.0, + 1403.0, + 1133.0, + 1403.0, + 1167.0, + 294.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1161.0, + 1403.0, + 1161.0, + 1403.0, + 1198.0, + 292.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1194.0, + 1406.0, + 1194.0, + 1406.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 642.0, + 1221.0, + 642.0, + 1260.0, + 294.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1457.0, + 1404.0, + 1457.0, + 1404.0, + 1492.0, + 295.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1480.0, + 588.0, + 1480.0, + 588.0, + 1525.0, + 291.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1480.0, + 887.0, + 1480.0, + 887.0, + 1525.0, + 609.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1480.0, + 1409.0, + 1480.0, + 1409.0, + 1525.0, + 1002.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1518.0, + 1406.0, + 1518.0, + 1406.0, + 1552.0, + 292.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1546.0, + 1405.0, + 1546.0, + 1405.0, + 1584.0, + 292.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1581.0, + 1405.0, + 1581.0, + 1405.0, + 1613.0, + 296.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1610.0, + 1186.0, + 1610.0, + 1186.0, + 1643.0, + 292.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1610.0, + 1405.0, + 1610.0, + 1405.0, + 1643.0, + 1205.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1632.0, + 412.0, + 1632.0, + 412.0, + 1676.0, + 290.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1632.0, + 583.0, + 1632.0, + 583.0, + 1676.0, + 432.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1632.0, + 960.0, + 1632.0, + 960.0, + 1676.0, + 869.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1632.0, + 1128.0, + 1632.0, + 1128.0, + 1676.0, + 1115.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1632.0, + 1291.0, + 1632.0, + 1291.0, + 1676.0, + 1229.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1632.0, + 1406.0, + 1632.0, + 1406.0, + 1676.0, + 1394.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1670.0, + 1406.0, + 1670.0, + 1406.0, + 1705.0, + 295.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1700.0, + 365.0, + 1700.0, + 365.0, + 1736.0, + 294.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1700.0, + 558.0, + 1700.0, + 558.0, + 1736.0, + 396.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1700.0, + 1405.0, + 1700.0, + 1405.0, + 1736.0, + 577.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1733.0, + 662.0, + 1733.0, + 662.0, + 1765.0, + 296.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1350.0, + 1404.0, + 1350.0, + 1404.0, + 1383.0, + 294.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1377.0, + 1404.0, + 1377.0, + 1404.0, + 1415.0, + 293.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1410.0, + 297.0, + 1410.0, + 297.0, + 1447.0, + 293.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1410.0, + 1027.0, + 1410.0, + 1027.0, + 1447.0, + 499.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1847.0, + 371.0, + 1847.0, + 371.0, + 1887.0, + 293.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1847.0, + 473.0, + 1847.0, + 473.0, + 1887.0, + 463.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1847.0, + 623.0, + 1847.0, + 623.0, + 1887.0, + 565.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1847.0, + 1406.0, + 1847.0, + 1406.0, + 1887.0, + 647.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1914.0, + 398.0, + 1914.0, + 398.0, + 1951.0, + 290.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 753.0, + 602.0, + 753.0, + 602.0, + 798.0, + 294.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 753.0, + 1170.0, + 753.0, + 1170.0, + 798.0, + 769.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 753.0, + 1229.0, + 753.0, + 1229.0, + 798.0, + 1215.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 686.0, + 1108.0, + 686.0, + 1108.0, + 731.0, + 292.0, + 731.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1092, + 1404, + 1092, + 1404, + 1338, + 298, + 1338 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 1539, + 1403, + 1539, + 1403, + 1725, + 296, + 1725 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 923, + 1403, + 923, + 1403, + 1079, + 299, + 1079 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1431, + 1405, + 1431, + 1405, + 1524, + 299, + 1524 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1785, + 1403, + 1785, + 1403, + 1878, + 299, + 1878 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 459, + 228, + 1229, + 228, + 1229, + 573, + 459, + 573 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 607, + 1404, + 607, + 1404, + 794, + 296, + 794 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1402, + 1971, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 579, + 1737, + 1117, + 1737, + 1117, + 1776, + 579, + 1776 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 299, + 846, + 1398, + 846, + 1398, + 909, + 299, + 909 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 300, + 1914, + 798, + 1914, + 798, + 1946, + 300, + 1946 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 298, + 1374, + 875, + 1374, + 875, + 1406, + 298, + 1406 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1741, + 1399, + 1741, + 1399, + 1770, + 1366, + 1770 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.642 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.388 + }, + { + "category_id": 13, + "poly": [ + 373, + 847, + 460, + 847, + 460, + 880, + 373, + 880 + ], + "score": 0.93, + "latex": "I ( w , x )" + }, + { + "category_id": 13, + "poly": [ + 1092, + 845, + 1209, + 845, + 1209, + 881, + 1092, + 881 + ], + "score": 0.92, + "latex": "p _ { \\mathrm { p t r } } \\in \\mathbb { R } ^ { V }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1631, + 519, + 1631, + 519, + 1665, + 297, + 1665 + ], + "score": 0.91, + "latex": "\\bar { g } \\ : = \\ : p ( z _ { i } \\ : = \\ : k | x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 521, + 763, + 589, + 763, + 589, + 794, + 521, + 794 + ], + "score": 0.91, + "latex": "g = 0" + }, + { + "category_id": 13, + "poly": [ + 1221, + 732, + 1290, + 732, + 1290, + 763, + 1221, + 763 + ], + "score": 0.91, + "latex": "g = 1" + }, + { + "category_id": 14, + "poly": [ + 578, + 1736, + 1120, + 1736, + 1120, + 1775, + 578, + 1775 + ], + "score": 0.9, + "latex": "p ( y _ { i } | x _ { i } ) = g p _ { \\mathrm { v o c a b } } ( y _ { i } | x _ { i } ) + ( 1 - g ) p _ { \\mathrm { p t r } } ( y _ { i } | x _ { i } ) ." + }, + { + "category_id": 13, + "poly": [ + 604, + 1636, + 630, + 1636, + 630, + 1663, + 604, + 1663 + ], + "score": 0.86, + "latex": "z _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1302, + 1662, + 1359, + 1662, + 1359, + 1696, + 1302, + 1696 + ], + "score": 0.86, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 711, + 673, + 737, + 673, + 737, + 699, + 711, + 699 + ], + "score": 0.8, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 843, + 736, + 862, + 736, + 862, + 763, + 843, + 763 + ], + "score": 0.79, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 895, + 1668, + 914, + 1668, + 914, + 1695, + 895, + 1695 + ], + "score": 0.78, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 775, + 1980, + 791, + 1980, + 791, + 2005, + 775, + 2005 + ], + "score": 0.77, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 857, + 853, + 881, + 853, + 881, + 875, + 857, + 875 + ], + "score": 0.75, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 627, + 2010, + 644, + 2010, + 644, + 2030, + 627, + 2030 + ], + "score": 0.74, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1021, + 853, + 1041, + 853, + 1041, + 875, + 1021, + 875 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 431, + 1017, + 453, + 1017, + 453, + 1044, + 431, + 1044 + ], + "score": 0.73, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1048, + 1219, + 1048, + 1219, + 1074, + 1198, + 1074 + ], + "score": 0.72, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 816, + 987, + 838, + 987, + 838, + 1013, + 816, + 1013 + ], + "score": 0.68, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 925, + 1050, + 939, + 1050, + 939, + 1074, + 925, + 1074 + ], + "score": 0.67, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 229.0, + 1216.0, + 229.0, + 1216.0, + 253.0, + 1075.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 251.0, + 1217.0, + 251.0, + 1217.0, + 275.0, + 1071.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 297.0, + 618.0, + 297.0, + 618.0, + 322.0, + 473.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 301.0, + 978.0, + 301.0, + 978.0, + 331.0, + 859.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 286.0, + 1158.0, + 286.0, + 1158.0, + 341.0, + 1130.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 319.0, + 629.0, + 319.0, + 629.0, + 346.0, + 463.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 358.0, + 788.0, + 358.0, + 788.0, + 381.0, + 720.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 396.0, + 552.0, + 396.0, + 552.0, + 421.0, + 469.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 401.0, + 586.0, + 401.0, + 586.0, + 418.0, + 571.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 406.0, + 622.0, + 406.0, + 622.0, + 414.0, + 612.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 403.0, + 664.0, + 403.0, + 664.0, + 416.0, + 651.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 402.0, + 703.0, + 402.0, + 703.0, + 419.0, + 688.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 401.0, + 821.0, + 401.0, + 821.0, + 418.0, + 805.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 405.0, + 857.0, + 405.0, + 857.0, + 414.0, + 847.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 405.0, + 896.0, + 405.0, + 896.0, + 414.0, + 886.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 401.0, + 938.0, + 401.0, + 938.0, + 418.0, + 922.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 441.0, + 538.0, + 441.0, + 538.0, + 468.0, + 468.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 438.0, + 1077.0, + 438.0, + 1077.0, + 475.0, + 993.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 492.0, + 528.0, + 492.0, + 528.0, + 516.0, + 479.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 499.0, + 568.0, + 499.0, + 568.0, + 507.0, + 556.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 498.0, + 1048.0, + 498.0, + 1048.0, + 526.0, + 976.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 518.0, + 1208.0, + 518.0, + 1208.0, + 543.0, + 1082.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 538.0, + 544.0, + 538.0, + 544.0, + 560.0, + 471.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 546.0, + 1231.0, + 546.0, + 1231.0, + 569.0, + 1057.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 607.0, + 1405.0, + 607.0, + 1405.0, + 643.0, + 295.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 638.0, + 1406.0, + 638.0, + 1406.0, + 676.0, + 294.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 668.0, + 710.0, + 668.0, + 710.0, + 703.0, + 293.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 668.0, + 1405.0, + 668.0, + 1405.0, + 703.0, + 738.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 698.0, + 1406.0, + 698.0, + 1406.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 730.0, + 842.0, + 730.0, + 842.0, + 766.0, + 294.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 730.0, + 1220.0, + 730.0, + 1220.0, + 766.0, + 863.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 730.0, + 1404.0, + 730.0, + 1404.0, + 766.0, + 1291.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 759.0, + 520.0, + 759.0, + 520.0, + 797.0, + 294.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 759.0, + 918.0, + 759.0, + 918.0, + 797.0, + 590.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1911.0, + 802.0, + 1911.0, + 802.0, + 1952.0, + 292.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1372.0, + 881.0, + 1372.0, + 881.0, + 1410.0, + 293.0, + 1410.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": [ + 292.0, + 1090.0, + 1404.0, + 1090.0, + 1404.0, + 1130.0, + 292.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1122.0, + 1404.0, + 1122.0, + 1404.0, + 1160.0, + 293.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1153.0, + 1404.0, + 1153.0, + 1404.0, + 1190.0, + 295.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1184.0, + 1404.0, + 1184.0, + 1404.0, + 1219.0, + 293.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1215.0, + 1404.0, + 1215.0, + 1404.0, + 1251.0, + 292.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1245.0, + 1404.0, + 1245.0, + 1404.0, + 1279.0, + 293.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1277.0, + 1405.0, + 1277.0, + 1405.0, + 1311.0, + 294.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1309.0, + 747.0, + 1309.0, + 747.0, + 1342.0, + 296.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1539.0, + 1405.0, + 1539.0, + 1405.0, + 1575.0, + 296.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1571.0, + 1405.0, + 1571.0, + 1405.0, + 1606.0, + 295.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1601.0, + 1405.0, + 1601.0, + 1405.0, + 1635.0, + 292.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1631.0, + 296.0, + 1631.0, + 296.0, + 1666.0, + 290.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1631.0, + 603.0, + 1631.0, + 603.0, + 1666.0, + 520.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1631.0, + 1408.0, + 1631.0, + 1408.0, + 1666.0, + 631.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1659.0, + 894.0, + 1659.0, + 894.0, + 1698.0, + 293.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1659.0, + 1301.0, + 1659.0, + 1301.0, + 1698.0, + 915.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1659.0, + 1405.0, + 1659.0, + 1405.0, + 1698.0, + 1360.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1692.0, + 1318.0, + 1692.0, + 1318.0, + 1728.0, + 295.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 925.0, + 1405.0, + 925.0, + 1405.0, + 958.0, + 297.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 956.0, + 1404.0, + 956.0, + 1404.0, + 989.0, + 295.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 986.0, + 815.0, + 986.0, + 815.0, + 1020.0, + 295.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 986.0, + 1404.0, + 986.0, + 1404.0, + 1020.0, + 839.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1010.0, + 430.0, + 1010.0, + 430.0, + 1056.0, + 293.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1010.0, + 1405.0, + 1010.0, + 1405.0, + 1056.0, + 454.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1046.0, + 924.0, + 1046.0, + 924.0, + 1081.0, + 294.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1046.0, + 1197.0, + 1046.0, + 1197.0, + 1081.0, + 940.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1046.0, + 1304.0, + 1046.0, + 1304.0, + 1081.0, + 1220.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1429.0, + 1405.0, + 1429.0, + 1405.0, + 1468.0, + 294.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1502.0, + 293.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1492.0, + 1035.0, + 1492.0, + 1035.0, + 1528.0, + 292.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 1403.0, + 1784.0, + 1403.0, + 1822.0, + 294.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1813.0, + 1405.0, + 1813.0, + 1405.0, + 1852.0, + 293.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1846.0, + 1161.0, + 1846.0, + 1161.0, + 1883.0, + 294.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 774.0, + 1971.0, + 774.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 792.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 626.0, + 2000.0, + 626.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 2000.0, + 1406.0, + 2000.0, + 1406.0, + 2038.0, + 645.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 839.0, + 372.0, + 839.0, + 372.0, + 885.0, + 294.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 839.0, + 856.0, + 839.0, + 856.0, + 885.0, + 461.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 839.0, + 1020.0, + 839.0, + 1020.0, + 885.0, + 882.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 839.0, + 1091.0, + 839.0, + 1091.0, + 885.0, + 1042.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 839.0, + 1404.0, + 839.0, + 1404.0, + 885.0, + 1210.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 874.0, + 1359.0, + 874.0, + 1359.0, + 912.0, + 293.0, + 912.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1640, + 1405, + 1640, + 1405, + 1905, + 297, + 1905 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1434, + 1404, + 1434, + 1404, + 1626, + 298, + 1626 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1001, + 1403, + 1001, + 1403, + 1156, + 298, + 1156 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 832, + 1404, + 832, + 1404, + 987, + 298, + 987 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1171, + 1404, + 1171, + 1404, + 1325, + 298, + 1325 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 228, + 1402, + 228, + 1402, + 354, + 299, + 354 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 630, + 1404, + 630, + 1404, + 722, + 299, + 722 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 684, + 457, + 1014, + 457, + 1014, + 527, + 684, + 527 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 298, + 1949, + 1403, + 1949, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 294, + 367, + 1402, + 367, + 1402, + 432, + 294, + 432 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 299, + 551, + 1404, + 551, + 1404, + 615, + 299, + 615 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1366, + 475, + 1400, + 475, + 1400, + 505, + 1366, + 505 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 301, + 1373, + 803, + 1373, + 803, + 1405, + 301, + 1405 + ], + "score": 0.852 + }, + { + "category_id": 0, + "poly": [ + 299, + 771, + 1029, + 771, + 1029, + 804, + 299, + 804 + ], + "score": 0.789 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 299, + 771, + 1029, + 771, + 1029, + 804, + 299, + 804 + ], + "score": 0.121 + }, + { + "category_id": 14, + "poly": [ + 683, + 454, + 1014, + 454, + 1014, + 527, + 683, + 527 + ], + "score": 0.95, + "latex": "p _ { \\mathrm { p t r } } ( y _ { i } | x _ { i } ) = \\frac { 1 } { 1 - g } a [ 1 : V ] ," + }, + { + "category_id": 13, + "poly": [ + 800, + 1533, + 893, + 1533, + 893, + 1567, + 800, + 1567 + ], + "score": 0.93, + "latex": "p ( y _ { i } | x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 962, + 321, + 1115, + 321, + 1115, + 355, + 962, + 355 + ], + "score": 0.92, + "latex": "g = a [ V + 1 ]" + }, + { + "category_id": 13, + "poly": [ + 999, + 1711, + 1080, + 1711, + 1080, + 1746, + 999, + 1746 + ], + "score": 0.92, + "latex": "I ( y , x )" + }, + { + "category_id": 13, + "poly": [ + 1234, + 1471, + 1305, + 1471, + 1305, + 1507, + 1234, + 1507 + ], + "score": 0.92, + "latex": "p ( y _ { i j } )" + }, + { + "category_id": 13, + "poly": [ + 507, + 552, + 584, + 552, + 584, + 585, + 507, + 585 + ], + "score": 0.92, + "latex": "[ 1 : V ]" + }, + { + "category_id": 13, + "poly": [ + 1174, + 259, + 1295, + 259, + 1295, + 290, + 1174, + 290 + ], + "score": 0.91, + "latex": "a \\in \\mathbb { R } ^ { V + 1 }" + }, + { + "category_id": 13, + "poly": [ + 745, + 1435, + 998, + 1435, + 998, + 1475, + 745, + 1475 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { - \\sum _ { j } \\hat { y _ { i j } } \\log p \\big ( y _ { i j } | x _ { i } \\big ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 635, + 1702, + 913, + 1702, + 913, + 1757, + 635, + 1757 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { - \\log \\left( g + \\sum _ { i \\in I ( y , x ) } a _ { i } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 766, + 1234, + 834, + 1234, + 834, + 1265, + 766, + 1265 + ], + "score": 0.91, + "latex": "h _ { N - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1154, + 228, + 1247, + 228, + 1247, + 259, + 1154, + 259 + ], + "score": 0.91, + "latex": "s \\in \\mathbb { R } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 727, + 1474, + 752, + 1474, + 752, + 1504, + 727, + 1504 + ], + "score": 0.88, + "latex": "\\hat { y } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 501, + 1784, + 528, + 1784, + 528, + 1815, + 501, + 1815 + ], + "score": 0.87, + "latex": "\\hat { y } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1088, + 1438, + 1114, + 1438, + 1114, + 1469, + 1088, + 1469 + ], + "score": 0.87, + "latex": "\\hat { y } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 677, + 1673, + 703, + 1673, + 703, + 1703, + 677, + 1703 + ], + "score": 0.86, + "latex": "\\hat { y } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 774, + 553, + 800, + 553, + 800, + 580, + 774, + 580 + ], + "score": 0.81, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 679, + 375, + 698, + 375, + 698, + 401, + 679, + 401 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 675, + 1565, + 697, + 1565, + 697, + 1591, + 675, + 1591 + ], + "score": 0.8, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1075, + 1535, + 1097, + 1535, + 1097, + 1561, + 1075, + 1561 + ], + "score": 0.8, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 463, + 1757, + 482, + 1757, + 482, + 1784, + 463, + 1784 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 819, + 1004, + 842, + 1004, + 842, + 1030, + 819, + 1030 + ], + "score": 0.78, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 922, + 259, + 1036, + 259, + 1036, + 296, + 922, + 296 + ], + "score": 0.76, + "latex": "\\left( \\left[ z ; q ^ { T } s \\right] \\right)" + }, + { + "category_id": 13, + "poly": [ + 772, + 1759, + 791, + 1759, + 791, + 1784, + 772, + 1784 + ], + "score": 0.76, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 627, + 1759, + 646, + 1759, + 646, + 1779, + 627, + 1779 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1152, + 1849, + 1170, + 1849, + 1170, + 1875, + 1152, + 1875 + ], + "score": 0.69, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1224, + 1565, + 1246, + 1565, + 1246, + 1591, + 1224, + 1591 + ], + "score": 0.68, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 762, + 264, + 814, + 264, + 814, + 290, + 762, + 290 + ], + "score": 0.62, + "latex": "a =" + }, + { + "category_id": 13, + "poly": [ + 298, + 1239, + 314, + 1239, + 314, + 1265, + 298, + 1265 + ], + "score": 0.59, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 762, + 260, + 1036, + 260, + 1036, + 296, + 762, + 296 + ], + "score": 0.26, + "latex": "a = \\operatorname { \\bar { s o f t m a x } } \\left( \\left[ z ; q ^ { T } s \\right] \\right)" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1943.0, + 1408.0, + 1943.0, + 1408.0, + 1983.0, + 327.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1979.0, + 1404.0, + 1979.0, + 1404.0, + 2008.0, + 296.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2005.0, + 711.0, + 2005.0, + 711.0, + 2038.0, + 294.0, + 2038.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": [ + 296.0, + 1372.0, + 806.0, + 1372.0, + 806.0, + 1409.0, + 296.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 771.0, + 1030.0, + 771.0, + 1030.0, + 807.0, + 295.0, + 807.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": [ + 295.0, + 1642.0, + 1403.0, + 1642.0, + 1403.0, + 1674.0, + 295.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1670.0, + 676.0, + 1670.0, + 676.0, + 1705.0, + 294.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1670.0, + 1403.0, + 1670.0, + 1403.0, + 1705.0, + 704.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1699.0, + 634.0, + 1699.0, + 634.0, + 1761.0, + 287.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1699.0, + 998.0, + 1699.0, + 998.0, + 1761.0, + 914.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1699.0, + 1411.0, + 1699.0, + 1411.0, + 1761.0, + 1081.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1750.0, + 462.0, + 1750.0, + 462.0, + 1789.0, + 292.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1750.0, + 626.0, + 1750.0, + 626.0, + 1789.0, + 483.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1750.0, + 771.0, + 1750.0, + 771.0, + 1789.0, + 647.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1750.0, + 1406.0, + 1750.0, + 1406.0, + 1789.0, + 792.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1780.0, + 500.0, + 1780.0, + 500.0, + 1818.0, + 291.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1780.0, + 1406.0, + 1780.0, + 1406.0, + 1818.0, + 529.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1812.0, + 1406.0, + 1812.0, + 1406.0, + 1847.0, + 294.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1841.0, + 1151.0, + 1841.0, + 1151.0, + 1879.0, + 291.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1841.0, + 1406.0, + 1841.0, + 1406.0, + 1879.0, + 1171.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1873.0, + 1383.0, + 1873.0, + 1383.0, + 1908.0, + 292.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1432.0, + 744.0, + 1432.0, + 744.0, + 1477.0, + 293.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1432.0, + 1087.0, + 1432.0, + 1087.0, + 1477.0, + 999.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1432.0, + 1409.0, + 1432.0, + 1409.0, + 1477.0, + 1115.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1471.0, + 726.0, + 1471.0, + 726.0, + 1508.0, + 293.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1471.0, + 1233.0, + 1471.0, + 1233.0, + 1508.0, + 753.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1508.0, + 1306.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1501.0, + 1406.0, + 1501.0, + 1406.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1534.0, + 799.0, + 1534.0, + 799.0, + 1568.0, + 293.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1534.0, + 1074.0, + 1534.0, + 1074.0, + 1568.0, + 894.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1534.0, + 1406.0, + 1534.0, + 1406.0, + 1568.0, + 1098.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1559.0, + 674.0, + 1559.0, + 674.0, + 1602.0, + 291.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1559.0, + 1223.0, + 1559.0, + 1223.0, + 1602.0, + 698.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1559.0, + 1406.0, + 1559.0, + 1406.0, + 1602.0, + 1247.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1594.0, + 1247.0, + 1594.0, + 1247.0, + 1628.0, + 292.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1003.0, + 818.0, + 1003.0, + 818.0, + 1036.0, + 296.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1003.0, + 1404.0, + 1003.0, + 1404.0, + 1036.0, + 843.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1033.0, + 1404.0, + 1033.0, + 1404.0, + 1067.0, + 296.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1064.0, + 1404.0, + 1064.0, + 1404.0, + 1097.0, + 296.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1092.0, + 1404.0, + 1092.0, + 1404.0, + 1130.0, + 294.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1121.0, + 1366.0, + 1121.0, + 1366.0, + 1164.0, + 291.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 834.0, + 1406.0, + 834.0, + 1406.0, + 871.0, + 296.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 863.0, + 1406.0, + 863.0, + 1406.0, + 900.0, + 294.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 895.0, + 1405.0, + 895.0, + 1405.0, + 928.0, + 296.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 924.0, + 1405.0, + 924.0, + 1405.0, + 961.0, + 294.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 953.0, + 865.0, + 953.0, + 865.0, + 991.0, + 294.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1173.0, + 1404.0, + 1173.0, + 1404.0, + 1206.0, + 296.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1198.0, + 1405.0, + 1198.0, + 1405.0, + 1241.0, + 292.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1231.0, + 297.0, + 1231.0, + 297.0, + 1268.0, + 292.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1231.0, + 765.0, + 1231.0, + 765.0, + 1268.0, + 315.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 1231.0, + 1407.0, + 1231.0, + 1407.0, + 1268.0, + 835.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1263.0, + 1405.0, + 1263.0, + 1405.0, + 1298.0, + 293.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1293.0, + 1389.0, + 1293.0, + 1389.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 224.0, + 1153.0, + 224.0, + 1153.0, + 267.0, + 290.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 224.0, + 1409.0, + 224.0, + 1409.0, + 267.0, + 1248.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 258.0, + 761.0, + 258.0, + 761.0, + 297.0, + 290.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 258.0, + 1173.0, + 258.0, + 1173.0, + 297.0, + 1037.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 258.0, + 1409.0, + 258.0, + 1409.0, + 297.0, + 1296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 323.0, + 294.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 961.0, + 319.0, + 961.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 319.0, + 1127.0, + 319.0, + 1127.0, + 357.0, + 1116.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 629.0, + 1406.0, + 629.0, + 1406.0, + 666.0, + 294.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 1404.0, + 660.0, + 1404.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 692.0, + 1401.0, + 692.0, + 1401.0, + 725.0, + 295.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 367.0, + 678.0, + 367.0, + 678.0, + 403.0, + 297.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 367.0, + 1405.0, + 367.0, + 1405.0, + 403.0, + 699.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 401.0, + 1354.0, + 401.0, + 1354.0, + 433.0, + 297.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 551.0, + 506.0, + 551.0, + 506.0, + 583.0, + 298.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 551.0, + 773.0, + 551.0, + 773.0, + 583.0, + 585.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 551.0, + 1401.0, + 551.0, + 1401.0, + 583.0, + 801.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 582.0, + 1054.0, + 582.0, + 1054.0, + 618.0, + 295.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 771.0, + 1030.0, + 771.0, + 1030.0, + 807.0, + 295.0, + 807.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1499, + 1403, + 1499, + 1403, + 1805, + 298, + 1805 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 367, + 224, + 1327, + 224, + 1327, + 441, + 367, + 441 + ], + "score": 0.981, + "html": "
Penn Treebank TestWikiText-2 TestWikiText-103
Train ValidTrain ValidTrain Valid
Articles---600606028,47560Test 60
Tokens929k73k 10,00082k2,088k217k245k103,227k217k245k
Vocab size OoV rate4.8%33,278 2.6%267,735 0.4%
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1402, + 1819, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 677, + 1404, + 677, + 1404, + 892, + 298, + 892 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1192, + 1403, + 1192, + 1403, + 1315, + 299, + 1315 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1330, + 1403, + 1330, + 1403, + 1484, + 299, + 1484 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 906, + 1403, + 906, + 1403, + 1000, + 300, + 1000 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1114, + 1401, + 1114, + 1401, + 1176, + 297, + 1176 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 301, + 1043, + 587, + 1043, + 587, + 1079, + 301, + 1079 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 302, + 620, + 838, + 620, + 838, + 652, + 302, + 652 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 814, + 75, + 814, + 105, + 299, + 105 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.732 + }, + { + "category_id": 6, + "poly": [ + 299, + 462, + 1403, + 462, + 1403, + 555, + 299, + 555 + ], + "score": 0.31 + }, + { + "category_id": 13, + "poly": [ + 720, + 767, + 863, + 767, + 863, + 797, + 720, + 797 + ], + "score": 0.93, + "latex": "\\dot { W } \\in \\mathbb { R } ^ { H \\times H }" + }, + { + "category_id": 13, + "poly": [ + 866, + 829, + 983, + 829, + 983, + 860, + 866, + 860 + ], + "score": 0.92, + "latex": "H ^ { 2 } + 2 H \\bar { }" + }, + { + "category_id": 13, + "poly": [ + 532, + 859, + 659, + 859, + 659, + 890, + 532, + 890 + ], + "score": 0.92, + "latex": "8 H ^ { 2 } + 4 \\dot { H }" + }, + { + "category_id": 13, + "poly": [ + 914, + 768, + 1002, + 768, + 1002, + 798, + 914, + 798 + ], + "score": 0.91, + "latex": "\\bar { b } \\in \\mathbb { R } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 298, + 798, + 388, + 798, + 388, + 828, + 298, + 828 + ], + "score": 0.91, + "latex": "s \\in \\mathbb { R } ^ { H }" + }, + { + "category_id": 13, + "poly": [ + 1068, + 493, + 1138, + 493, + 1138, + 527, + 1068, + 527 + ], + "score": 0.86, + "latex": "\\left. u n k \\right." + }, + { + "category_id": 13, + "poly": [ + 791, + 970, + 813, + 970, + 813, + 996, + 791, + 996 + ], + "score": 0.8, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1160, + 909, + 1183, + 909, + 1183, + 935, + 1160, + 935 + ], + "score": 0.76, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 494, + 944, + 512, + 944, + 512, + 971, + 494, + 971 + ], + "score": 0.76, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1059, + 940, + 1081, + 940, + 1081, + 966, + 1059, + 966 + ], + "score": 0.75, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 559, + 775, + 577, + 775, + 577, + 802, + 559, + 802 + ], + "score": 0.67, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 298, + 494, + 371, + 494, + 371, + 525, + 298, + 525 + ], + "score": 0.37, + "latex": "\\left( \\mathrm { O o V } \\right)" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1040.0, + 594.0, + 1040.0, + 594.0, + 1087.0, + 291.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 618.0, + 843.0, + 618.0, + 843.0, + 656.0, + 295.0, + 656.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, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 457.0, + 1404.0, + 457.0, + 1404.0, + 499.0, + 293.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 495.0, + 1067.0, + 495.0, + 1067.0, + 525.0, + 372.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 495.0, + 1404.0, + 495.0, + 1404.0, + 525.0, + 1139.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 523.0, + 1076.0, + 523.0, + 1076.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1534.0, + 294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1530.0, + 1404.0, + 1530.0, + 1404.0, + 1562.0, + 296.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1561.0, + 1403.0, + 1561.0, + 1403.0, + 1592.0, + 296.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1591.0, + 1404.0, + 1591.0, + 1404.0, + 1623.0, + 297.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1622.0, + 1404.0, + 1622.0, + 1404.0, + 1653.0, + 296.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1648.0, + 1407.0, + 1648.0, + 1407.0, + 1688.0, + 292.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1681.0, + 1403.0, + 1681.0, + 1403.0, + 1713.0, + 296.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1710.0, + 1407.0, + 1710.0, + 1407.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1403.0, + 1743.0, + 1403.0, + 1775.0, + 294.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1771.0, + 1230.0, + 1771.0, + 1230.0, + 1808.0, + 293.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1854.0, + 296.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1915.0, + 293.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1946.0, + 292.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 1406.0, + 1938.0, + 1406.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 1125.0, + 2003.0, + 1125.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 679.0, + 1405.0, + 679.0, + 1405.0, + 713.0, + 296.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 709.0, + 1404.0, + 709.0, + 1404.0, + 744.0, + 294.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 738.0, + 1405.0, + 738.0, + 1405.0, + 775.0, + 292.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 760.0, + 558.0, + 760.0, + 558.0, + 812.0, + 287.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 760.0, + 719.0, + 760.0, + 719.0, + 812.0, + 578.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 760.0, + 913.0, + 760.0, + 913.0, + 812.0, + 864.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 760.0, + 1409.0, + 760.0, + 1409.0, + 812.0, + 1003.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 791.0, + 297.0, + 791.0, + 297.0, + 839.0, + 287.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 791.0, + 1409.0, + 791.0, + 1409.0, + 839.0, + 389.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 829.0, + 865.0, + 829.0, + 865.0, + 867.0, + 293.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 829.0, + 1409.0, + 829.0, + 1409.0, + 867.0, + 984.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 857.0, + 531.0, + 857.0, + 531.0, + 899.0, + 293.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 857.0, + 1306.0, + 857.0, + 1306.0, + 899.0, + 660.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1190.0, + 1405.0, + 1190.0, + 1405.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 1405.0, + 1221.0, + 1405.0, + 1257.0, + 294.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1255.0, + 1404.0, + 1255.0, + 1404.0, + 1285.0, + 294.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1285.0, + 1328.0, + 1285.0, + 1328.0, + 1317.0, + 294.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1330.0, + 1405.0, + 1330.0, + 1405.0, + 1363.0, + 297.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1357.0, + 1405.0, + 1357.0, + 1405.0, + 1395.0, + 294.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 1404.0, + 1391.0, + 1404.0, + 1424.0, + 295.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1419.0, + 1404.0, + 1419.0, + 1404.0, + 1455.0, + 295.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1448.0, + 1132.0, + 1448.0, + 1132.0, + 1488.0, + 293.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 904.0, + 1159.0, + 904.0, + 1159.0, + 942.0, + 294.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 904.0, + 1403.0, + 904.0, + 1403.0, + 942.0, + 1184.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 940.0, + 493.0, + 940.0, + 493.0, + 971.0, + 294.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 940.0, + 1058.0, + 940.0, + 1058.0, + 971.0, + 513.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 940.0, + 1405.0, + 940.0, + 1405.0, + 971.0, + 1082.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 970.0, + 790.0, + 970.0, + 790.0, + 1000.0, + 296.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 970.0, + 1290.0, + 970.0, + 1290.0, + 1000.0, + 814.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1113.0, + 1405.0, + 1113.0, + 1405.0, + 1149.0, + 297.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1144.0, + 1072.0, + 1144.0, + 1072.0, + 1179.0, + 295.0, + 1179.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 230, + 1403, + 230, + 1403, + 658, + 299, + 658 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 299, + 1463, + 1403, + 1463, + 1403, + 1679, + 299, + 1679 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 673, + 1403, + 673, + 1403, + 887, + 298, + 887 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1156, + 1404, + 1156, + 1404, + 1370, + 298, + 1370 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 1694, + 1403, + 1694, + 1403, + 1847, + 300, + 1847 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1402, + 1942, + 1402, + 2033, + 301, + 2033 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1000, + 1401, + 1000, + 1401, + 1061, + 297, + 1061 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 299, + 1099, + 572, + 1099, + 572, + 1130, + 299, + 1130 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 302, + 1407, + 739, + 1407, + 739, + 1437, + 302, + 1437 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 302, + 1885, + 828, + 1885, + 828, + 1915, + 302, + 1915 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 301, + 931, + 1161, + 931, + 1161, + 966, + 301, + 966 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.763 + }, + { + "category_id": 13, + "poly": [ + 881, + 1279, + 943, + 1279, + 943, + 1311, + 881, + 1311 + ], + "score": 0.88, + "latex": "\\langle e o s \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1309, + 1275, + 1309, + 1275, + 1342, + 1204, + 1342 + ], + "score": 0.77, + "latex": "\\left. u n k \\right." + }, + { + "category_id": 13, + "poly": [ + 1190, + 1219, + 1236, + 1219, + 1236, + 1247, + 1190, + 1247 + ], + "score": 0.32, + "latex": "{ } ^ { 8 2 \\mathrm { k } }" + }, + { + "category_id": 13, + "poly": [ + 969, + 1218, + 1016, + 1218, + 1016, + 1247, + 969, + 1247 + ], + "score": 0.31, + "latex": "7 3 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 808, + 1218, + 868, + 1218, + 868, + 1247, + 808, + 1247 + ], + "score": 0.31, + "latex": "9 2 9 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1094.0, + 576.0, + 1094.0, + 576.0, + 1135.0, + 293.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1406.0, + 744.0, + 1406.0, + 744.0, + 1441.0, + 295.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 833.0, + 1884.0, + 833.0, + 1919.0, + 295.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 931.0, + 1165.0, + 931.0, + 1165.0, + 971.0, + 293.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 1405.0, + 289.0, + 1405.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1407.0, + 321.0, + 1407.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 1405.0, + 351.0, + 1405.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 416.0, + 294.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 414.0, + 1407.0, + 414.0, + 1407.0, + 448.0, + 293.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 444.0, + 1404.0, + 444.0, + 1404.0, + 476.0, + 295.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 474.0, + 1407.0, + 474.0, + 1407.0, + 509.0, + 293.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 504.0, + 1407.0, + 504.0, + 1407.0, + 538.0, + 294.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 534.0, + 1405.0, + 534.0, + 1405.0, + 570.0, + 293.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 565.0, + 1405.0, + 565.0, + 1405.0, + 600.0, + 292.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 594.0, + 1407.0, + 594.0, + 1407.0, + 631.0, + 293.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 626.0, + 845.0, + 626.0, + 845.0, + 661.0, + 294.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1462.0, + 1403.0, + 1462.0, + 1403.0, + 1501.0, + 294.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1494.0, + 1405.0, + 1494.0, + 1405.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1527.0, + 1404.0, + 1527.0, + 1404.0, + 1557.0, + 295.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1556.0, + 1405.0, + 1556.0, + 1405.0, + 1591.0, + 293.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1585.0, + 1404.0, + 1585.0, + 1404.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1617.0, + 1403.0, + 1617.0, + 1403.0, + 1654.0, + 294.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1649.0, + 1395.0, + 1649.0, + 1395.0, + 1683.0, + 294.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1407.0, + 672.0, + 1407.0, + 710.0, + 293.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 704.0, + 1405.0, + 704.0, + 1405.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 735.0, + 1405.0, + 735.0, + 1405.0, + 769.0, + 296.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 762.0, + 1408.0, + 762.0, + 1408.0, + 802.0, + 292.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 794.0, + 1407.0, + 794.0, + 1407.0, + 832.0, + 292.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 823.0, + 1405.0, + 823.0, + 1405.0, + 863.0, + 292.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 855.0, + 1403.0, + 855.0, + 1403.0, + 892.0, + 294.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1154.0, + 1405.0, + 1154.0, + 1405.0, + 1191.0, + 292.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 1402.0, + 1187.0, + 1402.0, + 1221.0, + 294.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1216.0, + 807.0, + 1216.0, + 807.0, + 1251.0, + 294.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1216.0, + 968.0, + 1216.0, + 968.0, + 1251.0, + 869.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1216.0, + 1189.0, + 1216.0, + 1189.0, + 1251.0, + 1017.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1216.0, + 1404.0, + 1216.0, + 1404.0, + 1251.0, + 1237.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1248.0, + 1404.0, + 1248.0, + 1404.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1278.0, + 880.0, + 1278.0, + 880.0, + 1312.0, + 294.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 1278.0, + 1402.0, + 1278.0, + 1402.0, + 1312.0, + 944.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1203.0, + 1308.0, + 1203.0, + 1343.0, + 294.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1308.0, + 1405.0, + 1308.0, + 1405.0, + 1343.0, + 1276.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1340.0, + 635.0, + 1340.0, + 635.0, + 1371.0, + 296.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1693.0, + 1403.0, + 1693.0, + 1403.0, + 1730.0, + 296.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1726.0, + 1403.0, + 1726.0, + 1403.0, + 1759.0, + 296.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1755.0, + 1405.0, + 1755.0, + 1405.0, + 1792.0, + 295.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1786.0, + 1404.0, + 1786.0, + 1404.0, + 1819.0, + 295.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1814.0, + 1008.0, + 1814.0, + 1008.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1977.0, + 296.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 1406.0, + 2001.0, + 1406.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 997.0, + 1403.0, + 997.0, + 1403.0, + 1036.0, + 295.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1028.0, + 913.0, + 1028.0, + 913.0, + 1064.0, + 293.0, + 1064.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 338, + 1403, + 338, + 1403, + 553, + 298, + 553 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 787, + 1402, + 787, + 1402, + 911, + 299, + 911 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1086, + 1403, + 1086, + 1403, + 1270, + 298, + 1270 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1546, + 1402, + 1546, + 1402, + 1668, + 299, + 1668 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 650, + 1403, + 650, + 1403, + 772, + 299, + 772 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1766, + 1403, + 1766, + 1403, + 1950, + 298, + 1950 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1286, + 1403, + 1286, + 1403, + 1531, + 298, + 1531 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1400, + 229, + 1400, + 323, + 298, + 323 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1403, + 1977, + 1403, + 2034, + 296, + 2034 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 301, + 1028, + 598, + 1028, + 598, + 1060, + 301, + 1060 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 300, + 957, + 557, + 957, + 557, + 993, + 300, + 993 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 299, + 592, + 501, + 592, + 501, + 623, + 299, + 623 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 300, + 1708, + 568, + 1708, + 568, + 1738, + 300, + 1738 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.701 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2111, + 841, + 2111 + ], + "score": 0.129 + }, + { + "category_id": 13, + "poly": [ + 653, + 1577, + 739, + 1577, + 739, + 1607, + 653, + 1607 + ], + "score": 0.92, + "latex": "k _ { 2 } = L" + }, + { + "category_id": 13, + "poly": [ + 523, + 1577, + 604, + 1577, + 604, + 1607, + 523, + 1607 + ], + "score": 0.92, + "latex": "k _ { 1 } = 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 1409, + 391, + 1409, + 391, + 1439, + 297, + 1439 + ], + "score": 0.92, + "latex": "k _ { 1 } = k _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 623, + 1379, + 653, + 1379, + 653, + 1408, + 623, + 1408 + ], + "score": 0.87, + "latex": "k _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 339, + 1379, + 369, + 1379, + 369, + 1408, + 339, + 1408 + ], + "score": 0.87, + "latex": "k _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 888, + 521, + 959, + 521, + 959, + 555, + 888, + 555 + ], + "score": 0.84, + "latex": "\\left. u n k \\right." + }, + { + "category_id": 13, + "poly": [ + 1100, + 1440, + 1119, + 1440, + 1119, + 1466, + 1100, + 1466 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 619, + 1410, + 638, + 1410, + 638, + 1435, + 619, + 1435 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 298, + 1609, + 320, + 1609, + 320, + 1635, + 298, + 1635 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1501, + 1042, + 1501, + 1042, + 1527, + 1023, + 1527 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1197, + 1088, + 1220, + 1088, + 1220, + 1114, + 1197, + 1114 + ], + "score": 0.77, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1409, + 1181, + 1409, + 1181, + 1435, + 1162, + 1435 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1548, + 1191, + 1548, + 1191, + 1574, + 1169, + 1574 + ], + "score": 0.76, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 853, + 1548, + 876, + 1548, + 876, + 1574, + 853, + 1574 + ], + "score": 0.75, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1372, + 1798, + 1393, + 1798, + 1393, + 1825, + 1372, + 1825 + ], + "score": 0.73, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 613, + 400, + 680, + 400, + 680, + 431, + 613, + 431 + ], + "score": 0.7, + "latex": "\\mathrm { { I A T } _ { E } X }" + }, + { + "category_id": 13, + "poly": [ + 579, + 461, + 835, + 461, + 835, + 491, + 579, + 491 + ], + "score": 0.7, + "latex": "( 8 , 6 0 0 8 \\ \\textcircled { \\omega } , @ \\ 6 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 965, + 400, + 1094, + 400, + 1094, + 433, + 965, + 433 + ], + "score": 0.3, + "latex": "\\langle f o r m u l a \\rangle" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2014.0, + 329.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1091.0, + 2002.0, + 1091.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1024.0, + 604.0, + 1024.0, + 604.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 954.0, + 562.0, + 954.0, + 562.0, + 1000.0, + 291.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 588.0, + 506.0, + 588.0, + 506.0, + 627.0, + 293.0, + 627.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": [ + 294.0, + 1706.0, + 572.0, + 1706.0, + 572.0, + 1744.0, + 294.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 337.0, + 1405.0, + 337.0, + 1405.0, + 370.0, + 294.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 369.0, + 1403.0, + 369.0, + 1403.0, + 400.0, + 294.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 399.0, + 612.0, + 399.0, + 612.0, + 433.0, + 294.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 399.0, + 964.0, + 399.0, + 964.0, + 433.0, + 681.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 399.0, + 1404.0, + 399.0, + 1404.0, + 433.0, + 1095.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 1405.0, + 428.0, + 1405.0, + 464.0, + 293.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 457.0, + 578.0, + 457.0, + 578.0, + 497.0, + 292.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 457.0, + 1407.0, + 457.0, + 1407.0, + 497.0, + 836.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 489.0, + 1407.0, + 489.0, + 1407.0, + 524.0, + 293.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 519.0, + 887.0, + 519.0, + 887.0, + 558.0, + 295.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 519.0, + 1361.0, + 519.0, + 1361.0, + 558.0, + 960.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 1404.0, + 786.0, + 1404.0, + 822.0, + 294.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 820.0, + 1404.0, + 820.0, + 1404.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 848.0, + 1406.0, + 848.0, + 1406.0, + 882.0, + 294.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 879.0, + 1356.0, + 879.0, + 1356.0, + 915.0, + 294.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1085.0, + 1196.0, + 1085.0, + 1196.0, + 1121.0, + 296.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1085.0, + 1404.0, + 1085.0, + 1404.0, + 1121.0, + 1221.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1117.0, + 1405.0, + 1117.0, + 1405.0, + 1153.0, + 294.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1149.0, + 1404.0, + 1149.0, + 1404.0, + 1181.0, + 296.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1178.0, + 1405.0, + 1178.0, + 1405.0, + 1213.0, + 293.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1208.0, + 1405.0, + 1208.0, + 1405.0, + 1244.0, + 294.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1240.0, + 1405.0, + 1240.0, + 1405.0, + 1276.0, + 294.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1546.0, + 852.0, + 1546.0, + 852.0, + 1582.0, + 293.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1546.0, + 1168.0, + 1546.0, + 1168.0, + 1582.0, + 877.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1546.0, + 1406.0, + 1546.0, + 1406.0, + 1582.0, + 1192.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1575.0, + 522.0, + 1575.0, + 522.0, + 1612.0, + 292.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1575.0, + 652.0, + 1575.0, + 652.0, + 1612.0, + 605.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1575.0, + 1406.0, + 1575.0, + 1406.0, + 1612.0, + 740.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 297.0, + 1606.0, + 297.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1606.0, + 1404.0, + 1606.0, + 1404.0, + 1643.0, + 321.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1637.0, + 763.0, + 1637.0, + 763.0, + 1672.0, + 294.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 650.0, + 1407.0, + 650.0, + 1407.0, + 682.0, + 295.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 1405.0, + 680.0, + 1405.0, + 713.0, + 293.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 711.0, + 1407.0, + 711.0, + 1407.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 742.0, + 1315.0, + 742.0, + 1315.0, + 776.0, + 293.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1767.0, + 1404.0, + 1767.0, + 1404.0, + 1798.0, + 296.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1798.0, + 1371.0, + 1798.0, + 1371.0, + 1830.0, + 294.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1798.0, + 1404.0, + 1798.0, + 1404.0, + 1830.0, + 1394.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1824.0, + 1403.0, + 1824.0, + 1403.0, + 1863.0, + 292.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1894.0, + 293.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1886.0, + 1405.0, + 1886.0, + 1405.0, + 1923.0, + 293.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1915.0, + 1405.0, + 1915.0, + 1405.0, + 1953.0, + 294.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1284.0, + 1407.0, + 1284.0, + 1407.0, + 1322.0, + 293.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1315.0, + 1405.0, + 1315.0, + 1405.0, + 1351.0, + 292.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1382.0, + 292.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1377.0, + 338.0, + 1377.0, + 338.0, + 1413.0, + 292.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1377.0, + 622.0, + 1377.0, + 622.0, + 1413.0, + 370.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 1377.0, + 1405.0, + 1377.0, + 1405.0, + 1413.0, + 654.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1406.0, + 296.0, + 1406.0, + 296.0, + 1444.0, + 291.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1406.0, + 618.0, + 1406.0, + 618.0, + 1444.0, + 392.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1406.0, + 1161.0, + 1406.0, + 1161.0, + 1444.0, + 639.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1406.0, + 1407.0, + 1406.0, + 1407.0, + 1444.0, + 1182.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1436.0, + 1099.0, + 1436.0, + 1099.0, + 1474.0, + 292.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1436.0, + 1407.0, + 1436.0, + 1407.0, + 1474.0, + 1120.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1470.0, + 1405.0, + 1470.0, + 1405.0, + 1503.0, + 294.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1498.0, + 1022.0, + 1498.0, + 1022.0, + 1537.0, + 292.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1498.0, + 1163.0, + 1498.0, + 1163.0, + 1537.0, + 1043.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1402.0, + 230.0, + 1402.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 1142.0, + 289.0, + 1142.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1411, + 1403, + 1411, + 1403, + 1717, + 298, + 1717 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 326, + 225, + 1368, + 225, + 1368, + 788, + 326, + 788 + ], + "score": 0.982, + "html": "
ModelParametersValidationTest
Mikolov & Zweig (2012) - KN-52M141.2
Mikolov & Zweig (2012) - KN5 + cache2M125.7
Mikolov&Zweig g(2012) -RNN6M124.7
Mikolov&Zweig g(2012)-RNN-LDA7M113.7
Mikolov & Zweig ( g(2012) - RNN-LDA + KN-5 +cache9M92.0
Pascanu et al. (2013a) - Deep RNN6M107.5
Cheng et al. (2014) - Sum-Prod Net5Mt100.0
Zaremba et al. (2014) - LSTM (medium) Zaremba et al. (2014) - LSTM (large)20M86.282.7
Gal (2015) - Variational LSTM (medium, untied)66M82.278.4
Gal (2015) - Variational LSTM (medium,untied, MC)20M 20M81.9 ± 0.279.7 ± 0.1
Gal (2015) - Variational LSTM (large,untied)66M78.6 ±0.1
Gal (2015) - Variational LSTM (large,untied, MC)77.9 ± 0.375.2 ± 0.2
Kim etal. (2016) - CharCNN66M 19M173.4± 0.0
Zilly et al. (2016) - Variational RHN32M78.9
72.871.3
Zoneout + Variational LSTM (medium)20M84.480.6
Pointer Sentinel-LSTM (medium)21M72.470.9
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1082, + 1403, + 1082, + 1403, + 1297, + 298, + 1297 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 1734, + 1403, + 1734, + 1403, + 1856, + 300, + 1856 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 296, + 1005, + 1400, + 1005, + 1400, + 1066, + 296, + 1066 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1403, + 1972, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 302, + 1908, + 755, + 1908, + 755, + 1939, + 302, + 1939 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 301, + 1348, + 809, + 1348, + 809, + 1380, + 301, + 1380 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.781 + }, + { + "category_id": 6, + "poly": [ + 297, + 811, + 1404, + 811, + 1404, + 934, + 297, + 934 + ], + "score": 0.681 + }, + { + "category_id": 1, + "poly": [ + 297, + 811, + 1404, + 811, + 1404, + 934, + 297, + 934 + ], + "score": 0.185 + }, + { + "category_id": 13, + "poly": [ + 741, + 1795, + 846, + 1795, + 846, + 1823, + 741, + 1823 + ], + "score": 0.89, + "latex": "L = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 1796, + 320, + 1796, + 320, + 1822, + 298, + 1822 + ], + "score": 0.78, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1232, + 874, + 1251, + 874, + 1251, + 905, + 1232, + 905 + ], + "score": 0.73, + "latex": "^ \\ddag" + }, + { + "category_id": 13, + "poly": [ + 674, + 312, + 695, + 312, + 695, + 334, + 674, + 334 + ], + "score": 0.51, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 737, + 403, + 759, + 403, + 759, + 425, + 737, + 425 + ], + "score": 0.51, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 435, + 725, + 456, + 725, + 456, + 747, + 435, + 747 + ], + "score": 0.5, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1905.0, + 761.0, + 1905.0, + 761.0, + 1944.0, + 294.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 815.0, + 1345.0, + 815.0, + 1385.0, + 293.0, + 1385.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, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 811.0, + 1404.0, + 811.0, + 1404.0, + 843.0, + 295.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 877.0, + 292.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 1231.0, + 871.0, + 1231.0, + 905.0, + 292.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 871.0, + 1405.0, + 871.0, + 1405.0, + 905.0, + 1252.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 902.0, + 1231.0, + 902.0, + 1231.0, + 938.0, + 294.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 1405.0, + 1442.0, + 1405.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1473.0, + 1405.0, + 1473.0, + 1405.0, + 1508.0, + 294.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1536.0, + 1404.0, + 1536.0, + 1404.0, + 1568.0, + 296.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1565.0, + 1403.0, + 1565.0, + 1403.0, + 1601.0, + 294.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1629.0, + 293.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1627.0, + 1402.0, + 1627.0, + 1402.0, + 1659.0, + 296.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 1405.0, + 1657.0, + 1405.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 784.0, + 1687.0, + 784.0, + 1720.0, + 294.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1080.0, + 1405.0, + 1080.0, + 1405.0, + 1117.0, + 294.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1112.0, + 1404.0, + 1112.0, + 1404.0, + 1149.0, + 292.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1140.0, + 1405.0, + 1140.0, + 1405.0, + 1178.0, + 293.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1177.0, + 1403.0, + 1177.0, + 1403.0, + 1204.0, + 294.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1203.0, + 1405.0, + 1203.0, + 1405.0, + 1239.0, + 292.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1235.0, + 1404.0, + 1235.0, + 1404.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1263.0, + 889.0, + 1263.0, + 889.0, + 1300.0, + 296.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1734.0, + 1404.0, + 1734.0, + 1404.0, + 1766.0, + 296.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1764.0, + 1405.0, + 1764.0, + 1405.0, + 1798.0, + 293.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1796.0, + 740.0, + 1796.0, + 740.0, + 1829.0, + 321.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1796.0, + 1405.0, + 1796.0, + 1405.0, + 1829.0, + 847.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1823.0, + 1308.0, + 1823.0, + 1308.0, + 1863.0, + 294.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1002.0, + 1406.0, + 1002.0, + 1406.0, + 1042.0, + 291.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1034.0, + 671.0, + 1034.0, + 671.0, + 1069.0, + 295.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1403.0, + 2002.0, + 1403.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 811.0, + 1404.0, + 811.0, + 1404.0, + 843.0, + 295.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 877.0, + 292.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 1231.0, + 871.0, + 1231.0, + 905.0, + 292.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 871.0, + 1405.0, + 871.0, + 1405.0, + 905.0, + 1252.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 902.0, + 1231.0, + 902.0, + 1231.0, + 938.0, + 294.0, + 938.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1498, + 1404, + 1498, + 1404, + 1803, + 298, + 1803 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 375, + 224, + 1319, + 224, + 1319, + 385, + 375, + 385 + ], + "score": 0.98, + "html": "
ModelParametersValidationTest
Variational LSTM implementation from Gal (2015)20M101.796.3
Zoneout + Variational LSTM20M108.7100.9
Pointer Sentinel-LSTM21M84.880.8
" + }, + { + "category_id": 1, + "poly": [ + 298, + 490, + 1404, + 490, + 1404, + 675, + 298, + 675 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 857, + 1403, + 857, + 1403, + 980, + 300, + 980 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 996, + 1403, + 996, + 1403, + 1150, + 299, + 1150 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1390, + 1403, + 1390, + 1403, + 1482, + 300, + 1482 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1402, + 1820, + 1402, + 1972, + 298, + 1972 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 1165, + 1402, + 1165, + 1402, + 1287, + 300, + 1287 + ], + "score": 0.972 + }, + { + "category_id": 0, + "poly": [ + 300, + 797, + 673, + 797, + 673, + 829, + 300, + 829 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 334, + 2005, + 767, + 2005, + 767, + 2034, + 334, + 2034 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 299, + 725, + 497, + 725, + 497, + 760, + 299, + 760 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 306, + 1331, + 897, + 1331, + 897, + 1362, + 306, + 1362 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 1, + "poly": [ + 296, + 407, + 1399, + 407, + 1399, + 470, + 296, + 470 + ], + "score": 0.721 + }, + { + "category_id": 6, + "poly": [ + 296, + 407, + 1399, + 407, + 1399, + 470, + 296, + 470 + ], + "score": 0.244 + }, + { + "category_id": 13, + "poly": [ + 480, + 321, + 501, + 321, + 501, + 342, + 480, + 342 + ], + "score": 0.31, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 797.0, + 677.0, + 797.0, + 677.0, + 833.0, + 295.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1999.0, + 770.0, + 1999.0, + 770.0, + 2041.0, + 332.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 719.0, + 503.0, + 719.0, + 503.0, + 767.0, + 292.0, + 767.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": [ + 297.0, + 1329.0, + 904.0, + 1329.0, + 904.0, + 1368.0, + 297.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 402.0, + 1404.0, + 402.0, + 1404.0, + 446.0, + 294.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 437.0, + 1151.0, + 437.0, + 1151.0, + 472.0, + 294.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1532.0, + 297.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 1406.0, + 1528.0, + 1406.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1557.0, + 1405.0, + 1557.0, + 1405.0, + 1592.0, + 293.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1590.0, + 1405.0, + 1590.0, + 1405.0, + 1625.0, + 294.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1654.0, + 294.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1686.0, + 292.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 1405.0, + 1681.0, + 1405.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1711.0, + 1402.0, + 1711.0, + 1402.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 1406.0, + 1739.0, + 1406.0, + 1777.0, + 292.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1775.0, + 768.0, + 1775.0, + 768.0, + 1806.0, + 296.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 487.0, + 1405.0, + 487.0, + 1405.0, + 528.0, + 292.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 521.0, + 1404.0, + 521.0, + 1404.0, + 557.0, + 294.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 551.0, + 1404.0, + 551.0, + 1404.0, + 588.0, + 293.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 583.0, + 1404.0, + 583.0, + 1404.0, + 618.0, + 293.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 616.0, + 1404.0, + 616.0, + 1404.0, + 647.0, + 296.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 644.0, + 772.0, + 644.0, + 772.0, + 678.0, + 295.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 858.0, + 1404.0, + 858.0, + 1404.0, + 891.0, + 295.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 888.0, + 1403.0, + 888.0, + 1403.0, + 921.0, + 295.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 921.0, + 1405.0, + 921.0, + 1405.0, + 953.0, + 295.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 951.0, + 1190.0, + 951.0, + 1190.0, + 984.0, + 296.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 995.0, + 1404.0, + 995.0, + 1404.0, + 1032.0, + 295.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1024.0, + 1405.0, + 1024.0, + 1405.0, + 1062.0, + 294.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1057.0, + 1405.0, + 1057.0, + 1405.0, + 1094.0, + 295.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1086.0, + 1404.0, + 1086.0, + 1404.0, + 1122.0, + 295.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1118.0, + 1403.0, + 1118.0, + 1403.0, + 1155.0, + 295.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1388.0, + 1404.0, + 1388.0, + 1404.0, + 1426.0, + 293.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1419.0, + 1402.0, + 1419.0, + 1402.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1449.0, + 860.0, + 1449.0, + 860.0, + 1485.0, + 295.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1817.0, + 1404.0, + 1817.0, + 1404.0, + 1854.0, + 294.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1166.0, + 1404.0, + 1166.0, + 1404.0, + 1198.0, + 296.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1194.0, + 1406.0, + 1194.0, + 1406.0, + 1231.0, + 293.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1226.0, + 1403.0, + 1226.0, + 1403.0, + 1262.0, + 294.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1257.0, + 840.0, + 1257.0, + 840.0, + 1290.0, + 295.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 402.0, + 1404.0, + 402.0, + 1404.0, + 446.0, + 294.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 437.0, + 1151.0, + 437.0, + 1151.0, + 472.0, + 294.0, + 472.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 409, + 1403, + 409, + 1403, + 564, + 299, + 564 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 579, + 1403, + 579, + 1403, + 702, + 300, + 702 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1401, + 229, + 1401, + 293, + 295, + 293 + ], + "score": 0.948 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 300, + 338, + 544, + 338, + 544, + 375, + 300, + 375 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 299, + 752, + 488, + 752, + 488, + 784, + 299, + 784 + ], + "score": 0.865 + }, + { + "category_id": 1, + "poly": [ + 292, + 791, + 1406, + 791, + 1406, + 2033, + 292, + 2033 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.831 + }, + { + "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": [ + 291.0, + 333.0, + 550.0, + 333.0, + 550.0, + 385.0, + 291.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 749.0, + 491.0, + 749.0, + 491.0, + 789.0, + 296.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 411.0, + 1404.0, + 411.0, + 1404.0, + 444.0, + 298.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 439.0, + 1404.0, + 439.0, + 1404.0, + 476.0, + 294.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 469.0, + 1407.0, + 469.0, + 1407.0, + 508.0, + 292.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 1404.0, + 504.0, + 1404.0, + 537.0, + 295.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 530.0, + 1385.0, + 530.0, + 1385.0, + 569.0, + 294.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 578.0, + 1405.0, + 578.0, + 1405.0, + 613.0, + 295.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 608.0, + 1404.0, + 608.0, + 1404.0, + 646.0, + 293.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 640.0, + 1403.0, + 640.0, + 1403.0, + 675.0, + 294.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 669.0, + 765.0, + 669.0, + 765.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 232.0, + 1403.0, + 232.0, + 1403.0, + 264.0, + 297.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 258.0, + 1309.0, + 258.0, + 1309.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 802.0, + 1405.0, + 802.0, + 1405.0, + 844.0, + 294.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 833.0, + 1408.0, + 833.0, + 1408.0, + 875.0, + 318.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 864.0, + 397.0, + 864.0, + 397.0, + 902.0, + 321.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 919.0, + 1405.0, + 919.0, + 1405.0, + 965.0, + 291.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 951.0, + 754.0, + 951.0, + 754.0, + 991.0, + 319.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1005.0, + 1404.0, + 1005.0, + 1404.0, + 1050.0, + 290.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1039.0, + 869.0, + 1039.0, + 869.0, + 1078.0, + 318.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1093.0, + 1403.0, + 1093.0, + 1403.0, + 1137.0, + 293.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1124.0, + 1404.0, + 1124.0, + 1404.0, + 1167.0, + 319.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1158.0, + 815.0, + 1158.0, + 815.0, + 1197.0, + 319.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1209.0, + 1405.0, + 1209.0, + 1405.0, + 1257.0, + 290.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1246.0, + 775.0, + 1246.0, + 775.0, + 1285.0, + 321.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1302.0, + 1404.0, + 1302.0, + 1404.0, + 1341.0, + 295.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1334.0, + 1183.0, + 1334.0, + 1183.0, + 1370.0, + 319.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1387.0, + 1407.0, + 1387.0, + 1407.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1419.0, + 710.0, + 1419.0, + 710.0, + 1458.0, + 318.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1473.0, + 1407.0, + 1473.0, + 1407.0, + 1515.0, + 291.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1507.0, + 1040.0, + 1507.0, + 1040.0, + 1545.0, + 319.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1562.0, + 1405.0, + 1562.0, + 1405.0, + 1603.0, + 291.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1594.0, + 980.0, + 1594.0, + 980.0, + 1633.0, + 322.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1648.0, + 1404.0, + 1648.0, + 1404.0, + 1692.0, + 293.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1679.0, + 791.0, + 1679.0, + 791.0, + 1720.0, + 324.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1736.0, + 1405.0, + 1736.0, + 1405.0, + 1780.0, + 291.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1767.0, + 1143.0, + 1767.0, + 1143.0, + 1806.0, + 322.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1820.0, + 1407.0, + 1820.0, + 1407.0, + 1868.0, + 293.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1854.0, + 762.0, + 1854.0, + 762.0, + 1893.0, + 321.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1952.0, + 290.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1984.0, + 321.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2012.0, + 322.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2002.0, + 631.0, + 2002.0, + 631.0, + 2041.0, + 322.0, + 2041.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 352, + 298, + 352 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 299, + 600, + 1400, + 600, + 1400, + 664, + 299, + 664 + ], + "score": 0.695 + }, + { + "category_id": 1, + "poly": [ + 299, + 1234, + 1402, + 1234, + 1402, + 1298, + 299, + 1298 + ], + "score": 0.694 + }, + { + "category_id": 1, + "poly": [ + 296, + 1151, + 1400, + 1151, + 1400, + 1215, + 296, + 1215 + ], + "score": 0.673 + }, + { + "category_id": 1, + "poly": [ + 296, + 1068, + 1402, + 1068, + 1402, + 1132, + 296, + 1132 + ], + "score": 0.647 + }, + { + "category_id": 1, + "poly": [ + 298, + 682, + 1398, + 682, + 1398, + 747, + 298, + 747 + ], + "score": 0.647 + }, + { + "category_id": 1, + "poly": [ + 296, + 1014, + 1398, + 1014, + 1398, + 1050, + 296, + 1050 + ], + "score": 0.635 + }, + { + "category_id": 1, + "poly": [ + 298, + 931, + 1399, + 931, + 1399, + 996, + 298, + 996 + ], + "score": 0.634 + }, + { + "category_id": 1, + "poly": [ + 298, + 1316, + 1399, + 1316, + 1399, + 1381, + 298, + 1381 + ], + "score": 0.633 + }, + { + "category_id": 1, + "poly": [ + 297, + 849, + 1403, + 849, + 1403, + 913, + 297, + 913 + ], + "score": 0.631 + }, + { + "category_id": 1, + "poly": [ + 297, + 765, + 1399, + 765, + 1399, + 829, + 297, + 829 + ], + "score": 0.61 + }, + { + "category_id": 1, + "poly": [ + 300, + 373, + 1404, + 373, + 1404, + 467, + 300, + 467 + ], + "score": 0.603 + }, + { + "category_id": 1, + "poly": [ + 296, + 1400, + 1400, + 1400, + 1400, + 1464, + 296, + 1464 + ], + "score": 0.603 + }, + { + "category_id": 1, + "poly": [ + 299, + 487, + 1404, + 487, + 1404, + 580, + 299, + 580 + ], + "score": 0.484 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 268.0, + 291.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 259.0, + 1403.0, + 259.0, + 1403.0, + 296.0, + 322.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 329.0, + 320.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 321.0, + 396.0, + 321.0, + 396.0, + 353.0, + 321.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 636.0, + 295.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 631.0, + 1299.0, + 631.0, + 1299.0, + 667.0, + 325.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1233.0, + 1406.0, + 1233.0, + 1406.0, + 1272.0, + 294.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1265.0, + 839.0, + 1265.0, + 839.0, + 1301.0, + 325.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1151.0, + 1405.0, + 1151.0, + 1405.0, + 1187.0, + 296.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1180.0, + 942.0, + 1180.0, + 942.0, + 1216.0, + 321.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1065.0, + 1404.0, + 1065.0, + 1404.0, + 1104.0, + 294.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1099.0, + 580.0, + 1099.0, + 580.0, + 1129.0, + 324.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 681.0, + 1402.0, + 681.0, + 1402.0, + 720.0, + 294.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 713.0, + 482.0, + 713.0, + 482.0, + 747.0, + 323.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1014.0, + 1402.0, + 1014.0, + 1402.0, + 1053.0, + 295.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 933.0, + 1403.0, + 933.0, + 1403.0, + 969.0, + 296.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 964.0, + 634.0, + 964.0, + 634.0, + 993.0, + 323.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1315.0, + 1403.0, + 1315.0, + 1403.0, + 1354.0, + 296.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1349.0, + 762.0, + 1349.0, + 762.0, + 1381.0, + 322.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 844.0, + 1405.0, + 844.0, + 1405.0, + 889.0, + 292.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 881.0, + 983.0, + 881.0, + 983.0, + 913.0, + 325.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 762.0, + 1403.0, + 762.0, + 1403.0, + 805.0, + 295.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 797.0, + 1053.0, + 797.0, + 1053.0, + 830.0, + 322.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 370.0, + 1405.0, + 370.0, + 1405.0, + 410.0, + 294.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 403.0, + 1404.0, + 403.0, + 1404.0, + 439.0, + 322.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 436.0, + 829.0, + 436.0, + 829.0, + 470.0, + 321.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1400.0, + 1404.0, + 1400.0, + 1404.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1431.0, + 1007.0, + 1431.0, + 1007.0, + 1467.0, + 323.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 483.0, + 1404.0, + 483.0, + 1404.0, + 524.0, + 294.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 517.0, + 1404.0, + 517.0, + 1404.0, + 553.0, + 321.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 549.0, + 583.0, + 549.0, + 583.0, + 579.0, + 323.0, + 579.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 342, + 424, + 1296, + 424, + 1296, + 1174, + 342, + 1174 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 296, + 1213, + 1402, + 1213, + 1402, + 1279, + 296, + 1279 + ], + "score": 0.937 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.842 + }, + { + "category_id": 0, + "poly": [ + 301, + 228, + 449, + 228, + 449, + 261, + 301, + 261 + ], + "score": 0.797 + }, + { + "category_id": 2, + "poly": [ + 298, + 299, + 1143, + 299, + 1143, + 327, + 298, + 327 + ], + "score": 0.419 + }, + { + "category_id": 1, + "poly": [ + 298, + 299, + 1143, + 299, + 1143, + 327, + 298, + 327 + ], + "score": 0.379 + }, + { + "category_id": 15, + "poly": [ + 372.0, + 411.0, + 448.0, + 411.0, + 448.0, + 475.0, + 372.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 438.0, + 391.0, + 438.0, + 391.0, + 1103.0, + 339.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 547.0, + 444.0, + 547.0, + 444.0, + 599.0, + 379.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 679.0, + 443.0, + 679.0, + 443.0, + 726.0, + 378.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 808.0, + 442.0, + 808.0, + 442.0, + 860.0, + 379.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 937.0, + 445.0, + 937.0, + 445.0, + 992.0, + 377.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1098.0, + 550.0, + 1098.0, + 550.0, + 1138.0, + 514.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1098.0, + 643.0, + 1098.0, + 643.0, + 1138.0, + 608.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1100.0, + 737.0, + 1100.0, + 737.0, + 1134.0, + 704.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1098.0, + 833.0, + 1098.0, + 833.0, + 1137.0, + 796.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1098.0, + 925.0, + 1098.0, + 925.0, + 1137.0, + 889.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1098.0, + 1020.0, + 1098.0, + 1020.0, + 1135.0, + 983.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1098.0, + 1112.0, + 1098.0, + 1112.0, + 1137.0, + 1078.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1098.0, + 1207.0, + 1098.0, + 1207.0, + 1139.0, + 1170.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1092.0, + 1310.0, + 1092.0, + 1310.0, + 1141.0, + 1254.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1130.0, + 1203.0, + 1130.0, + 1203.0, + 1182.0, + 517.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.75, + 1065.0, + 450.75, + 1065.0, + 450.75, + 1129.5, + 386.75, + 1129.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1212.0, + 1403.0, + 1212.0, + 1403.0, + 1249.0, + 295.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 1395.0, + 1243.0, + 1395.0, + 1282.0, + 294.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 454.0, + 225.0, + 454.0, + 268.0, + 296.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 300.0, + 1146.0, + 300.0, + 1146.0, + 328.0, + 297.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 300.0, + 1146.0, + 300.0, + 1146.0, + 328.0, + 297.0, + 328.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 286, + 1404, + 286, + 1404, + 442, + 297, + 442 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 312, + 1175, + 1391, + 1175, + 1391, + 1283, + 312, + 1283 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 3, + "poly": [ + 312, + 479, + 1392, + 479, + 1392, + 604, + 312, + 604 + ], + "score": 0.879 + }, + { + "category_id": 4, + "poly": [ + 295, + 666, + 1404, + 666, + 1404, + 789, + 295, + 789 + ], + "score": 0.862 + }, + { + "category_id": 0, + "poly": [ + 301, + 229, + 800, + 229, + 800, + 261, + 301, + 261 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.842 + }, + { + "category_id": 3, + "poly": [ + 315, + 840, + 1389, + 840, + 1389, + 959, + 315, + 959 + ], + "score": 0.838 + }, + { + "category_id": 4, + "poly": [ + 297, + 1027, + 1403, + 1027, + 1403, + 1121, + 297, + 1121 + ], + "score": 0.746 + }, + { + "category_id": 4, + "poly": [ + 296, + 1355, + 1402, + 1355, + 1402, + 1449, + 296, + 1449 + ], + "score": 0.624 + }, + { + "category_id": 1, + "poly": [ + 296, + 1355, + 1402, + 1355, + 1402, + 1449, + 296, + 1449 + ], + "score": 0.454 + }, + { + "category_id": 1, + "poly": [ + 297, + 1027, + 1403, + 1027, + 1403, + 1121, + 297, + 1121 + ], + "score": 0.252 + }, + { + "category_id": 13, + "poly": [ + 1078, + 483, + 1149, + 483, + 1149, + 506, + 1078, + 506 + ], + "score": 0.64, + "latex": "= 0 . 8 1" + }, + { + "category_id": 13, + "poly": [ + 1080, + 843, + 1150, + 843, + 1150, + 866, + 1080, + 866 + ], + "score": 0.51, + "latex": "= 0 . 5 9" + }, + { + "category_id": 13, + "poly": [ + 1056, + 1179, + 1127, + 1179, + 1127, + 1202, + 1056, + 1202 + ], + "score": 0.39, + "latex": "= 0 . 5 5" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1176.0, + 1055.0, + 1176.0, + 1055.0, + 1204.0, + 583.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1176.0, + 1136.0, + 1176.0, + 1136.0, + 1204.0, + 1128.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1224.0, + 470.0, + 1224.0, + 470.0, + 1241.0, + 382.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1228.0, + 508.0, + 1228.0, + 508.0, + 1234.0, + 501.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1225.0, + 567.0, + 1225.0, + 567.0, + 1242.0, + 530.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1228.0, + 646.0, + 1228.0, + 646.0, + 1237.0, + 633.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1228.0, + 707.0, + 1228.0, + 707.0, + 1237.0, + 693.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1226.0, + 740.0, + 1226.0, + 740.0, + 1237.0, + 731.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1224.0, + 1004.0, + 1224.0, + 1004.0, + 1241.0, + 940.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1225.0, + 1055.0, + 1225.0, + 1055.0, + 1286.0, + 1026.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1228.0, + 1260.0, + 1228.0, + 1260.0, + 1237.0, + 1247.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1226.0, + 1308.0, + 1226.0, + 1308.0, + 1239.0, + 1280.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1225.0, + 1342.0, + 1225.0, + 1342.0, + 1238.0, + 1310.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1250.0, + 386.0, + 1250.0, + 386.0, + 1256.0, + 380.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1245.0, + 525.0, + 1245.0, + 525.0, + 1258.0, + 514.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1243.0, + 914.0, + 1243.0, + 914.0, + 1271.0, + 888.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1243.0, + 928.0, + 1243.0, + 928.0, + 1252.0, + 918.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1235.0, + 985.0, + 1235.0, + 985.0, + 1252.0, + 971.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1225.0, + 730.0, + 1225.0, + 730.0, + 1239.0, + 708.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.25, + 1226.0, + 1143.25, + 1226.0, + 1143.25, + 1237.0, + 1127.25, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1237.5, + 1136.0, + 1237.5, + 1136.0, + 1249.0, + 1116.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1245.0, + 1280.0, + 1245.0, + 1280.0, + 1255.5, + 1259.0, + 1255.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1237.0, + 1318.0, + 1237.0, + 1318.0, + 1251.0, + 1293.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1245.5, + 475.0, + 1245.5, + 475.0, + 1255.5, + 440.0, + 1255.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1246.0, + 522.0, + 1246.0, + 522.0, + 1261.5, + 476.0, + 1261.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1249.5, + 955.0, + 1249.5, + 955.0, + 1264.0, + 922.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.75, + 1231.5, + 1173.75, + 1231.5, + 1173.75, + 1251.5, + 1114.75, + 1251.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.25, + 1252.5, + 786.25, + 1252.5, + 786.25, + 1265.5, + 750.25, + 1265.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1242.5, + 1029.0, + 1242.5, + 1029.0, + 1265.5, + 960.0, + 1265.5 + ], + "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": [ + 561.0, + 478.0, + 1077.0, + 478.0, + 1077.0, + 511.0, + 561.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 478.0, + 1161.0, + 478.0, + 1161.0, + 511.0, + 1150.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 531.0, + 343.0, + 531.0, + 343.0, + 541.0, + 333.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 532.0, + 427.0, + 532.0, + 427.0, + 541.0, + 417.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 531.0, + 512.0, + 531.0, + 512.0, + 543.0, + 500.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 531.0, + 585.0, + 531.0, + 585.0, + 541.0, + 574.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 531.0, + 618.0, + 531.0, + 618.0, + 541.0, + 607.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 527.0, + 660.0, + 527.0, + 660.0, + 540.0, + 637.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 531.0, + 720.0, + 531.0, + 720.0, + 540.0, + 712.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 531.0, + 743.0, + 531.0, + 743.0, + 539.0, + 729.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 531.0, + 754.0, + 531.0, + 754.0, + 541.0, + 744.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 531.0, + 766.0, + 531.0, + 766.0, + 540.0, + 756.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 532.0, + 805.0, + 532.0, + 805.0, + 541.0, + 795.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 527.0, + 838.0, + 527.0, + 838.0, + 545.0, + 815.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 531.0, + 897.0, + 531.0, + 897.0, + 585.0, + 866.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 529.0, + 934.0, + 529.0, + 934.0, + 547.0, + 909.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 517.0, + 1008.0, + 517.0, + 1008.0, + 573.0, + 940.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 530.0, + 1027.0, + 530.0, + 1027.0, + 540.0, + 1015.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 531.0, + 1039.0, + 531.0, + 1039.0, + 541.0, + 1028.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 530.0, + 1163.0, + 530.0, + 1163.0, + 540.0, + 1152.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 531.0, + 1183.0, + 531.0, + 1183.0, + 539.0, + 1170.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 525.0, + 1344.0, + 525.0, + 1344.0, + 559.0, + 1281.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 547.0, + 437.0, + 547.0, + 437.0, + 564.0, + 421.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 550.0, + 588.0, + 550.0, + 588.0, + 577.0, + 564.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 544.0, + 618.0, + 544.0, + 618.0, + 553.0, + 610.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 539.0, + 972.0, + 539.0, + 972.0, + 549.0, + 963.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 537.0, + 1180.0, + 537.0, + 1180.0, + 556.0, + 1147.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 538.0, + 1335.0, + 538.0, + 1335.0, + 558.0, + 1320.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 528.5, + 1188.0, + 528.5, + 1188.0, + 546.0, + 1184.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 529.0, + 1206.0, + 529.0, + 1206.0, + 559.0, + 1201.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 540.0, + 772.0, + 540.0, + 772.0, + 581.5, + 768.0, + 581.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 536.0, + 801.0, + 536.0, + 801.0, + 565.5, + 796.0, + 565.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 531.5, + 821.0, + 531.5, + 821.0, + 539.5, + 802.0, + 539.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.75, + 525.5, + 892.75, + 525.5, + 892.75, + 557.5, + 803.75, + 557.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.75, + 536.5, + 962.75, + 536.5, + 962.75, + 562.0, + 911.75, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 529.5, + 1075.0, + 529.5, + 1075.0, + 563.0, + 1001.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 518.5, + 1288.0, + 518.5, + 1288.0, + 565.0, + 1185.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.75, + 543.0, + 1289.75, + 543.0, + 1289.75, + 576.0, + 1280.75, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.75, + 545.5, + 375.75, + 545.5, + 375.75, + 566.0, + 323.75, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.75, + 543.5, + 636.75, + 543.5, + 636.75, + 551.5, + 608.75, + 551.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 532.5, + 691.0, + 532.5, + 691.0, + 553.5, + 632.0, + 553.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 540.5, + 704.0, + 540.5, + 704.0, + 565.5, + 653.0, + 565.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.25, + 547.5, + 343.25, + 547.5, + 343.25, + 557.0, + 307.25, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 545.0, + 777.0, + 545.0, + 777.0, + 564.5, + 720.0, + 564.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 550.0, + 920.0, + 550.0, + 920.0, + 562.0, + 881.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.25, + 534.5, + 1302.25, + 534.5, + 1302.25, + 555.0, + 1238.25, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 532.5, + 1390.0, + 532.5, + 1390.0, + 563.5, + 1300.0, + 563.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 538.0, + 1388.0, + 538.0, + 1388.0, + 547.0, + 1352.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 559.5, + 462.0, + 559.5, + 462.0, + 571.5, + 423.0, + 571.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.25, + 544.5, + 1024.25, + 544.5, + 1024.25, + 556.0, + 973.25, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.75, + 541.0, + 1167.75, + 541.0, + 1167.75, + 563.0, + 1090.75, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.75, + 553.5, + 1198.75, + 553.5, + 1198.75, + 562.5, + 1166.75, + 562.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 561.0, + 421.0, + 561.0, + 421.0, + 574.0, + 372.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.75, + 563.5, + 614.75, + 563.5, + 614.75, + 572.5, + 577.75, + 572.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 668.0, + 1404.0, + 668.0, + 1404.0, + 701.0, + 295.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 700.0, + 1404.0, + 700.0, + 1404.0, + 729.0, + 293.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 729.0, + 1404.0, + 729.0, + 1404.0, + 761.0, + 294.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 757.0, + 404.0, + 757.0, + 404.0, + 792.0, + 294.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 804.0, + 229.0, + 804.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 840.0, + 1079.0, + 840.0, + 1079.0, + 869.0, + 556.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 840.0, + 1161.0, + 840.0, + 1161.0, + 869.0, + 1151.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 879.0, + 458.0, + 879.0, + 458.0, + 931.0, + 378.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 894.0, + 497.0, + 894.0, + 497.0, + 904.0, + 488.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 901.0, + 533.0, + 901.0, + 533.0, + 922.0, + 514.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 892.0, + 561.0, + 892.0, + 561.0, + 900.0, + 551.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 903.0, + 584.0, + 903.0, + 584.0, + 909.0, + 578.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 890.0, + 645.0, + 890.0, + 645.0, + 903.0, + 623.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 888.0, + 716.0, + 888.0, + 716.0, + 909.0, + 678.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 890.0, + 742.0, + 890.0, + 742.0, + 900.0, + 732.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 881.0, + 869.0, + 881.0, + 869.0, + 928.0, + 784.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 887.0, + 1045.0, + 887.0, + 1045.0, + 930.0, + 999.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 889.0, + 1068.0, + 889.0, + 1068.0, + 904.0, + 1054.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 881.0, + 1191.0, + 881.0, + 1191.0, + 925.0, + 1089.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 892.0, + 1236.0, + 892.0, + 1236.0, + 902.0, + 1225.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 892.0, + 1256.0, + 892.0, + 1256.0, + 902.0, + 1246.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 890.0, + 1298.0, + 890.0, + 1298.0, + 901.0, + 1290.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 889.0, + 1308.0, + 889.0, + 1308.0, + 902.0, + 1300.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 890.0, + 1363.0, + 890.0, + 1363.0, + 923.0, + 1342.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 910.0, + 547.0, + 910.0, + 547.0, + 920.0, + 539.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 911.0, + 610.0, + 911.0, + 610.0, + 926.0, + 596.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 910.0, + 1051.0, + 910.0, + 1051.0, + 920.0, + 1042.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 906.0, + 1265.0, + 906.0, + 1265.0, + 915.0, + 1247.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 889.5, + 728.0, + 889.5, + 728.0, + 901.5, + 722.0, + 901.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.75, + 898.0, + 939.75, + 898.0, + 939.75, + 921.0, + 918.75, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 902.0, + 1027.0, + 902.0, + 1027.0, + 927.0, + 1023.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 903.0, + 1146.0, + 903.0, + 1146.0, + 922.5, + 1110.0, + 922.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 909.0, + 1289.0, + 909.0, + 1289.0, + 926.5, + 1286.0, + 926.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 900.5, + 661.0, + 900.5, + 661.0, + 909.0, + 626.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.25, + 904.5, + 751.25, + 904.5, + 751.25, + 924.5, + 702.25, + 924.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 909.5, + 589.0, + 909.5, + 589.0, + 929.5, + 519.0, + 929.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.75, + 909.5, + 834.75, + 909.5, + 834.75, + 920.5, + 794.75, + 920.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 921.0, + 1068.0, + 921.0, + 1068.0, + 928.0, + 1033.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.25, + 911.5, + 1113.25, + 911.5, + 1113.25, + 931.0, + 1044.25, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.25, + 915.0, + 1346.25, + 915.0, + 1346.25, + 924.0, + 1310.25, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1027.0, + 1405.0, + 1027.0, + 1405.0, + 1063.0, + 293.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1089.0, + 851.0, + 1089.0, + 851.0, + 1122.0, + 293.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1384.0, + 1406.0, + 1384.0, + 1406.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1417.0, + 1059.0, + 1417.0, + 1059.0, + 1450.0, + 294.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 287.0, + 1405.0, + 287.0, + 1405.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 319.0, + 1404.0, + 319.0, + 1404.0, + 352.0, + 295.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 1405.0, + 348.0, + 1405.0, + 384.0, + 292.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 380.0, + 1404.0, + 380.0, + 1404.0, + 413.0, + 296.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 411.0, + 624.0, + 411.0, + 624.0, + 444.0, + 296.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1384.0, + 1406.0, + 1384.0, + 1406.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1417.0, + 1059.0, + 1417.0, + 1059.0, + 1450.0, + 294.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1027.0, + 1405.0, + 1027.0, + 1405.0, + 1063.0, + 293.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1089.0, + 851.0, + 1089.0, + 851.0, + 1122.0, + 293.0, + 1122.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 296, + 1598, + 1401, + 1598, + 1401, + 1663, + 296, + 1663 + ], + "score": 0.937 + }, + { + "category_id": 3, + "poly": [ + 311, + 1729, + 1391, + 1729, + 1391, + 1842, + 311, + 1842 + ], + "score": 0.912 + }, + { + "category_id": 3, + "poly": [ + 313, + 1064, + 1389, + 1064, + 1389, + 1176, + 313, + 1176 + ], + "score": 0.9 + }, + { + "category_id": 3, + "poly": [ + 312, + 631, + 1390, + 631, + 1390, + 735, + 312, + 735 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 814, + 75, + 814, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 3, + "poly": [ + 310, + 1411, + 1390, + 1411, + 1390, + 1549, + 310, + 1549 + ], + "score": 0.88 + }, + { + "category_id": 4, + "poly": [ + 294, + 809, + 1406, + 809, + 1406, + 996, + 294, + 996 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.859 + }, + { + "category_id": 4, + "poly": [ + 294, + 439, + 1406, + 439, + 1406, + 564, + 294, + 564 + ], + "score": 0.851 + }, + { + "category_id": 4, + "poly": [ + 296, + 1915, + 1404, + 1915, + 1404, + 2008, + 296, + 2008 + ], + "score": 0.803 + }, + { + "category_id": 4, + "poly": [ + 297, + 1249, + 1404, + 1249, + 1404, + 1343, + 297, + 1343 + ], + "score": 0.779 + }, + { + "category_id": 3, + "poly": [ + 308, + 122, + 1394, + 122, + 1394, + 370, + 308, + 370 + ], + "score": 0.274 + }, + { + "category_id": 1, + "poly": [ + 294, + 809, + 1406, + 809, + 1406, + 996, + 294, + 996 + ], + "score": 0.153 + }, + { + "category_id": 1, + "poly": [ + 296, + 1915, + 1404, + 1915, + 1404, + 2008, + 296, + 2008 + ], + "score": 0.149 + }, + { + "category_id": 1, + "poly": [ + 297, + 1249, + 1404, + 1249, + 1404, + 1343, + 297, + 1343 + ], + "score": 0.128 + }, + { + "category_id": 1, + "poly": [ + 294, + 439, + 1406, + 439, + 1406, + 564, + 294, + 564 + ], + "score": 0.123 + }, + { + "category_id": 13, + "poly": [ + 1065, + 258, + 1138, + 258, + 1138, + 281, + 1065, + 281 + ], + "score": 0.74, + "latex": "= 0 . 4 4 " + }, + { + "category_id": 13, + "poly": [ + 747, + 1946, + 818, + 1946, + 818, + 1979, + 747, + 1979 + ], + "score": 0.69, + "latex": "\\left. u n k \\right." + }, + { + "category_id": 13, + "poly": [ + 603, + 810, + 673, + 810, + 673, + 844, + 603, + 844 + ], + "score": 0.64, + "latex": "\\left. u n k \\right." + }, + { + "category_id": 13, + "poly": [ + 1078, + 1415, + 1151, + 1415, + 1151, + 1438, + 1078, + 1438 + ], + "score": 0.62, + "latex": "= 0 . 0 0 \\dot { }" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1734, + 1164, + 1734, + 1164, + 1757, + 1092, + 1757 + ], + "score": 0.61, + "latex": "= 0 . 0 0 " + }, + { + "category_id": 13, + "poly": [ + 1068, + 636, + 1140, + 636, + 1140, + 659, + 1068, + 659 + ], + "score": 0.56, + "latex": "= 0 . 1 2" + }, + { + "category_id": 13, + "poly": [ + 1074, + 1068, + 1146, + 1068, + 1146, + 1091, + 1074, + 1091 + ], + "score": 0.49, + "latex": "= 0 . 0 3" + }, + { + "category_id": 13, + "poly": [ + 1127, + 442, + 1147, + 442, + 1147, + 470, + 1127, + 470 + ], + "score": 0.35, + "latex": "\\$ 1" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1598.0, + 1403.0, + 1598.0, + 1403.0, + 1634.0, + 295.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1628.0, + 1401.0, + 1628.0, + 1401.0, + 1667.0, + 294.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1727.0, + 1091.0, + 1727.0, + 1091.0, + 1762.0, + 554.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1727.0, + 1172.0, + 1727.0, + 1172.0, + 1762.0, + 1165.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1780.0, + 381.0, + 1780.0, + 381.0, + 1793.0, + 361.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1768.0, + 664.0, + 1768.0, + 664.0, + 1821.0, + 526.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1780.0, + 780.0, + 1780.0, + 780.0, + 1795.0, + 764.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1782.0, + 1049.0, + 1782.0, + 1049.0, + 1792.0, + 1039.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1782.0, + 1059.0, + 1782.0, + 1059.0, + 1792.0, + 1050.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1776.0, + 1132.0, + 1776.0, + 1132.0, + 1807.0, + 1060.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1783.0, + 1156.0, + 1783.0, + 1156.0, + 1793.0, + 1144.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1779.0, + 1204.0, + 1779.0, + 1204.0, + 1796.0, + 1162.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1783.0, + 1217.0, + 1783.0, + 1217.0, + 1792.0, + 1205.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1782.0, + 1289.0, + 1782.0, + 1289.0, + 1792.0, + 1279.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1782.0, + 1382.0, + 1782.0, + 1382.0, + 1795.0, + 1359.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1793.0, + 362.0, + 1793.0, + 362.0, + 1811.0, + 346.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1795.0, + 381.0, + 1795.0, + 381.0, + 1805.0, + 372.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1793.0, + 716.0, + 1793.0, + 716.0, + 1816.0, + 681.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1797.0, + 860.0, + 1797.0, + 860.0, + 1815.0, + 845.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1788.0, + 904.0, + 1788.0, + 904.0, + 1797.0, + 890.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1789.0, + 1052.0, + 1789.0, + 1052.0, + 1824.0, + 1016.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1792.0, + 1177.0, + 1792.0, + 1177.0, + 1805.0, + 1156.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 1811.0, + 1360.0, + 1811.0, + 1360.0, + 1824.0, + 1339.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1764.5, + 464.0, + 1764.5, + 464.0, + 1823.5, + 384.0, + 1823.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.75, + 1775.0, + 526.75, + 1775.0, + 526.75, + 1805.5, + 468.75, + 1805.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 1779.0, + 1325.0, + 1779.0, + 1325.0, + 1796.0, + 1300.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1781.5, + 1043.0, + 1781.5, + 1043.0, + 1791.0, + 1024.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1793.0, + 484.0, + 1793.0, + 484.0, + 1813.5, + 442.0, + 1813.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1789.5, + 1273.0, + 1789.5, + 1273.0, + 1813.5, + 1239.0, + 1813.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1793.5, + 646.0, + 1793.5, + 646.0, + 1821.5, + 588.0, + 1821.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1795.5, + 692.0, + 1795.5, + 692.0, + 1825.5, + 626.0, + 1825.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.75, + 1795.0, + 1024.75, + 1795.0, + 1024.75, + 1825.5, + 954.75, + 1825.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.75, + 1797.0, + 1211.75, + 1797.0, + 1211.75, + 1807.5, + 1186.75, + 1807.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1801.5, + 358.0, + 1801.5, + 358.0, + 1824.0, + 303.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.75, + 1797.0, + 1101.75, + 1797.0, + 1101.75, + 1819.5, + 1040.75, + 1819.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1802.0, + 1149.0, + 1802.0, + 1149.0, + 1814.0, + 1116.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1805.0, + 1255.0, + 1805.0, + 1255.0, + 1822.0, + 1213.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.25, + 1800.5, + 1307.25, + 1800.5, + 1307.25, + 1818.5, + 1255.25, + 1818.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.25, + 1802.5, + 409.25, + 1802.5, + 409.25, + 1813.5, + 371.25, + 1813.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1801.5, + 614.0, + 1801.5, + 614.0, + 1826.0, + 543.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.75, + 1815.0, + 745.75, + 1815.0, + 745.75, + 1827.0, + 707.75, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1802.5, + 779.0, + 1802.5, + 779.0, + 1817.5, + 732.0, + 1817.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.25, + 1816.0, + 692.25, + 1816.0, + 692.25, + 1828.0, + 654.25, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1064.0, + 1073.0, + 1064.0, + 1073.0, + 1094.0, + 568.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1064.0, + 1155.0, + 1064.0, + 1155.0, + 1094.0, + 1147.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1096.0, + 916.0, + 1096.0, + 916.0, + 1105.0, + 902.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1113.0, + 344.0, + 1113.0, + 344.0, + 1124.0, + 335.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1113.0, + 481.0, + 1113.0, + 481.0, + 1127.0, + 450.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1116.0, + 533.0, + 1116.0, + 533.0, + 1127.0, + 520.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1115.0, + 585.0, + 1115.0, + 585.0, + 1129.0, + 563.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1111.0, + 638.0, + 1111.0, + 638.0, + 1129.0, + 602.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1115.0, + 764.0, + 1115.0, + 764.0, + 1124.0, + 754.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1116.0, + 900.0, + 1116.0, + 900.0, + 1127.0, + 884.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1113.0, + 987.0, + 1113.0, + 987.0, + 1128.0, + 961.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1116.0, + 1025.0, + 1116.0, + 1025.0, + 1125.0, + 1015.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1115.0, + 1058.0, + 1115.0, + 1058.0, + 1131.0, + 1027.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1115.0, + 1089.0, + 1115.0, + 1089.0, + 1124.0, + 1079.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1111.0, + 1299.0, + 1111.0, + 1299.0, + 1132.0, + 1228.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1131.0, + 521.0, + 1131.0, + 521.0, + 1144.0, + 510.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1124.0, + 566.0, + 1124.0, + 566.0, + 1148.0, + 547.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1124.0, + 642.0, + 1124.0, + 642.0, + 1133.0, + 629.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1128.0, + 744.0, + 1128.0, + 744.0, + 1140.0, + 736.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1140.0, + 777.0, + 1140.0, + 777.0, + 1146.0, + 771.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1129.0, + 806.0, + 1129.0, + 806.0, + 1136.0, + 800.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1129.0, + 1015.0, + 1129.0, + 1015.0, + 1140.0, + 1005.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1125.0, + 1060.0, + 1125.0, + 1060.0, + 1139.0, + 1049.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1132.0, + 1296.0, + 1132.0, + 1296.0, + 1149.0, + 1281.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.75, + 1112.0, + 1081.75, + 1112.0, + 1081.75, + 1126.5, + 1052.75, + 1126.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.25, + 1111.0, + 1379.25, + 1111.0, + 1379.25, + 1131.0, + 1350.25, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.75, + 1129.5, + 697.75, + 1129.5, + 697.75, + 1149.5, + 678.75, + 1149.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.75, + 1125.5, + 1099.75, + 1125.5, + 1099.75, + 1139.5, + 1082.75, + 1139.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1129.0, + 839.0, + 1129.0, + 839.0, + 1158.5, + 803.0, + 1158.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.25, + 1131.5, + 1230.25, + 1131.5, + 1230.25, + 1140.5, + 1208.25, + 1140.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.25, + 1135.5, + 420.25, + 1135.5, + 420.25, + 1146.0, + 395.25, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1133.0, + 608.0, + 1133.0, + 608.0, + 1155.0, + 544.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1123.0, + 667.0, + 1123.0, + 667.0, + 1160.5, + 584.0, + 1160.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1135.0, + 971.0, + 1135.0, + 971.0, + 1147.0, + 934.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1130.0, + 1009.0, + 1130.0, + 1009.0, + 1150.0, + 951.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.75, + 1133.0, + 1286.75, + 1133.0, + 1286.75, + 1147.0, + 1251.75, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1140.5, + 355.0, + 1140.5, + 355.0, + 1154.5, + 306.0, + 1154.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1139.0, + 688.0, + 1139.0, + 688.0, + 1153.0, + 644.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 1139.0, + 1114.0, + 1139.0, + 1114.0, + 1150.0, + 1079.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1139.0, + 1217.0, + 1139.0, + 1217.0, + 1152.5, + 1165.0, + 1152.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 631.0, + 1067.0, + 631.0, + 1067.0, + 663.0, + 559.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 631.0, + 1150.0, + 631.0, + 1150.0, + 663.0, + 1141.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 683.0, + 471.0, + 683.0, + 471.0, + 694.0, + 458.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 680.0, + 537.0, + 680.0, + 537.0, + 697.0, + 498.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 686.0, + 575.0, + 686.0, + 575.0, + 694.0, + 564.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 675.0, + 691.0, + 675.0, + 691.0, + 716.0, + 596.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 683.0, + 745.0, + 683.0, + 745.0, + 694.0, + 736.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 680.0, + 841.0, + 680.0, + 841.0, + 697.0, + 797.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 683.0, + 893.0, + 683.0, + 893.0, + 696.0, + 873.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 686.0, + 966.0, + 686.0, + 966.0, + 694.0, + 957.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 680.0, + 1020.0, + 680.0, + 1020.0, + 697.0, + 979.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 683.0, + 1063.0, + 683.0, + 1063.0, + 697.0, + 1022.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 684.0, + 1119.0, + 684.0, + 1119.0, + 693.0, + 1096.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 683.0, + 1231.0, + 683.0, + 1231.0, + 697.0, + 1212.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 693.0, + 677.0, + 693.0, + 677.0, + 705.0, + 664.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 698.0, + 726.0, + 698.0, + 726.0, + 710.0, + 715.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 694.0, + 780.0, + 694.0, + 780.0, + 710.0, + 765.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 691.0, + 814.0, + 691.0, + 814.0, + 709.0, + 798.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 697.0, + 959.0, + 697.0, + 959.0, + 724.0, + 942.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 701.0, + 1083.0, + 701.0, + 1083.0, + 711.0, + 1074.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 691.0, + 1289.0, + 691.0, + 1289.0, + 739.0, + 1267.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 706.0, + 352.0, + 706.0, + 352.0, + 731.0, + 325.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 710.0, + 1150.0, + 710.0, + 1150.0, + 725.0, + 1130.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 676.0, + 805.0, + 676.0, + 805.0, + 703.0, + 737.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 677.0, + 965.0, + 677.0, + 965.0, + 701.0, + 921.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.75, + 691.0, + 996.75, + 691.0, + 996.75, + 714.5, + 992.75, + 714.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 696.0, + 1058.0, + 696.0, + 1058.0, + 718.5, + 1050.0, + 718.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 695.5, + 466.0, + 695.5, + 466.0, + 708.5, + 462.0, + 708.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 683.5, + 1333.0, + 683.5, + 1333.0, + 701.5, + 1303.0, + 701.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 706.0, + 1082.0, + 706.0, + 1082.0, + 725.0, + 1068.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.75, + 700.5, + 1107.75, + 700.5, + 1107.75, + 722.5, + 1103.75, + 722.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.25, + 698.0, + 837.25, + 698.0, + 837.25, + 706.5, + 814.25, + 706.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 695.0, + 1044.0, + 695.0, + 1044.0, + 717.0, + 992.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 698.0, + 467.0, + 698.0, + 467.0, + 710.0, + 415.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 704.5, + 1311.0, + 704.5, + 1311.0, + 713.5, + 1283.0, + 713.5 + ], + "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": [ + 551.0, + 1411.0, + 1077.0, + 1411.0, + 1077.0, + 1442.0, + 551.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1411.0, + 1160.0, + 1411.0, + 1160.0, + 1442.0, + 1152.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1444.0, + 688.0, + 1444.0, + 688.0, + 1454.0, + 675.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1464.0, + 575.0, + 1464.0, + 575.0, + 1473.0, + 559.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1460.0, + 699.0, + 1460.0, + 699.0, + 1483.0, + 681.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1463.0, + 800.0, + 1463.0, + 800.0, + 1475.0, + 777.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1464.0, + 872.0, + 1464.0, + 872.0, + 1473.0, + 852.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1464.0, + 907.0, + 1464.0, + 907.0, + 1473.0, + 894.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1463.0, + 926.0, + 1463.0, + 926.0, + 1473.0, + 915.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1463.0, + 1032.0, + 1463.0, + 1032.0, + 1473.0, + 1023.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1486.0, + 437.0, + 1486.0, + 437.0, + 1510.0, + 409.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1482.0, + 573.0, + 1482.0, + 573.0, + 1499.0, + 559.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1478.0, + 844.0, + 1478.0, + 844.0, + 1489.0, + 833.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1471.0, + 952.0, + 1471.0, + 952.0, + 1482.0, + 940.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1471.0, + 984.0, + 1471.0, + 984.0, + 1490.0, + 957.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1485.0, + 1131.0, + 1485.0, + 1131.0, + 1497.0, + 1122.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1491.0, + 1161.0, + 1491.0, + 1161.0, + 1501.0, + 1150.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1474.0, + 552.0, + 1474.0, + 552.0, + 1494.0, + 546.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1475.5, + 722.0, + 1475.5, + 722.0, + 1494.5, + 705.0, + 1494.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.75, + 1488.0, + 808.75, + 1488.0, + 808.75, + 1501.5, + 782.75, + 1501.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1479.0, + 891.0, + 1479.0, + 891.0, + 1496.0, + 844.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1491.0, + 668.0, + 1491.0, + 668.0, + 1500.0, + 647.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.75, + 1483.0, + 946.75, + 1483.0, + 946.75, + 1495.0, + 906.75, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1492.0, + 650.0, + 1492.0, + 650.0, + 1504.0, + 599.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.25, + 1491.0, + 719.25, + 1491.0, + 719.25, + 1504.0, + 678.25, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1485.0, + 1055.0, + 1485.0, + 1055.0, + 1504.5, + 992.0, + 1504.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1489.5, + 1345.0, + 1489.5, + 1345.0, + 1499.5, + 1305.0, + 1499.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 806.0, + 602.0, + 806.0, + 602.0, + 847.0, + 292.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 806.0, + 1406.0, + 806.0, + 1406.0, + 847.0, + 674.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 841.0, + 1404.0, + 841.0, + 1404.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 870.0, + 1404.0, + 870.0, + 1404.0, + 906.0, + 293.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 900.0, + 1404.0, + 900.0, + 1404.0, + 938.0, + 293.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 967.0, + 295.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 960.0, + 1349.0, + 960.0, + 1349.0, + 1000.0, + 293.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 439.0, + 1126.0, + 439.0, + 1126.0, + 476.0, + 295.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 439.0, + 1405.0, + 439.0, + 1405.0, + 476.0, + 1148.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 470.0, + 1405.0, + 470.0, + 1405.0, + 506.0, + 293.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 499.0, + 1405.0, + 499.0, + 1405.0, + 539.0, + 291.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 530.0, + 988.0, + 530.0, + 988.0, + 567.0, + 295.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1916.0, + 1402.0, + 1916.0, + 1402.0, + 1949.0, + 296.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1946.0, + 746.0, + 1946.0, + 746.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1946.0, + 1402.0, + 1946.0, + 1402.0, + 1980.0, + 819.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1221.0, + 1975.0, + 1221.0, + 2012.0, + 293.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1250.0, + 1404.0, + 1250.0, + 1404.0, + 1284.0, + 296.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1279.0, + 1405.0, + 1279.0, + 1405.0, + 1315.0, + 294.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1309.0, + 1250.0, + 1309.0, + 1250.0, + 1346.0, + 294.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 257.0, + 1064.0, + 257.0, + 1064.0, + 283.0, + 573.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 257.0, + 1146.0, + 257.0, + 1146.0, + 283.0, + 1139.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 287.0, + 1061.0, + 287.0, + 1061.0, + 297.0, + 1047.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 308.0, + 384.0, + 308.0, + 384.0, + 343.0, + 352.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 306.0, + 414.0, + 306.0, + 414.0, + 315.0, + 394.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 311.0, + 491.0, + 311.0, + 491.0, + 351.0, + 465.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 306.0, + 508.0, + 306.0, + 508.0, + 331.0, + 498.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 318.0, + 542.0, + 318.0, + 542.0, + 331.0, + 532.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 306.0, + 592.0, + 306.0, + 592.0, + 315.0, + 582.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 317.0, + 615.0, + 317.0, + 615.0, + 332.0, + 594.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 304.0, + 637.0, + 304.0, + 637.0, + 318.0, + 616.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 304.0, + 690.0, + 304.0, + 690.0, + 321.0, + 655.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 327.0, + 715.0, + 327.0, + 715.0, + 335.0, + 705.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 306.0, + 772.0, + 306.0, + 772.0, + 315.0, + 750.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 305.0, + 899.0, + 305.0, + 899.0, + 317.0, + 824.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 325.0, + 928.0, + 325.0, + 928.0, + 333.0, + 918.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 322.0, + 971.0, + 322.0, + 971.0, + 334.0, + 960.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 302.0, + 1051.0, + 302.0, + 1051.0, + 325.0, + 974.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 306.0, + 1076.0, + 306.0, + 1076.0, + 317.0, + 1066.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 306.0, + 1089.0, + 306.0, + 1089.0, + 316.0, + 1080.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 309.0, + 1128.0, + 309.0, + 1128.0, + 335.0, + 1107.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 323.0, + 1157.0, + 323.0, + 1157.0, + 354.0, + 1134.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 304.0, + 1228.0, + 304.0, + 1228.0, + 336.0, + 1182.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 302.0, + 1385.0, + 302.0, + 1385.0, + 318.0, + 1323.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 299.0, + 573.0, + 299.0, + 573.0, + 324.5, + 536.0, + 324.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.75, + 317.5, + 904.75, + 317.5, + 904.75, + 335.5, + 897.75, + 335.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 303.5, + 1078.0, + 303.5, + 1078.0, + 328.0, + 1016.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 314.5, + 1339.0, + 314.5, + 1339.0, + 334.5, + 1331.0, + 334.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 318.5, + 342.0, + 318.5, + 342.0, + 327.0, + 311.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 326.0, + 837.0, + 326.0, + 837.0, + 335.5, + 815.0, + 335.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.75, + 317.0, + 1074.75, + 317.0, + 1074.75, + 328.0, + 1050.75, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 326.0, + 581.0, + 326.0, + 581.0, + 335.5, + 543.0, + 335.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 312.0, + 669.0, + 312.0, + 669.0, + 334.0, + 601.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.75, + 335.0, + 349.75, + 335.0, + 349.75, + 345.0, + 319.75, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 332.5, + 464.0, + 332.5, + 464.0, + 342.5, + 419.0, + 342.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 329.0, + 679.0, + 329.0, + 679.0, + 342.0, + 629.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.25, + 335.5, + 705.25, + 335.5, + 705.25, + 347.5, + 658.25, + 347.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 331.0, + 1109.0, + 331.0, + 1109.0, + 343.0, + 1059.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.75, + 331.0, + 1306.75, + 331.0, + 1306.75, + 344.5, + 1253.75, + 344.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 806.0, + 602.0, + 806.0, + 602.0, + 847.0, + 292.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 806.0, + 1406.0, + 806.0, + 1406.0, + 847.0, + 674.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 841.0, + 1404.0, + 841.0, + 1404.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 870.0, + 1404.0, + 870.0, + 1404.0, + 906.0, + 293.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 900.0, + 1404.0, + 900.0, + 1404.0, + 938.0, + 293.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 967.0, + 295.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 960.0, + 1349.0, + 960.0, + 1349.0, + 1000.0, + 293.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1916.0, + 1402.0, + 1916.0, + 1402.0, + 1949.0, + 296.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1946.0, + 746.0, + 1946.0, + 746.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1946.0, + 1402.0, + 1946.0, + 1402.0, + 1980.0, + 819.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1221.0, + 1975.0, + 1221.0, + 2012.0, + 293.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1250.0, + 1404.0, + 1250.0, + 1404.0, + 1284.0, + 296.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1279.0, + 1405.0, + 1279.0, + 1405.0, + 1315.0, + 294.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1309.0, + 1250.0, + 1309.0, + 1250.0, + 1346.0, + 294.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 439.0, + 1126.0, + 439.0, + 1126.0, + 476.0, + 295.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 439.0, + 1405.0, + 439.0, + 1405.0, + 476.0, + 1148.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 470.0, + 1405.0, + 470.0, + 1405.0, + 506.0, + 293.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 499.0, + 1405.0, + 499.0, + 1405.0, + 539.0, + 291.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 530.0, + 988.0, + 530.0, + 988.0, + 567.0, + 295.0, + 567.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 308, + 303, + 1498, + 303, + 1498, + 784, + 308, + 784 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 472, + 1059, + 1212, + 1059, + 1212, + 1613, + 472, + 1613 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 296, + 828, + 1410, + 828, + 1410, + 923, + 296, + 923 + ], + "score": 0.945 + }, + { + "category_id": 4, + "poly": [ + 294, + 1659, + 1403, + 1659, + 1403, + 1726, + 294, + 1726 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.851 + }, + { + "category_id": 1, + "poly": [ + 299, + 982, + 724, + 982, + 724, + 1013, + 299, + 1013 + ], + "score": 0.742 + }, + { + "category_id": 0, + "poly": [ + 298, + 230, + 814, + 230, + 814, + 261, + 298, + 261 + ], + "score": 0.693 + }, + { + "category_id": 0, + "poly": [ + 299, + 982, + 724, + 982, + 724, + 1013, + 299, + 1013 + ], + "score": 0.149 + }, + { + "category_id": 13, + "poly": [ + 1130, + 859, + 1173, + 859, + 1173, + 889, + 1130, + 889 + ], + "score": 0.88, + "latex": "1 0 ^ { 4 }" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 314.0, + 366.0, + 314.0, + 366.0, + 344.0, + 325.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 301.0, + 757.0, + 301.0, + 757.0, + 333.0, + 539.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 314.0, + 915.0, + 314.0, + 915.0, + 344.0, + 873.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 302.0, + 1288.0, + 302.0, + 1288.0, + 333.0, + 1104.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 383.0, + 363.0, + 383.0, + 363.0, + 413.0, + 325.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 374.0, + 958.0, + 374.0, + 958.0, + 411.0, + 873.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 413.0, + 461.0, + 413.0, + 461.0, + 440.0, + 433.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 441.0, + 363.0, + 441.0, + 363.0, + 630.0, + 308.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 438.0, + 912.0, + 438.0, + 912.0, + 632.0, + 853.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 442.0, + 1134.0, + 442.0, + 1134.0, + 502.0, + 1051.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 488.0, + 599.0, + 488.0, + 599.0, + 519.0, + 529.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 519.0, + 363.0, + 519.0, + 363.0, + 549.0, + 327.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 506.0, + 665.0, + 506.0, + 665.0, + 554.0, + 548.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 521.0, + 911.0, + 521.0, + 911.0, + 547.0, + 877.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 502.0, + 1238.0, + 502.0, + 1238.0, + 567.0, + 1131.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 554.0, + 805.0, + 554.0, + 805.0, + 629.0, + 650.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 573.0, + 1329.0, + 573.0, + 1329.0, + 604.0, + 1264.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 588.0, + 364.0, + 588.0, + 364.0, + 686.0, + 325.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 601.0, + 849.0, + 601.0, + 849.0, + 678.0, + 715.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 590.0, + 912.0, + 590.0, + 912.0, + 686.0, + 873.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 591.0, + 1500.0, + 591.0, + 1500.0, + 696.0, + 1286.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 715.0, + 861.0, + 715.0, + 861.0, + 753.0, + 810.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 737.0, + 496.0, + 737.0, + 496.0, + 765.0, + 456.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 737.0, + 610.0, + 737.0, + 610.0, + 765.0, + 568.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 737.0, + 724.0, + 737.0, + 724.0, + 765.0, + 684.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 737.0, + 843.0, + 737.0, + 843.0, + 767.0, + 800.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 737.0, + 1044.0, + 737.0, + 1044.0, + 765.0, + 1004.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 737.0, + 1158.0, + 737.0, + 1158.0, + 765.0, + 1118.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 737.0, + 1275.0, + 737.0, + 1275.0, + 765.0, + 1234.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 737.0, + 1389.0, + 737.0, + 1389.0, + 767.0, + 1348.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1465.0, + 737.0, + 1504.0, + 737.0, + 1504.0, + 765.0, + 1465.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 755.0, + 730.0, + 755.0, + 730.0, + 785.0, + 564.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 755.0, + 1281.0, + 755.0, + 1281.0, + 785.0, + 1114.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.25, + 397.0, + 1036.25, + 397.0, + 1036.25, + 431.5, + 964.25, + 431.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 395.5, + 446.0, + 395.5, + 446.0, + 429.5, + 352.0, + 429.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 428.0, + 490.0, + 428.0, + 490.0, + 462.0, + 444.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.25, + 431.5, + 1044.25, + 431.5, + 1044.25, + 446.5, + 1038.25, + 446.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.75, + 457.0, + 545.75, + 457.0, + 545.75, + 499.5, + 481.75, + 499.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.75, + 491.5, + 1178.75, + 491.5, + 1178.75, + 524.5, + 1110.75, + 524.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 531.0, + 686.0, + 531.0, + 686.0, + 582.5, + 619.0, + 582.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.25, + 530.5, + 1304.25, + 530.5, + 1304.25, + 594.0, + 1195.25, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.75, + 678.5, + 813.75, + 678.5, + 813.75, + 691.0, + 807.75, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.25, + 675.5, + 1474.25, + 675.5, + 1474.25, + 726.5, + 1386.25, + 726.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 725.5, + 367.0, + 725.5, + 367.0, + 763.5, + 339.0, + 763.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 724.0, + 915.0, + 724.0, + 915.0, + 764.0, + 887.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1068.0, + 582.0, + 1068.0, + 582.0, + 1118.0, + 491.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1057.0, + 962.0, + 1057.0, + 962.0, + 1093.0, + 772.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 1133.0, + 662.0, + 1133.0, + 662.0, + 1140.0, + 654.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1136.0, + 536.0, + 1136.0, + 536.0, + 1175.0, + 488.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1205.0, + 535.0, + 1205.0, + 535.0, + 1240.0, + 491.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1214.0, + 809.0, + 1214.0, + 809.0, + 1243.0, + 748.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1215.0, + 507.0, + 1215.0, + 507.0, + 1438.0, + 471.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1229.0, + 814.0, + 1229.0, + 814.0, + 1261.0, + 776.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1277.0, + 533.0, + 1277.0, + 533.0, + 1304.0, + 489.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1285.0, + 950.0, + 1285.0, + 950.0, + 1322.0, + 886.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1301.0, + 1001.0, + 1301.0, + 1001.0, + 1344.0, + 918.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1347.0, + 533.0, + 1347.0, + 533.0, + 1374.0, + 493.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1357.0, + 1078.0, + 1357.0, + 1078.0, + 1403.0, + 991.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1413.0, + 533.0, + 1413.0, + 533.0, + 1443.0, + 492.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1393.0, + 1115.0, + 1393.0, + 1115.0, + 1432.0, + 1023.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1427.0, + 1164.0, + 1427.0, + 1164.0, + 1471.0, + 1057.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1481.0, + 533.0, + 1481.0, + 533.0, + 1512.0, + 488.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1562.0, + 665.0, + 1562.0, + 665.0, + 1598.0, + 620.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1562.0, + 778.0, + 1562.0, + 778.0, + 1594.0, + 730.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1562.0, + 890.0, + 1562.0, + 890.0, + 1596.0, + 843.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1562.0, + 1001.0, + 1562.0, + 1001.0, + 1596.0, + 955.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1562.0, + 1112.0, + 1562.0, + 1112.0, + 1596.0, + 1067.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1562.0, + 1222.0, + 1562.0, + 1222.0, + 1595.0, + 1176.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1582.0, + 962.0, + 1582.0, + 962.0, + 1620.0, + 770.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1107.0, + 594.0, + 1107.0, + 594.0, + 1123.5, + 577.0, + 1123.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.25, + 1120.5, + 668.25, + 1120.5, + 668.25, + 1159.5, + 616.25, + 1159.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1239.0, + 908.0, + 1239.0, + 908.0, + 1308.0, + 822.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.25, + 1319.0, + 988.25, + 1319.0, + 988.25, + 1380.5, + 967.25, + 1380.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1548.5, + 538.0, + 1548.5, + 538.0, + 1594.5, + 506.0, + 1594.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 829.0, + 1403.0, + 829.0, + 1403.0, + 863.0, + 295.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 860.0, + 1129.0, + 860.0, + 1129.0, + 894.0, + 294.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 860.0, + 1404.0, + 860.0, + 1404.0, + 894.0, + 1174.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 891.0, + 1182.0, + 891.0, + 1182.0, + 923.0, + 295.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1660.0, + 1405.0, + 1660.0, + 1405.0, + 1696.0, + 296.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1689.0, + 1391.0, + 1689.0, + 1391.0, + 1730.0, + 292.0, + 1730.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": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 817.0, + 228.0, + 817.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 982.0, + 726.0, + 982.0, + 726.0, + 1015.0, + 297.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 982.0, + 726.0, + 982.0, + 726.0, + 1015.0, + 297.0, + 1015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/HyRVBzap-/HyRVBzap-.md b/parse/train/HyRVBzap-/HyRVBzap-.md new file mode 100644 index 0000000000000000000000000000000000000000..0ee84e4d2f562b0a8bb5c6e7fed306f6b6986496 --- /dev/null +++ b/parse/train/HyRVBzap-/HyRVBzap-.md @@ -0,0 +1,307 @@ +# CASCADE ADVERSARIAL MACHINE LEARNING REGULARIZED WITH A UNIFIED EMBEDDING + +Taesik Na, Jong Hwan Ko & Saibal Mukhopadhyay + +School of Electrical and Computer Engineering +Georgia Institute of Technology +Atlanta, GA 30332, USA +{taesik.na, jonghwan.ko, smukhopadhyay6}@gatech.edu + +# ABSTRACT + +Injecting adversarial examples during training, known as adversarial training, can improve robustness against one-step attacks, but not for unknown iterative attacks. To address this challenge, we first show iteratively generated adversarial images easily transfer between networks trained with the same strategy. Inspired by this observation, we propose cascade adversarial training, which transfers the knowledge of the end results of adversarial training. We train a network from scratch by injecting iteratively generated adversarial images crafted from already defended networks in addition to one-step adversarial images from the network being trained. We also propose to utilize embedding space for both classification and low-level (pixel-level) similarity learning to ignore unknown pixel level perturbation. During training, we inject adversarial images without replacing their corresponding clean images and penalize the distance between the two embeddings (clean and adversarial). Experimental results show that cascade adversarial training together with our proposed low-level similarity learning efficiently enhances the robustness against iterative attacks, but at the expense of decreased robustness against one-step attacks. We show that combining those two techniques can also improve robustness under the worst case black box attack scenario. + +# 1 INTRODUCTION + +Injecting adversarial examples during training (adversarial training), (Goodfellow et al., 2015; Kurakin et al., 2017; Huang et al., 2015) increases the robustness of a network against adversarial attacks. The networks trained with one-step methods have shown noticeable robustness against onestep attacks, but, limited robustness against iterative attacks at test time. To address this challenge, we have made the following contributions: + +Cascade adversarial training: We first show that iteratively generated adversarial images transfer well between networks when the source and the target networks are trained with the same training method. Inspired by this observation, we propose cascade adversarial training which transfers the knowledge of the end results of adversarial training. In particular, we train a network by injecting iter FGSM images (section 2.1) crafted from an already defended network (a network trained with adversarial training) in addition to the one-step adversarial images crafted from the network being trained. The concept of using already trained networks for adversarial training is also introduced in (Tramer et al., 2017). In their work, purely trained networks are used as another source networks \` to generate one-step adversarial examples for training. On the contrary, our cascade adversarial training uses already defended network for iter FGSM images generation. + +Low level similarity learning: We advance the previous data augmentation approach (Kurakin et al., 2017) by adding additional regularization in deep features to encourage a network to be insensitive to adversarial perturbation. In particular, we inject adversarial images in the mini batch without replacing their corresponding clean images and penalize distance between embeddings from the clean and the adversarial examples. There are past examples of using embedding space for learning similarity of high level features like face similarity between two different images (Schroff et al., 2015; Parkhi et al., 2015; Wen et al., 2016). Instead, we use the embedding space for learning similarity of the pixel level differences between two similar images. The intuition of using this regularization is that small difference on input should not drastically change the high level feature representation. + +Analysis of adversarial training: We train ResNet models (He et al., 2016) on MNIST (LeCun & Cortes, 2010) and CIFAR10 dataset (Krizhevsky, 2009) using the proposed adversarial training. We first show low level similarity learning improves robustness of the network against adversarial images generated by one-step and iterative methods compared to the prior work. We show that modifying the weight of the distance measure in the loss function can help control trade-off between accuracies for the clean and adversarial examples. + +Together with cascade adversarial training and low-level similarity learning, we achieve accuracy increase against unknown iterative attacks, but at the expense of decreased accuracy for one-step attacks. We also show our cascade adversarial training and low level similarity learning provide much better robustness against black box attack. + +# 2 BACKGROUND ON ADVERSARIAL ATTACKS + +# 2.1 ATTACK METHODS + +One-step fast gradient sign method (FGSM), referred to as “step FGSM”, generates adversarial image $\bar { X } ^ { a d v }$ by adding sign of the gradients w.r.t. the clean image $\boldsymbol { X }$ multiplied by $\epsilon \in [ 0 , 2 5 5 ]$ as shown below (Goodfellow et al., 2015): + +$$ +X ^ { a d v } = X + \epsilon \mathrm { s i g n } ( \nabla _ { X } J ( X , y _ { t r u e } ) ) +$$ + +One-step target class method generates $X ^ { a d v }$ by subtracting sign of the gradients computed on a target false label as follows: + +$$ +X ^ { a d v } = X - \epsilon \mathrm { s i g n } ( \nabla _ { X } J ( X , y _ { t a r g e t } ) ) +$$ + +We use least likely class $y _ { L L }$ as a target class and refer this method as “step ll”. + +Basic iterative method, referred to as “iter FGSM”, applies FGSM with small $\alpha$ multiple times. + +$$ +X _ { 0 } ^ { a d v } = X , \quad X _ { N } ^ { a d v } = C l i p _ { X , \epsilon } \{ X _ { N - 1 } ^ { a d v } + \alpha \ \mathrm { s i g n } ( \nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { t r u e } ) ) \} +$$ + +We use $\alpha = 1$ , number of iterations $N$ to be $\operatorname* { m i n } ( \epsilon + 4 , 1 . 2 5 \epsilon ) . ~ C l i p _ { X , \epsilon }$ is elementwise clipping function where the input is clipped to the range $[ \mathrm { m a x } ( 0 , X - \epsilon ) , \mathrm { m i n } ( 2 5 5 , X + \epsilon ) ]$ . + +Iterative least-likely class method, referred to as “iter ll”, is to apply “step ll” with small $\alpha$ multiple times. + +$$ +X _ { 0 } ^ { a d v } = X , \quad X _ { N } ^ { a d v } = C l i p _ { X , \epsilon } \{ X _ { N - 1 } ^ { a d v } - \alpha \ \mathrm { s i g n } ( \nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { L L } ) ) \} +$$ + +Carlini and Wagner attack (Carlini & Wagner, 2017) referred to as $\mathbf { \tilde { \Sigma } } ^ { 6 6 } \mathbf { C } \mathbf { W } ^ { \prime } $ solves an optimization problem which minimizes both an objective function $f$ (such that attack is success if and only if $\stackrel { \bullet } { f } ( X ^ { a d v } ) < 0 )$ and a distance measure between $X ^ { a d v }$ and $\boldsymbol { X }$ . + +Black box attack is performed by testing accuracy on a target network with the adversarial images crafted from a source network different from the target network. Lower accuracy means successful black-box attack. When we use the same network for both target and source network, we call this as white-box attack. + +# 2.2 DEFENSE METHODS + +Adversarial training (Kurakin et al., 2017): is a form of data augmentation where it injects adversarial examples during training. In this method, $k$ examples are taken from the mini batch $B$ (size of $m$ ) and the adversarial examples are generated with one of step method. The $k$ adversarial examples replaces the corresponding clean examples when making mini batch. Below we refer this adversarial training method as “Kurakin’s”. + +Table 1: CIFAR10 test results $( \% )$ under black box attacks for ${ \epsilon } { = } 1 6$ . Source networks share the same initialization which is different from the target networks. {Target: R20, $\mathsf { R } 2 0 _ { K }$ : standard, Kurakin’s, Source: $\mathbf { R } 2 0 \mathbf { _ 2 }$ , $\mathbf { R } 2 0 _ { K 2 }$ : standard, Kurakin’s.} + +
TargetSource: step-FGSMSource: iter_FGSM
R202R20K2R202R20K2
R2016.231.62.760.1
R20K66.782.755.828.5
+ +![](images/9574ecbaff76aa59c142821a74b75ca57db11c28bc841935cae1c0896257b6aa.jpg) +Figure 1: Correlation between adversarial noises from different networks for each $\epsilon$ . Shaded region shows $\pm 0 . 1$ standard deviation of each line. + +Ensemble adversarial training (Tramer et al., 2017): \` is essentially the same with the adversarial training, but uses several pre-trained vanilla networks to generate one-step adversarial examples for training. Below we refer this adversarial training method as “Ensemble”. + +# 3 PROPOSED APPROACH + +# 3.1 TRANSFERABILITY ANALYSIS + +We first show transferability between purely trained networks and adversarially trained networks under black box attack. We use ResNet (He et al., 2016) models for CIFAR10 classification. We first train 20-layer ResNets with different methods (standard training, adversarial training (Kurakin et al., 2017)) and use those as target networks. We re-train networks (standard training and adversarial training) with the different initialization from the target networks, and use the trained networks as source networks. Experimental details and model descriptions can be found in Appendix A and B. In table 1, we report test accuracies under black box attack. + +Transferability (step attack): We first observe that high robustness against one-step attack between defended networks $( \mathsf { R } 2 0 _ { K 2 } \ldots \mathsf { R } 2 0 _ { K } )$ ), and low robustness between undefended networks $( \mathsf { R 2 0 _ { 2 } }$ - $> { \textrm R } 2 0 \AA ,$ ). This observation shows that error surfaces of neural networks are driven by the training method and networks trained with the same method end up similar optimum states. + +It is noteworthy to observe that the accuracies against step attack from the undefended network $( \mathsf { R } 2 0 _ { 2 } )$ are always lower than those from defended network $( \mathsf { R } 2 0 _ { K { \bf 2 } } )$ . Possible explanation for this would be that adversarial training tweaks gradient seen from the clean image to point toward weaker adversarial point along that gradient direction. As a result, one-step adversarial images from defended networks become weaker than those from undefended network. + +Transferability (iterative attack): We observe “iter FGSM” attack remains very strong even under the black box attack scenario but only between undefended networks or defended networks. This is because iter FGSM noises $( X ^ { a d v } – X )$ from defended networks resemble each other. As shown in figure 1, we observe higher correlation between iter FGSM noises from a defended network $( \mathsf { R } 2 0 \kappa )$ and those from another defended network $( \mathsf { R } 2 0 _ { K { \bf 2 } } )$ ). + +Difficulty of defense/attack under the black box attack scenario: As seen from this observation, it is efficient to attack an undefended/defended network with iter FGSM examples crafted from another undefended/defended network. Thus, when we want to build a robust network under the black box attack scenario, it is desired to check accuracies for the adversarial examples crafted from other networks trained with the same strategy. + +# 3.2 CASCADE ADVERSARIAL TRAINING + +Inspired by the observation that iter FGSM images transfer well between defended networks, we propose cascade adversarial training, which trains a network by injecting iter FGSM images crafted from an already defended network. We hypothesize that the network being trained with cascade adversarial training will learn to avoid such adversarial perturbation, enhancing robustness against iter FGSM attack. The intuition behind this proposed method is that we transfer the knowledge of the end results of adversarial training. In particular, we train a network by injecting iter FGSM images crafted from already defended network in addition to the one-step adversarial images crafted from the network being trained. + +![](images/3e15aca655600181f36bed5f1e7e2e1f2bf9f8ad5a8ba6aba416917d887a4350.jpg) +Figure 2: Cascade adversarial training regularized with a unified embedding. + +![](images/94897954e10187615eda8e565cf77b8ca80a2765e4e1577dda4e06d5b6bda6a3.jpg) +Figure 3: (Left) Bidirectional loss. (Right) Pivot loss. + +# 3.3 REGULARIZATION WITH A UNIFIED EMBEDDING + +We advance the algorithm proposed in (Kurakin et al., 2017) by adding low level similarity learning. Unlike (Kurakin et al., 2017), we include the clean examples used for generating adversarial images in the mini batch. Once one step forward pass is performed with the mini batch, embeddings are followed by the softmax layer for the cross entropy loss for the standard classification. At the same time, we take clean embeddings and adversarial embeddings, and minimize the distance between the two with the distance based loss. + +The distance based loss encourages two similar images (clean and adversarial) to produce the same outputs, not necessarily the true labels. Thus, low-level similarity learning can be considered as an unsupervised learning. By adding regularization in higher embedding layer, convolution filters gradually learn how to ignore such pixel-level perturbation. We have applied regularization on lower layers with an assumption that low level pixel perturbation can be ignored in lower hierarchy of networks. However, adding regularization term on higher embedding layer right before the softmax layer showed best performance. The more convolutional filters have chance to learn such similarity, the better the performance. Note that cross entropy doesn’t encourage two similar images to produce the same output labels. Standard image classification using cross entropy compares ground truth labels with outputs of a network regardless of how similar training images are. + +The entire training process combining cascade adversarial training and low level similarity learning is shown in figure 2. We define the total loss as follows: + +$$ +L o s s = \frac { 1 } { ( m - k ) + \lambda k } \Bigg ( \sum _ { i = 1 } ^ { m - k } L ( { \bf X } _ { i } | y _ { i } ) + \lambda \sum _ { i = 1 } ^ { k } L ( { \bf X } _ { i } ^ { a d v } | y _ { i } ) \Bigg ) + \lambda _ { 2 } \sum _ { i = 1 } ^ { k } L _ { d i s t } ( E _ { i } ^ { a d v } , E _ { i } ) +$$ + +$\mathbf { \mathcal { E } } _ { i }$ and $E _ { i } ^ { a d v }$ are the resulting embeddings from $X _ { i }$ and $X _ { i } ^ { a d v }$ , respectively. $m$ is the size of the mini batch, $k \left( \leq m / 2 \right)$ is the number of adversarial images in the mini batch. $\lambda$ is the parameter to control the relative weight of classification loss for adversarial images. $\lambda _ { 2 }$ is the parameter to control the relative weight of the distance based loss $L _ { d i s t }$ in the total loss. + +Bidirectional loss minimizes the distance between the two embeddings by moving both clean and adversarial embeddings as shown in the left side of the figure 3. + +$$ +L _ { d i s t } ( \pmb { { E } } _ { i } ^ { a d v } , \pmb { { E } } _ { i } ) = | | \pmb { { E } } _ { i } ^ { a d v } - \pmb { { E } } _ { i } | | _ { N } ^ { N } , \quad N \in { 1 , 2 \quad i = 1 , 2 , . . . , k } +$$ + +Table 2: MNIST test results $( \% )$ for 20-layer ResNet models $\prime { \epsilon } = 0 . 3 { ^ { * } } 2 5 5$ at test time). $\{ { \bf R } 2 0 { \bf M }$ : standard training, ${ \mathrm { R } } 2 0 { \mathrm { M } } _ { K }$ : Kurakin’s adversarial training, ${ \bf R } 2 0 { \bf M } _ { B }$ : Bidirectional loss, ${ \bf R } 2 0 { \bf M } _ { P }$ : P ivot loss. $\}$ CW $L _ { \infty }$ attack is performed with 100 test samples (10 samples per each class) and the number of adversarial examples with $\epsilon > 0 . 3 ^ { * } 2 5 5$ is reported. Additional details for CW attack can be found in Appendix F + +
Modelcleanstep_llstep_FGSMiter_lliter_FGSMCW
R20M99.69.710.30.00.00
R20MK99.696.794.589.060.246
R20Mb (Ours)99.597.396.297.288.581
R20Mp (Ours)99.597.195.796.988.982
+ +We tried $N = 1$ , 2 and found not much difference between the two. We report the results with $N =$ 2 for the rest of the paper otherwise noted. When $N = 2$ , $L _ { d i s t }$ becomes L2 loss. + +Pivot loss minimizes the distance between the two embeddings by moving only the adversarial embeddings as shown in the right side of the figure 3. + +$$ +L _ { d i s t } ( \pmb { { E } } _ { i } ^ { a d v } | \pmb { { E } } _ { i } ) = | | \pmb { { E } } _ { i } ^ { a d v } - \pmb { { E } } _ { i } | | _ { N } ^ { N } , \quad N \in { 1 , 2 \quad i = 1 , 2 , . . . , k } +$$ + +In this case, clean embeddings ( $\mathbf { \mathcal { E } } _ { i }$ ) serve as pivots to the adversarial embeddings. In particular, we don’t back-propagate through the clean embeddings for the distance based loss. The intuition behind the use of pivot loss is that the embedding from a clean image can be treated as the ground truth embedding. + +# 4 LOW LEVEL SIMILARITY LEARNING ANALYSIS + +# 4.1 EXPERIMENTAL RESULTS ON MNIST + +We first analyze the effect of low level similarity learning on MNIST. We train ResNet models (He et al., 2016) with different methods (standard training, Kurakin’s adversarial training and adversarial training with our distance based loss). Experimental details can be found in Appendix A. + +Table 2 shows the accuracy results for MNIST test dataset for different types of attack methods. As shown in the table, our method achieves better accuracy than Kurakin’s method for all types of attacks with a little sacrifice on the accuracy for the clean images. Even though adversarial training is done only with “step ll”, additional regularization increases robustness against unknown “step FGSM”, “iter ll”, “iter FGSM” and CW $L _ { \infty }$ attacks. This shows that our low-level similarity learning can successfully regularize the one-step adversarial perturbation and its vicinity for simple image classification like MNIST. + +# 4.2 EMBEDDING SPACE VISUALIZATION + +To visualize the embedding space, we modify 20-layer ResNet model where the last fully connected layer $\left( 6 4 \mathbf { x } 1 0 \right)$ is changed to two fully connected layers ( $6 4 \mathrm { x } 2$ and 2x10). We re-train networks with standard training, Kurakin’s method and our pivot loss on MNIST. 1 In figure 4, we draw embeddings (dimension $^ { 1 = 2 }$ ) between two fully connected layers. As seen from this figure, adversarial images from the network trained with standard training cross the decision boundary easily as $\epsilon$ increases. With Kurakin’s adversarial training, the distances between clean and adversarial embeddings are minimized compared to standard training. And our pivot loss further minimizes distance between the clean and adversarial embeddings. Note that our pivot loss also decreases absolute value of the embeddings, thus, higher $\lambda _ { 2 }$ will eventually result in overlap between distinct embedding distributions. We also observe that intra class variation of the clean embeddings are also minimized for the network trained with our pivot loss as shown in the scatter plot in figure 4 (c). + +![](images/03d39dce6fed9b5b8ffb7ae3b4de76e2f07a5e1bf76cb53aab54a3b3914a9521.jpg) +Figure 4: Embedding space visualization for modified ResNet models trained on MNIST. $\mathbf { X }$ -axis and y-axis show first and second dimension of embeddings respectively. Scatter plot shows first 100 clean embeddings per each class on MNIST test set. Each arrow shows difference between two embeddings (one from iter FGSM image () and the other from $( \epsilon { + } 8 ) ,$ ). We draw arrows from $\epsilon = 0$ to $\epsilon = 7 6$ $( \approx 0 . 3 ^ { * } 2 5 5 )$ ) for one sample image per each class. We observe differences between clean and corresponding adversarial embeddings are minimized for the network trained with pivot loss. + +# 4.3 EFFECT OF $\lambda _ { 2 }$ ON CIFAR10 + +We train 20-layer ResNet models with pivot loss and various $\lambda _ { \mathrm { 2 } } \mathrm { s }$ for CIFAR10 dataset to study effects of the weight of the distance measure in the loss function. Figure 5 shows that a higher $\lambda _ { 2 }$ increases accuracy of the iteratively generated adversarial images. However, it reduces accuracy on the clean images, and increasing $\lambda _ { 2 }$ above 0.3 even results in divergence of the training. This is because embedding distributions of different classes will eventually overlap since absolute value of the embedding will be decreased as $\lambda _ { 2 }$ increases as seen from the section 4.2. In this experiment, we show that there exists clear trade-off between accuracy for the clean images and that for the adversarial images, and we recommend using a very high $\lambda _ { 2 }$ only under strong adversarial environment. + +![](images/c7c186c5dd4d21b6bfbfbcbee29ca466d12198bfbe2a9938e520a56b1e3d928b.jpg) +Figure 5: Accuracy vs. $\lambda _ { 2 }$ + +# 5 CASCADE ADVERSARIAL TRAINING ANALYSIS + +# 5.1 SOURCE NETWORK SELECTION + +We further study the transferability of iter FGSM images between various architectures. To this end, we first train 56-layer ResNet networks (Kurakin’s, pivot loss) with the same initialization. Then we train another 56-layer ResNet network (Kurakin’s) with different initialization. We repeat the training for the 110-layer ResNet networks. We measure correlation between iter FGSM noises from different networks. + +![](images/34d7075ba0af839593f33f5d84485be6ec355dc2d545d65ab9e3441ef984ed68.jpg) +Figure 6 (a) shows correlation between iter FGSM noises crafted from Kurakin’s network and those from Pivot network with the same initialization. Conjectured from (Kurakin et al., 2017), we observe high corre +Figure 6: Correlation between iter FGSM noises crafted from different networks for each . Correlation is averaged over randomly chosen 128 images from CIFAR10 test-set. + +Table 3: CIFAR10 test results $( \% )$ for 110-layer ResNet models. CW $L _ { \infty }$ attack is performed with 100 test samples (10 samples per each class) and the number of adversarial examples with $\epsilon > 2$ or 4 is reported. $\{ \mathrm { R 1 1 0 } _ { K }$ : Kurakin’s, $\mathrm { R } 1 0 _ { P }$ : P ivot loss, $\mathrm { R } 1 1 0 _ { E }$ : Ensemble training, $\mathrm { R 1 1 0 } _ { K , C }$ : Kurakin’s and $C$ ascade training, $\mathrm { R 1 1 0 } _ { P , E }$ : P ivot loss and Ensemble training, and $\mathrm { R 1 1 0 } _ { P , C }$ : P ivot loss and Cascade training} + +
Modelcleanstep_llstep_FGSMiter_FGSMCW
e=2∈=16e=2∈=16e=2∈=4∈=2e=4
R110K92.388.390.786.095.259.49.2254
R110p (Ours)92.386.089.481.691.664.120.9327
R110E92.386.374.384.172.963.521.1246
R110k,c (Ours)92.386.272.882.666.769.333.4205
R110p,ε (Ours)91.384.065.777.654.566.838.33816
R110p,c (Ours)91.585.776.482.469.173.542.52715
+ +lation between iter FGSM noises from networks with the same initialization. Correlation between iter FGSM noises from the networks with different initialization, however, becomes lower as the network is deeper as shown in figure 6 (b). Since the degree of freedom increases as the network size increases, adversarially trained networks prone to end up with different states, thus, making transfer rate lower. To maximize the benefit of the cascade adversarial training, we propose to use the same initialization for a cascade network and a source network used for iterative adversarial examples generation. + +# 5.2 WHITE BOX ATTACK ANALYSIS + +We first compare a network trained with Kurakin’s method and that with pivot loss. We train 110- layer ResNet models with/without pivot loss and report accuracy in table 3. We observe our lowlevel similarity learning further improves robustness against iterative attacks compared to Kurakin’s adversarial training. However, the accuracy improvements against iterative attacks (iter FGSM, CW) are limited, showing regularization effect of low-level similarity learning is not sufficient for the iterative attacks on complex color images like CIFAR10. This is different from MNIST test cases where we observed significant accuracy increase for iterative attacks only with pivot loss. We observe label leaking phenomenon reported in (Kurakin et al., 2017) happens even though we don’t train a network with step FGSM images. Additional analysis for this phenomenon is explained in Appendix D. + +Next, we train a network from scratch with iter FGSM examples crafted from the defended network, $\mathrm { R } 1 0 _ { P }$ . We use the same initialization used in $\mathrm { R } 1 1 0 _ { P }$ as discussed in 5.1. In particular, iter FGSM images are crafted from $\mathrm { R } 1 0 _ { P }$ with CIFAR10 training images for $\epsilon = 1 , 2 , . . . , 1 6$ , and those are used randomly together with step ll examples from the network being trained. We train cascade networks with/without pivot loss. We also train networks with ensemble adversarial training (Tramer et al., \` 2017) with/without pivot loss for comparison. The implementation details for the trained models can be found in Appendix B. + +We find several meaningful observations in table 3. First, ensemble and cascade models show improved accuracy against iterative attack although at the expense of decreased accuracy for onestep attacks compared to the baseline defended network $( \mathrm { R } 1 1 0 _ { K } )$ ). Additional data augmentation from other networks enhances the robustness against iterative attack, weakening label leaking effect caused by one-step adversarial training. + +Second, our low-level similarity learning $( \mathrm { R } 1 1 0 _ { P , E }$ , $\operatorname { R 1 1 0 } _ { P , C } )$ ) further enhances robustness against iterative attacks including fully unknown CW attack (especially for $\epsilon { = } 4$ ). Additional knowledge learned from data augmentation through cascade/ensemble adversarial training enables networks to learn partial knowledge of perturbations generated by an iterative method. And the learned iterative perturbations become regularized further with our low-level similarity learning making networks robust against unknown iterative attacks. + +Table 4: CIFAR10 test results $( \% )$ for 110-layer ResNet models under black box attacks $\left( \epsilon = 1 6 \right)$ . {Target: same networks in table 3 and $\mathrm { R } 1 1 0 _ { K }$ : Kurakin’s, Source: re-trained baseline, Kurakin’s, cascade and ensemble networks with/without pivot loss. Source networks use the different initialization from the target networks. Additional details of the models can be found in Appendix B.} + +
TargetSource: iter_FGSM
R1102R110K2R110E2R110p2R110K,C2R110p,E2R110p,C2
R110K70.573.227.977.067.354.680.8
R110E77.979.555.879.068.254.782.7
R110p (Ours)75.975.639.678.568.361.383.3
R110k,c (Ours)56.480.261.179.567.462.682.1
R110p,E (Ours)78.282.167.781.773.468.483.8
R110p,C (Ours)71.980.463.980.171.164.283.0
+ +Third, our low-level similarity learning serves as a good regularizer for adversarial images, but not for the clean images for ensemble/cascade models (reduced accuracy for the clean images for $\mathrm { R 1 1 0 } _ { P , E }$ and $\mathrm { R 1 1 0 } _ { P , C }$ in table 3). Compared to pure adversarial training with one-step adversarial examples, the network sees more various adversarial perturbations during training as a result of ensemble and cascade training. Those perturbations are prone to end up embeddings in the vicinity of decision boundary more often than perturbations caused by one-step adversarial training. Pivot loss pulls the vicinity of those adversarial embeddings toward their corresponding clean embeddings. During this process, clean embeddings from other classes might also be moved toward the decision boundary which results in decreased accuracy for the clean images. + +# 5.3 BLACK BOX ATTACK ANALYSIS + +We finally perform black box attack analysis for the cascade/ensemble networks with/without pivot loss. We report black box attack accuracy with the source networks trained with the same method, but with different initialization from the target networks. The reason for this is adversarial examples transfer well between networks trained with the same strategy as observed in section 3.1. We re-train 110-layer ResNet models using Kurakin’s, cascade and ensemble adversarial training with/without low-level similarity learning and use those networks as source networks for black-box attacks. Baseline 110-layer ResNet model is also included as a source network. Target networks are the same networks used in table 3. We found iter FGSM attack resulted in lower accuracy than step FGSM attack, thus, report iter FGSM attack only in table 4. + +We first observe that iter FGSM attack from ensemble models $( \mathrm { R } 1 1 0 _ { E 2 }$ , $\mathrm { R 1 1 0 } _ { P , E 2 } )$ is strong (results in lower accuracy) compared to that from any other trained networks. 2 Since ensemble models learn various perturbation during training, adversarial noises crafted from those networks might be more general for other networks making them transfer easily between defended networks. + +Second, cascade adversarial training breaks chicken and egg problem. (In section 3.1, we found that it is efficient to use a defended network as a source network to attack another defended network.) Even though the transferability between defended networks is reduced for deeper networks, cascade network $( \mathrm { R } 1 1 0 _ { K , C } )$ shows worst case performance against the attack not from a defended network, but from a purely trained network $\mathbf { ( R 1 1 0 _ { 2 } ) }$ . Possible solution to further improve the worst case robustness would be to use more than one network as source networks (including pure/defended networks) for iter FGSM images generation for cascade adversarial training. + +Third, ensemble/cascade networks together with our low-level similarity learning $( \mathrm { R } 1 1 0 _ { P , E }$ , $\mathrm { R 1 1 0 } _ { P , C } )$ show better worst case accuracy under black box attack scenario. This shows that enhancing robustness against iterative white box attack also improves robustness against iterative black box attack. + +# 6 CONCLUSION + +We performed through transfer analysis and showed iter FGSM images transfer easily between networks trained with the same strategy. We exploited this and proposed cascade adversarial training, a method to train a network with iter FGSM adversarial images crafted from already defended networks. We also proposed adversarial training regularized with a unified embedding for classification and low- level similarity learning by penalizing distance between the clean and their corresponding adversarial embeddings. Combining those two techniques (low level similarity learning $^ +$ cascade adversarial training) with deeper networks further improved robustness against iterative attacks for both white-box and black-box attacks. + +However, there is still a gap between accuracy for the clean images and that for the adversarial images. Improving robustness against both one-step and iterative attacks still remains challenging since it is shown to be difficult to train networks robust for both one-step and iterative attacks simultaneously. Future research is necessary to further improve the robustness against iterative attack without sacrificing the accuracy for step attacks or clean images under both white-box attack and black-box attack scenarios. + +# ACKNOWLEDGMENTS + +We thank Alexey Kurakin of Google Brain and Li Chen of Intel for comments that greatly improved the manuscript. The research reported here was supported in part by the Defense Advanced Research Projects Agency (DARPA) under contract number HR0011-17-2-0045. The views and conclusions contained herein are those of the authors and should not be interpreted as necessarily representing the official policies or endorsements, either expressed or implied, of DARPA. + +# REFERENCES + +Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In IEEE Symposium on Security and Privacy, 2017. + +Ian J. Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In Proceedings of the International Conference on Learning Representations (ICLR), 2015. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2016, Las Vegas, NV, USA, June 27-30, 2016, pp. 770–778, 2016. doi: 10.1109/CVPR.2016.90. URL http://dx.doi.org/10.1109/CVPR.2016.90. + +Ruitong Huang, Bing Xu, Dale Schuurmans, and Csaba Szepesvari. Learning with a strong adver-´ sary. CoRR, abs/1511.03034, 2015. URL http://arxiv.org/abs/1511.03034. + +Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009. + +Alexey Kurakin, Ian J. Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In Proceedings of the International Conference on Learning Representations (ICLR), 2017. + +Yann LeCun and Corinna Cortes. MNIST handwritten digit database. 2010. URL http://yann. lecun.com/exdb/mnist/. + +O. M. Parkhi, A. Vedaldi, and A. Zisserman. Deep face recognition. In Proceedings of the British Machine Vision Conference (BMVC), 2015. + +Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face recognition and clustering. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2015. + +Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick McDaniel. Ensem- \` ble adversarial training: Attacks and defenses. CoRR, abs/1705.07204, 2017. URL http: //arxiv.org/abs/1705.07204. + +Yandong Wen, Kaipeng Zhang, Zhifeng Li, and Yu Qiao. A discriminative feature learning approach for deep face recognition. In Computer Vision - ECCV 2016 - 14th European Conference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part VII, pp. 499– 515, 2016. doi: 10.1007/978-3-319-46478-7 31. URL http://dx.doi.org/10.1007/ 978-3-319-46478-7_31. + +# A EXPERIMENTAL SETUP + +We scale down the image values to [0,1] and don’t perform any data augmentation for MNIST. For CIFAR10, we scale down the image values to [0,1] and subtract per-pixel mean values. We perform $2 4 \times 2 4$ random crop and random flip on $3 2 \mathrm { x } 3 2 $ original images. We generate adversarial images with “step ll” after these steps otherwise noted. + +We use stochastic gradient descent (SGD) optimizer with momentum of 0.9, weight decay of 0.0001 and mini batch size of 128. For adversarial training, we generate $k = 6 4$ adversarial examples among 128 images in one mini-batch. We start with a learning rate of 0.1, divide it by 10 at $4 \mathrm { k }$ and 6k iterations, and terminate training at 8k iterations for MNIST, and $4 8 \mathrm { k }$ and $7 2 \mathrm { k }$ iterations, and terminate training at 94k iterations for CIFAR10. 3 + +We also found that initialization affects the training results slightly as in (Kurakin et al., 2017), thus, we pre-train the networks 2 and 10 epochs for MNIST and CIFAR10, and use these as initial starting points for different configurations. We use $m a x \_ e = 0 . 3 ^ { * } 2 5 5$ and 16 for MNIST and CIFAR10 respectively. + +# B MODEL DESCRIPTIONS + +We summarize the model names used in this paper in table 5. For ensemble adversarial training, pre-trained networks as in table 7 together with the network being trained are used to generate onestep adversarial examples during training. For cascade adversarial training, pre-trained defended networks as in table 6 are used to generate iter FGSM images, and the network being trained is used to generate one-step adversarial examples during training. + +Table 5: Model descriptions +Table 6: Ensemble model description + +
Initialization
DatasetResNetGroupTrainingModel
MNIST20-layerAstandard training Kurakin'sR20M R20MK
Bidirection lossR20MB
20-layerPivot lossR20Mp
standard trainingR20
Kurakin'sR20K
Ensemble trainingR20E
BBidirection loss Pivot lossR20B R20p
Kurakin's & Cascade trainingR20K,C
Pivot loss & Ensemble trainingR20p,E
Pivot loss & Cascade trainingR20p,C
standard trainingR202
CIFAR10 56-layerCKurakin'sR20K2
DPivot loss standard trainingR20p2 R203
E standard trainingR204
FKurakin'sR56K R56p
Pivot loss
GKurakin'sR56K2
110-layerH standard trainingR110
Kurakin'sR110K
Pivot loss Ensemble trainingR110p R110E
Kurakin's & Cascade training
R110K,C
Pivot loss & Ensemble trainingR110p,E
Pivot loss & Cascade trainingR110p,C
Istandard training Kurakin'sR1102
R110k2
Ensemble trainingR110E2
Pivot lossR110p2
Kurakin's & Cascade training Pivot loss & Ensemble trainingR110k,C2 R110p,E2
JPivot loss & Cascade trainingR110p,C2
standard trainingR1103
Kstandard trainingR1104
+ +Table 7: Cascade model description + +
Ensemble modelsPre-trained models
R20E,R20p,E,R110E,R110P,E R110E2,R110P,E2R203,R110g R204,R1104
+ +
Cascade modelsPre-trained model
R20K,c,R20p,CR20p
R110K,c,R110p,CR110p
R110K,c2,R110P,C2R110p2
+ +![](images/a63d4cd60c68a6ff53d587a7bfc58f89eb11f682c0bbc103d1fd3a001a954254.jpg) +Figure 7: Argument to the softmax vs. $\epsilon$ in test time. “step ll”, “step FGSM” and ”random sign” methods were used to generate test-time adversarial images. Arguments to the softmax were measured by changing $\epsilon$ for each test method and averaged over randomly chosen 128 images from CIFAR10 test-set. Blue line represents true class and the red line represents mean of the false classes. Shaded region shows $\pm \nobreakspace 1 \nobreakspace$ standard deviation of each line. + +We draw average value of the argument to the softmax layer for the true class and the false classes to visualize how the adversarial training works as in figure 7. Standard training, as expected, shows dramatic drop in the values for the true class as we increase $\epsilon$ in “step ll” or “step FGSM direction. With adversarial training, we observe that the value drop is limited at small $\epsilon$ and our method even increases the value in certain range upto ${ \epsilon } { = } 1 0$ . Note that adversarial training is not the same as the gradient masking.As illustrated in figure 7, it exposes gradient information, however, quickly distort gradients along the sign of the gradient (“step ll” or “step FGSM) direction. We also observe improved results (broader margins than baseline) for “random sign” added images even though we didn’t inject random sign added images during training. Overall shape of the argument to the softmax layer in our case becomes smoother than Kurakin’s method, suggesting our method is good for pixel level regularization. Even though actual value of the embeddings for the true class in our case is smaller than that in Kurakin’s, the standard deviation of our case is less than Kurakin’s, making better margin between the true class and false classes. + +![](images/bb0f617516f1c753274ff6e6c797bcd0df9ac1a88e8bee55ff5efc872dab5a74.jpg) +Figure 8: Averaged Pearson’s correlation coefficient between the gradients w.r.t. two images. Correlation were measured by changing $\epsilon$ for each adversarial image and averaged over randomly chosen 128 images from CIFAR10 test-set. Shaded region represents $\pm \ : 0 . 5$ standard deviation of each line. + +We observe accuracies for the “step FGSM” adversarial images become higher than those for the clean images (“label leaking” phenomenon) by training with “step FGSM” examples as in (Kurakin et al., 2017). Interestingly, we also observe “label leaking” phenomenon even without providing true labels for adversarial images generation. We argue that “label leaking” is a natural result of the adversarial training. + +To understand the nature of adversarial training, we measure correlation between gradients w.r.t. different images (i.e. clean vs. adversarial) as a measure of error surface similarity. We measure correlation between gradients w.r.t. (1) clean vs. “step ll” image, (2) clean vs. “step FGSM” image, (3) clean vs. “random sign” added image, and (4) “step ll” image vs. “step FGSM” image for three trained networks (a) R20, (b) $\mathsf { R } 2 0 _ { K }$ and (c) ${ \mathrm { R } } 2 0 _ { P }$ (Ours) in table 5. Figure 8 draws average value of correlations for each case. + +Meaning of the correlation: In order to make strong adversarial images with “step FGSM” method, correlation between the gradient w.r.t. the clean image and the gradient w.r.t. its corresponding adversarial image should remain high since the “step FGSM” method only use the gradient w.r.t. the clean image $( \epsilon { = } 0 )$ . Lower correlation means perturbing the adversarial image at $\epsilon$ further to the gradient (seen from the clean image) direction is no longer efficient. + +Results of adversarial training: We observe that (1) and (2) become quickly lower than (3) as $\epsilon$ increases. This means that, when we move toward the steepest (gradient) direction on the error surface, gradient is more quickly uncorrelated with the gradient w.r.t. the clean image than when we move to random direction. As a result of adversarial training, this uncorrelation is observed at a lower $\epsilon$ making one-step attack less efficient even with small perturbation. (1), (2) and (3) for our case are slightly lower than Kurakin’s method at the same $\epsilon$ which means that our method is better at defending one-step attacks than Kurakin’s. + +Error surface similarity between “step ll” and “step FGSM” images: We also observe (4) remains high with higher $\epsilon$ for all trained networks. This means that the error surface (gradient) of the “step ll” image and that of its corresponding “step FGSM” image resemble each other. That is the reason why we get the robustness against “step FGSM” method only by training with “step ll” method and vice versa. (4) for our case is slightly higher than Kurakin’s method at the same $\epsilon$ and that means our similarity learning tends to make error surfaces of the adversarial images with “step ll” and “step FGSM” method to be more similar. + +Analysis of label leaking phenomenon: Interestingly, (2) becomes slightly negative in certain range $1 < \epsilon < 3$ for Kurakin’s, and $1 < \epsilon < 4$ for Pivot (Ours) ) and this could be the possible reason for “label leaking” phenomenon. For example, let’s assume that we have a perturbed image (by “step FGSM” method) at $\epsilon$ where the correlation between the gradients w.r.t. that image and the corresponding clean image is negative. Further increase of $\epsilon$ with the gradient (w.r.t. the clean image) direction actually decreases the loss resulting in increased accuracy (label leaking phenomenon). Due to the error surface similarity between “step ll” and “step FGSM” images and this negative correlation effect, however, label leaking phenomenon can always happen for the networks trained with one-step adversarial examples. + +# E ADDITIONAL BLACK BOX ATTACK RESULTS + +Table 8: CIFAR10 test results $( \% )$ under black box attacks between the network with the same initialization $\scriptstyle \left( \epsilon = 1 6 \right) \}$ + +
TargetSource: step_FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R2012.227.427.50.045.944.7
R20K65.781.581.851.50.018.2
R20p58.189.391.748.913.40.0
+ +Table 8 shows that black box attack between trained networks with the same initialization tends to be more successful than that between networks with different initialization as explained in (Kurakin et al., 2017). + +Table 9: CIFAR10 test results $( \% )$ under black box attacks for ${ \epsilon } { = } 1 6$ . {Target and Source networks are switched from the table 1} + +
TargetSource: step-FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R20217.933.934.54.154.854.3
R20K265.084.684.561.225.330.4
R20p266.488.287.261.627.736.1
+ +In table 9, our method $( \mathsf { R } 2 0 _ { P 2 } )$ is always better at one-step and iterative black box attack from defended networks $( \mathsf { R } 2 0 _ { K } , \mathsf { R } 2 0 _ { P } )$ and undefended network (R20) than Kurakin’s method $( { \bf R } 2 0 _ { B { \bf 2 } } )$ . However, it is hard to tell which method is better than the other one as explained in the main paper. + +Table 10: CIFAR10 test results $( \% )$ for cascade networks under black box attacks for ${ \epsilon } { = } 1 6$ . {Target and Source: Please see the model descriptions in Appendix B.} + +
TargetSource: iter_FGSM
R110R110KR110ER110pR110K,CR110p,ER110p,C
R110K280.572.749.368.049.641.067.9
R110E282.759.139.559.651.540.369.6
R110p2 (Ours)80.375.954.272.254.944.372.4
R110k,C2 (Ours)62.174.761.572.346.539.067.9
R110p,E2 (Ours)81.579.050.077.356.945.575.2
R110p,c2 (Ours)72.276.460.673.851.040.972.0
+ +In table 10, we show black box attack accuracies with the source and the target networks switched from the table 4. We also observe that networks trained with both low-level similarity learning and cascade/ensemble adversarial training $( \mathrm { R } 1 1 0 _ { P , C 2 }$ , $\mathbf { R } 1 1 0 _ { P , E 2 } )$ show better worst-case performance than other networks. Overall, iter FGSM images crafted from ensemble model families $( \mathrm { R } 1 1 0 _ { E }$ , $\operatorname { R 1 1 0 } _ { P , E } )$ remain strong on the defended networks. + +![](images/ab53c2fe8209182e38731b9aaaef260818586606f8ae3b9ef8464c393141354e.jpg) +Figure 9: Cumulative distribution function vs. $\epsilon$ for 100 test adversarial examples generated by CW $L _ { \infty }$ attack. Lower CDF value for a fixed $\epsilon$ means the better defense. + +Carlini and Wagner (CW) $L _ { \infty }$ attack solves the following optimization problem for every input $\boldsymbol { X }$ + +$$ +m i n i m i z e \quad c \cdot f ( X + \pmb { \delta } ) + \sum _ { i } [ ( | \delta _ { i } | - \tau ) ^ { + } ] +$$ + +where, the function $f$ is defined such that attack is success if and only if $f ( X + \delta ) < 0 , \mathfrak { c }$ δ is the target perturbation defined as $X ^ { a d v } - X$ , $c$ is the parameter to control the relative weight of function $f$ in the total cost function, and $\tau$ is the control threshold used to penalize any terms that exceed $\tau$ . + +Since CW $L _ { \infty }$ attack is computationally expensive, we only use 100 test examples (10 examples per each class). We search adversarial example $X ^ { a d v }$ with $c \in \{ 0 . 1 , 0 . 2 , 0 . 5 , 1 , 2 , 5 , 1 0 , 2 0 \}$ and $\tau \in \ \{ 0 . 0 2 , 0 . 0 4 , . . . , 0 . 6 \}$ for MNIST and $c ~ \in ~ \{ 0 . 1 , 0 . 3 , 1 , 3 , 1 0 , 3 0 , 1 0 0 \}$ and $\tau \_ { \in }$ $\{ 0 . 0 0 1 , 0 . 0 0 \dot { 2 } , . . . , 0 . 0 1 , 0 . 0 1 2 , . . . , 0 . 0 2 , 0 . 0 2 4 , . . . , 0 . 0 4 , 0 . 0 4 8 , . . . , 0 . 0 8 \}$ for CIFAR10. We use Adam optimizer with an initial learning rate of $0 . 0 1 / c$ since we found constant initial learning rate for $c \cdot f ( \pmb { X } + \pmb { \delta } )$ term is critical for successful adversarial images generation. We terminate the search after 2,000 iterations for each $\boldsymbol { X }$ , $c$ and $\tau$ . If $f ( X + \delta ) < 0$ and the resulting $| | \delta | | _ { \infty }$ is lower than the current best distance, we update $X ^ { a d v }$ . + +Figure 9 shows cumulative distribution function of $\epsilon$ for 100 successful adversarial examples per each network. We report the number of adversarial examples with $\epsilon > 0 . 3 ^ { * } 2 5 5$ for MNIST and that with $\epsilon > 2$ or 4 for CIFAR10. As seen from this figure, our approaches provide robust defense against CW $L _ { \infty }$ attack compared to other approaches. \ No newline at end of file diff --git a/parse/train/HyRVBzap-/HyRVBzap-_content_list.json b/parse/train/HyRVBzap-/HyRVBzap-_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..6f538cbe3a4886b64529eae9570c6e4cabe6d2ee --- /dev/null +++ b/parse/train/HyRVBzap-/HyRVBzap-_content_list.json @@ -0,0 +1,1591 @@ +[ + { + "type": "text", + "text": "CASCADE ADVERSARIAL MACHINE LEARNING REGULARIZED WITH A UNIFIED EMBEDDING ", + "text_level": 1, + "bbox": [ + 176, + 99, + 820, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Taesik Na, Jong Hwan Ko & Saibal Mukhopadhyay ", + "bbox": [ + 184, + 170, + 545, + 185 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "School of Electrical and Computer Engineering \nGeorgia Institute of Technology \nAtlanta, GA 30332, USA \n{taesik.na, jonghwan.ko, smukhopadhyay6}@gatech.edu ", + "bbox": [ + 184, + 186, + 681, + 239 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 276, + 544, + 291 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Injecting adversarial examples during training, known as adversarial training, can improve robustness against one-step attacks, but not for unknown iterative attacks. To address this challenge, we first show iteratively generated adversarial images easily transfer between networks trained with the same strategy. Inspired by this observation, we propose cascade adversarial training, which transfers the knowledge of the end results of adversarial training. We train a network from scratch by injecting iteratively generated adversarial images crafted from already defended networks in addition to one-step adversarial images from the network being trained. We also propose to utilize embedding space for both classification and low-level (pixel-level) similarity learning to ignore unknown pixel level perturbation. During training, we inject adversarial images without replacing their corresponding clean images and penalize the distance between the two embeddings (clean and adversarial). Experimental results show that cascade adversarial training together with our proposed low-level similarity learning efficiently enhances the robustness against iterative attacks, but at the expense of decreased robustness against one-step attacks. We show that combining those two techniques can also improve robustness under the worst case black box attack scenario. ", + "bbox": [ + 233, + 309, + 764, + 544 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 571, + 336, + 588 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Injecting adversarial examples during training (adversarial training), (Goodfellow et al., 2015; Kurakin et al., 2017; Huang et al., 2015) increases the robustness of a network against adversarial attacks. The networks trained with one-step methods have shown noticeable robustness against onestep attacks, but, limited robustness against iterative attacks at test time. To address this challenge, we have made the following contributions: ", + "bbox": [ + 174, + 603, + 823, + 672 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Cascade adversarial training: We first show that iteratively generated adversarial images transfer well between networks when the source and the target networks are trained with the same training method. Inspired by this observation, we propose cascade adversarial training which transfers the knowledge of the end results of adversarial training. In particular, we train a network by injecting iter FGSM images (section 2.1) crafted from an already defended network (a network trained with adversarial training) in addition to the one-step adversarial images crafted from the network being trained. The concept of using already trained networks for adversarial training is also introduced in (Tramer et al., 2017). In their work, purely trained networks are used as another source networks \\` to generate one-step adversarial examples for training. On the contrary, our cascade adversarial training uses already defended network for iter FGSM images generation. ", + "bbox": [ + 174, + 680, + 825, + 819 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Low level similarity learning: We advance the previous data augmentation approach (Kurakin et al., 2017) by adding additional regularization in deep features to encourage a network to be insensitive to adversarial perturbation. In particular, we inject adversarial images in the mini batch without replacing their corresponding clean images and penalize distance between embeddings from the clean and the adversarial examples. There are past examples of using embedding space for learning similarity of high level features like face similarity between two different images (Schroff et al., 2015; Parkhi et al., 2015; Wen et al., 2016). Instead, we use the embedding space for learning similarity of the pixel level differences between two similar images. The intuition of using this regularization is that small difference on input should not drastically change the high level feature representation. ", + "bbox": [ + 174, + 827, + 823, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 103, + 821, + 145 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Analysis of adversarial training: We train ResNet models (He et al., 2016) on MNIST (LeCun & Cortes, 2010) and CIFAR10 dataset (Krizhevsky, 2009) using the proposed adversarial training. We first show low level similarity learning improves robustness of the network against adversarial images generated by one-step and iterative methods compared to the prior work. We show that modifying the weight of the distance measure in the loss function can help control trade-off between accuracies for the clean and adversarial examples. ", + "bbox": [ + 174, + 152, + 825, + 237 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Together with cascade adversarial training and low-level similarity learning, we achieve accuracy increase against unknown iterative attacks, but at the expense of decreased accuracy for one-step attacks. We also show our cascade adversarial training and low level similarity learning provide much better robustness against black box attack. ", + "bbox": [ + 174, + 243, + 825, + 299 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND ON ADVERSARIAL ATTACKS ", + "text_level": 1, + "bbox": [ + 174, + 320, + 566, + 335 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 ATTACK METHODS ", + "text_level": 1, + "bbox": [ + 176, + 351, + 348, + 364 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "One-step fast gradient sign method (FGSM), referred to as “step FGSM”, generates adversarial image $\\bar { X } ^ { a d v }$ by adding sign of the gradients w.r.t. the clean image $\\boldsymbol { X }$ multiplied by $\\epsilon \\in [ 0 , 2 5 5 ]$ as shown below (Goodfellow et al., 2015): ", + "bbox": [ + 173, + 376, + 826, + 419 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/1255c66c34121c9e4885dd473449c158936c386b948fa1100acba8edc69c7df4.jpg", + "text": "$$\nX ^ { a d v } = X + \\epsilon \\mathrm { s i g n } ( \\nabla _ { X } J ( X , y _ { t r u e } ) )\n$$", + "text_format": "latex", + "bbox": [ + 369, + 424, + 629, + 443 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "One-step target class method generates $X ^ { a d v }$ by subtracting sign of the gradients computed on a target false label as follows: ", + "bbox": [ + 169, + 455, + 825, + 483 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/9c3704a86ae00977475deb3f9b3530a6ae7b3b615e0f4866c59366e0ca11c381.jpg", + "text": "$$\nX ^ { a d v } = X - \\epsilon \\mathrm { s i g n } ( \\nabla _ { X } J ( X , y _ { t a r g e t } ) )\n$$", + "text_format": "latex", + "bbox": [ + 362, + 489, + 633, + 508 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We use least likely class $y _ { L L }$ as a target class and refer this method as “step ll”. ", + "bbox": [ + 174, + 522, + 694, + 537 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Basic iterative method, referred to as “iter FGSM”, applies FGSM with small $\\alpha$ multiple times. ", + "bbox": [ + 169, + 542, + 807, + 559 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/1b3e1127ee0213428c760a8433ad9167027e7c56ff6f39bbd5924f62d731f5ab.jpg", + "text": "$$\nX _ { 0 } ^ { a d v } = X , \\quad X _ { N } ^ { a d v } = C l i p _ { X , \\epsilon } \\{ X _ { N - 1 } ^ { a d v } + \\alpha \\ \\mathrm { s i g n } ( \\nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { t r u e } ) ) \\}\n$$", + "text_format": "latex", + "bbox": [ + 240, + 564, + 756, + 587 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We use $\\alpha = 1$ , number of iterations $N$ to be $\\operatorname* { m i n } ( \\epsilon + 4 , 1 . 2 5 \\epsilon ) . ~ C l i p _ { X , \\epsilon }$ is elementwise clipping function where the input is clipped to the range $[ \\mathrm { m a x } ( 0 , X - \\epsilon ) , \\mathrm { m i n } ( 2 5 5 , X + \\epsilon ) ]$ . ", + "bbox": [ + 173, + 599, + 823, + 630 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Iterative least-likely class method, referred to as “iter ll”, is to apply “step ll” with small $\\alpha$ multiple times. ", + "bbox": [ + 173, + 636, + 823, + 665 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/6eb0a38899718bb27efd5684809622afb0fef795ffc29528a6180b900f0e4d25.jpg", + "text": "$$\nX _ { 0 } ^ { a d v } = X , \\quad X _ { N } ^ { a d v } = C l i p _ { X , \\epsilon } \\{ X _ { N - 1 } ^ { a d v } - \\alpha \\ \\mathrm { s i g n } ( \\nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { L L } ) ) \\}\n$$", + "text_format": "latex", + "bbox": [ + 245, + 670, + 753, + 693 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Carlini and Wagner attack (Carlini & Wagner, 2017) referred to as $\\mathbf { \\tilde { \\Sigma } } ^ { 6 6 } \\mathbf { C } \\mathbf { W } ^ { \\prime } $ solves an optimization problem which minimizes both an objective function $f$ (such that attack is success if and only if $\\stackrel { \\bullet } { f } ( X ^ { a d v } ) < 0 )$ and a distance measure between $X ^ { a d v }$ and $\\boldsymbol { X }$ . ", + "bbox": [ + 174, + 705, + 825, + 748 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Black box attack is performed by testing accuracy on a target network with the adversarial images crafted from a source network different from the target network. Lower accuracy means successful black-box attack. When we use the same network for both target and source network, we call this as white-box attack. ", + "bbox": [ + 174, + 755, + 825, + 810 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 DEFENSE METHODS ", + "text_level": 1, + "bbox": [ + 176, + 828, + 356, + 843 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Adversarial training (Kurakin et al., 2017): is a form of data augmentation where it injects adversarial examples during training. In this method, $k$ examples are taken from the mini batch $B$ (size of $m$ ) and the adversarial examples are generated with one of step method. The $k$ adversarial examples replaces the corresponding clean examples when making mini batch. Below we refer this adversarial training method as “Kurakin’s”. ", + "bbox": [ + 174, + 853, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "table", + "img_path": "images/aea920e27ab8fdce7f5e623a12d60e754f7868ac8c75a3056a62de968ed1bb8d.jpg", + "table_caption": [ + "Table 1: CIFAR10 test results $( \\% )$ under black box attacks for ${ \\epsilon } { = } 1 6$ . Source networks share the same initialization which is different from the target networks. {Target: R20, $\\mathsf { R } 2 0 _ { K }$ : standard, Kurakin’s, Source: $\\mathbf { R } 2 0 \\mathbf { _ 2 }$ , $\\mathbf { R } 2 0 _ { K 2 }$ : standard, Kurakin’s.} " + ], + "table_footnote": [], + "table_body": "
TargetSource: step-FGSMSource: iter_FGSM
R202R20K2R202R20K2
R2016.231.62.760.1
R20K66.782.755.828.5
", + "bbox": [ + 173, + 204, + 532, + 276 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/9574ecbaff76aa59c142821a74b75ca57db11c28bc841935cae1c0896257b6aa.jpg", + "image_caption": [ + "Figure 1: Correlation between adversarial noises from different networks for each $\\epsilon$ . Shaded region shows $\\pm 0 . 1$ standard deviation of each line. " + ], + "image_footnote": [], + "bbox": [ + 552, + 103, + 820, + 204 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Ensemble adversarial training (Tramer et al., 2017): \\` is essentially the same with the adversarial training, but uses several pre-trained vanilla networks to generate one-step adversarial examples for training. Below we refer this adversarial training method as “Ensemble”. ", + "bbox": [ + 173, + 301, + 825, + 343 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 PROPOSED APPROACH", + "text_level": 1, + "bbox": [ + 176, + 363, + 393, + 378 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 TRANSFERABILITY ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 395, + 423, + 409 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We first show transferability between purely trained networks and adversarially trained networks under black box attack. We use ResNet (He et al., 2016) models for CIFAR10 classification. We first train 20-layer ResNets with different methods (standard training, adversarial training (Kurakin et al., 2017)) and use those as target networks. We re-train networks (standard training and adversarial training) with the different initialization from the target networks, and use the trained networks as source networks. Experimental details and model descriptions can be found in Appendix A and B. In table 1, we report test accuracies under black box attack. ", + "bbox": [ + 174, + 420, + 825, + 517 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Transferability (step attack): We first observe that high robustness against one-step attack between defended networks $( \\mathsf { R } 2 0 _ { K 2 } \\ldots \\mathsf { R } 2 0 _ { K } )$ ), and low robustness between undefended networks $( \\mathsf { R 2 0 _ { 2 } }$ - $> { \\textrm R } 2 0 \\AA ,$ ). This observation shows that error surfaces of neural networks are driven by the training method and networks trained with the same method end up similar optimum states. ", + "bbox": [ + 174, + 525, + 823, + 580 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "It is noteworthy to observe that the accuracies against step attack from the undefended network $( \\mathsf { R } 2 0 _ { 2 } )$ are always lower than those from defended network $( \\mathsf { R } 2 0 _ { K { \\bf 2 } } )$ . Possible explanation for this would be that adversarial training tweaks gradient seen from the clean image to point toward weaker adversarial point along that gradient direction. As a result, one-step adversarial images from defended networks become weaker than those from undefended network. ", + "bbox": [ + 174, + 588, + 823, + 657 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Transferability (iterative attack): We observe “iter FGSM” attack remains very strong even under the black box attack scenario but only between undefended networks or defended networks. This is because iter FGSM noises $( X ^ { a d v } – X )$ from defended networks resemble each other. As shown in figure 1, we observe higher correlation between iter FGSM noises from a defended network $( \\mathsf { R } 2 0 \\kappa )$ and those from another defended network $( \\mathsf { R } 2 0 _ { K { \\bf 2 } } )$ ). ", + "bbox": [ + 174, + 665, + 825, + 734 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Difficulty of defense/attack under the black box attack scenario: As seen from this observation, it is efficient to attack an undefended/defended network with iter FGSM examples crafted from another undefended/defended network. Thus, when we want to build a robust network under the black box attack scenario, it is desired to check accuracies for the adversarial examples crafted from other networks trained with the same strategy. ", + "bbox": [ + 174, + 741, + 825, + 811 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 CASCADE ADVERSARIAL TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 828, + 465, + 842 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Inspired by the observation that iter FGSM images transfer well between defended networks, we propose cascade adversarial training, which trains a network by injecting iter FGSM images crafted from an already defended network. We hypothesize that the network being trained with cascade adversarial training will learn to avoid such adversarial perturbation, enhancing robustness against iter FGSM attack. The intuition behind this proposed method is that we transfer the knowledge of the end results of adversarial training. In particular, we train a network by injecting iter FGSM images crafted from already defended network in addition to the one-step adversarial images crafted from the network being trained. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/3e15aca655600181f36bed5f1e7e2e1f2bf9f8ad5a8ba6aba416917d887a4350.jpg", + "image_caption": [ + "Figure 2: Cascade adversarial training regularized with a unified embedding. " + ], + "image_footnote": [], + "bbox": [ + 223, + 98, + 785, + 237 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/94897954e10187615eda8e565cf77b8ca80a2765e4e1577dda4e06d5b6bda6a3.jpg", + "image_caption": [ + "Figure 3: (Left) Bidirectional loss. (Right) Pivot loss. " + ], + "image_footnote": [], + "bbox": [ + 294, + 273, + 709, + 347 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 397, + 825, + 440 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.3 REGULARIZATION WITH A UNIFIED EMBEDDING ", + "text_level": 1, + "bbox": [ + 174, + 457, + 552, + 472 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We advance the algorithm proposed in (Kurakin et al., 2017) by adding low level similarity learning. Unlike (Kurakin et al., 2017), we include the clean examples used for generating adversarial images in the mini batch. Once one step forward pass is performed with the mini batch, embeddings are followed by the softmax layer for the cross entropy loss for the standard classification. At the same time, we take clean embeddings and adversarial embeddings, and minimize the distance between the two with the distance based loss. ", + "bbox": [ + 174, + 482, + 825, + 565 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The distance based loss encourages two similar images (clean and adversarial) to produce the same outputs, not necessarily the true labels. Thus, low-level similarity learning can be considered as an unsupervised learning. By adding regularization in higher embedding layer, convolution filters gradually learn how to ignore such pixel-level perturbation. We have applied regularization on lower layers with an assumption that low level pixel perturbation can be ignored in lower hierarchy of networks. However, adding regularization term on higher embedding layer right before the softmax layer showed best performance. The more convolutional filters have chance to learn such similarity, the better the performance. Note that cross entropy doesn’t encourage two similar images to produce the same output labels. Standard image classification using cross entropy compares ground truth labels with outputs of a network regardless of how similar training images are. ", + "bbox": [ + 173, + 573, + 825, + 713 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The entire training process combining cascade adversarial training and low level similarity learning is shown in figure 2. We define the total loss as follows: ", + "bbox": [ + 173, + 718, + 823, + 747 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/05961acf28424a1591ec2f03701fa08a08759e475106beffa1aa7bca3f6ec615.jpg", + "text": "$$\nL o s s = \\frac { 1 } { ( m - k ) + \\lambda k } \\Bigg ( \\sum _ { i = 1 } ^ { m - k } L ( { \\bf X } _ { i } | y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { k } L ( { \\bf X } _ { i } ^ { a d v } | y _ { i } ) \\Bigg ) + \\lambda _ { 2 } \\sum _ { i = 1 } ^ { k } L _ { d i s t } ( E _ { i } ^ { a d v } , E _ { i } )\n$$", + "text_format": "latex", + "bbox": [ + 200, + 752, + 795, + 796 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$\\mathbf { \\mathcal { E } } _ { i }$ and $E _ { i } ^ { a d v }$ are the resulting embeddings from $X _ { i }$ and $X _ { i } ^ { a d v }$ , respectively. $m$ is the size of the mini batch, $k \\left( \\leq m / 2 \\right)$ is the number of adversarial images in the mini batch. $\\lambda$ is the parameter to control the relative weight of classification loss for adversarial images. $\\lambda _ { 2 }$ is the parameter to control the relative weight of the distance based loss $L _ { d i s t }$ in the total loss. ", + "bbox": [ + 174, + 809, + 823, + 866 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Bidirectional loss minimizes the distance between the two embeddings by moving both clean and adversarial embeddings as shown in the left side of the figure 3. ", + "bbox": [ + 173, + 872, + 821, + 901 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/a4d7acae9b01aadbad4425654117f9ae7745fe9216f3c571a1defe3e5244383e.jpg", + "text": "$$\nL _ { d i s t } ( \\pmb { { E } } _ { i } ^ { a d v } , \\pmb { { E } } _ { i } ) = | | \\pmb { { E } } _ { i } ^ { a d v } - \\pmb { { E } } _ { i } | | _ { N } ^ { N } , \\quad N \\in { 1 , 2 \\quad i = 1 , 2 , . . . , k }\n$$", + "text_format": "latex", + "bbox": [ + 285, + 906, + 712, + 925 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/c673904c52bc36a2ac20b6ef79b31fbb15ba9161edb999ffb29ed9aa24e870aa.jpg", + "table_caption": [ + "Table 2: MNIST test results $( \\% )$ for 20-layer ResNet models $\\prime { \\epsilon } = 0 . 3 { ^ { * } } 2 5 5$ at test time). $\\{ { \\bf R } 2 0 { \\bf M }$ : standard training, ${ \\mathrm { R } } 2 0 { \\mathrm { M } } _ { K }$ : Kurakin’s adversarial training, ${ \\bf R } 2 0 { \\bf M } _ { B }$ : Bidirectional loss, ${ \\bf R } 2 0 { \\bf M } _ { P }$ : P ivot loss. $\\}$ CW $L _ { \\infty }$ attack is performed with 100 test samples (10 samples per each class) and the number of adversarial examples with $\\epsilon > 0 . 3 ^ { * } 2 5 5$ is reported. Additional details for CW attack can be found in Appendix F " + ], + "table_footnote": [], + "table_body": "
Modelcleanstep_llstep_FGSMiter_lliter_FGSMCW
R20M99.69.710.30.00.00
R20MK99.696.794.589.060.246
R20Mb (Ours)99.597.396.297.288.581
R20Mp (Ours)99.597.195.796.988.982
", + "bbox": [ + 233, + 188, + 763, + 268 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We tried $N = 1$ , 2 and found not much difference between the two. We report the results with $N =$ 2 for the rest of the paper otherwise noted. When $N = 2$ , $L _ { d i s t }$ becomes L2 loss. ", + "bbox": [ + 174, + 299, + 823, + 327 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Pivot loss minimizes the distance between the two embeddings by moving only the adversarial embeddings as shown in the right side of the figure 3. ", + "bbox": [ + 173, + 334, + 821, + 363 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/65a51d48749309a44e801c21f9dca81d780b27d1739d48e04acf44c349841c79.jpg", + "text": "$$\nL _ { d i s t } ( \\pmb { { E } } _ { i } ^ { a d v } | \\pmb { { E } } _ { i } ) = | | \\pmb { { E } } _ { i } ^ { a d v } - \\pmb { { E } } _ { i } | | _ { N } ^ { N } , \\quad N \\in { 1 , 2 \\quad i = 1 , 2 , . . . , k }\n$$", + "text_format": "latex", + "bbox": [ + 287, + 367, + 710, + 387 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this case, clean embeddings ( $\\mathbf { \\mathcal { E } } _ { i }$ ) serve as pivots to the adversarial embeddings. In particular, we don’t back-propagate through the clean embeddings for the distance based loss. The intuition behind the use of pivot loss is that the embedding from a clean image can be treated as the ground truth embedding. ", + "bbox": [ + 174, + 398, + 825, + 455 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 LOW LEVEL SIMILARITY LEARNING ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 476, + 601, + 492 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 EXPERIMENTAL RESULTS ON MNIST ", + "text_level": 1, + "bbox": [ + 176, + 506, + 473, + 521 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We first analyze the effect of low level similarity learning on MNIST. We train ResNet models (He et al., 2016) with different methods (standard training, Kurakin’s adversarial training and adversarial training with our distance based loss). Experimental details can be found in Appendix A. ", + "bbox": [ + 174, + 532, + 825, + 574 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Table 2 shows the accuracy results for MNIST test dataset for different types of attack methods. As shown in the table, our method achieves better accuracy than Kurakin’s method for all types of attacks with a little sacrifice on the accuracy for the clean images. Even though adversarial training is done only with “step ll”, additional regularization increases robustness against unknown “step FGSM”, “iter ll”, “iter FGSM” and CW $L _ { \\infty }$ attacks. This shows that our low-level similarity learning can successfully regularize the one-step adversarial perturbation and its vicinity for simple image classification like MNIST. ", + "bbox": [ + 174, + 582, + 825, + 679 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2 EMBEDDING SPACE VISUALIZATION ", + "text_level": 1, + "bbox": [ + 176, + 695, + 465, + 710 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To visualize the embedding space, we modify 20-layer ResNet model where the last fully connected layer $\\left( 6 4 \\mathbf { x } 1 0 \\right)$ is changed to two fully connected layers ( $6 4 \\mathrm { x } 2$ and 2x10). We re-train networks with standard training, Kurakin’s method and our pivot loss on MNIST. 1 In figure 4, we draw embeddings (dimension $^ { 1 = 2 }$ ) between two fully connected layers. As seen from this figure, adversarial images from the network trained with standard training cross the decision boundary easily as $\\epsilon$ increases. With Kurakin’s adversarial training, the distances between clean and adversarial embeddings are minimized compared to standard training. And our pivot loss further minimizes distance between the clean and adversarial embeddings. Note that our pivot loss also decreases absolute value of the embeddings, thus, higher $\\lambda _ { 2 }$ will eventually result in overlap between distinct embedding distributions. We also observe that intra class variation of the clean embeddings are also minimized for the network trained with our pivot loss as shown in the scatter plot in figure 4 (c). ", + "bbox": [ + 174, + 722, + 825, + 875 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/03d39dce6fed9b5b8ffb7ae3b4de76e2f07a5e1bf76cb53aab54a3b3914a9521.jpg", + "image_caption": [ + "Figure 4: Embedding space visualization for modified ResNet models trained on MNIST. $\\mathbf { X }$ -axis and y-axis show first and second dimension of embeddings respectively. Scatter plot shows first 100 clean embeddings per each class on MNIST test set. Each arrow shows difference between two embeddings (one from iter FGSM image (\u000f) and the other from $( \\epsilon { + } 8 ) ,$ ). We draw arrows from $\\epsilon = 0$ to $\\epsilon = 7 6$ $( \\approx 0 . 3 ^ { * } 2 5 5 )$ ) for one sample image per each class. We observe differences between clean and corresponding adversarial embeddings are minimized for the network trained with pivot loss. " + ], + "image_footnote": [], + "bbox": [ + 173, + 114, + 825, + 251 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.3 EFFECT OF $\\lambda _ { 2 }$ ON CIFAR10 ", + "text_level": 1, + "bbox": [ + 176, + 376, + 408, + 390 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We train 20-layer ResNet models with pivot loss and various $\\lambda _ { \\mathrm { 2 } } \\mathrm { s }$ for CIFAR10 dataset to study effects of the weight of the distance measure in the loss function. Figure 5 shows that a higher $\\lambda _ { 2 }$ increases accuracy of the iteratively generated adversarial images. However, it reduces accuracy on the clean images, and increasing $\\lambda _ { 2 }$ above 0.3 even results in divergence of the training. This is because embedding distributions of different classes will eventually overlap since absolute value of the embedding will be decreased as $\\lambda _ { 2 }$ increases as seen from the section 4.2. In this experiment, we show that there exists clear trade-off between accuracy for the clean images and that for the adversarial images, and we recommend using a very high $\\lambda _ { 2 }$ only under strong adversarial environment. ", + "bbox": [ + 174, + 404, + 589, + 583 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/c7c186c5dd4d21b6bfbfbcbee29ca466d12198bfbe2a9938e520a56b1e3d928b.jpg", + "image_caption": [ + "Figure 5: Accuracy vs. $\\lambda _ { 2 }$ " + ], + "image_footnote": [], + "bbox": [ + 599, + 406, + 816, + 531 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 CASCADE ADVERSARIAL TRAINING ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 607, + 598, + 622 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 SOURCE NETWORK SELECTION ", + "text_level": 1, + "bbox": [ + 176, + 640, + 434, + 654 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We further study the transferability of iter FGSM images between various architectures. To this end, we first train 56-layer ResNet networks (Kurakin’s, pivot loss) with the same initialization. Then we train another 56-layer ResNet network (Kurakin’s) with different initialization. We repeat the training for the 110-layer ResNet networks. We measure correlation between iter FGSM noises from different networks. ", + "bbox": [ + 174, + 666, + 419, + 832 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/34d7075ba0af839593f33f5d84485be6ec355dc2d545d65ab9e3441ef984ed68.jpg", + "image_caption": [ + "Figure 6 (a) shows correlation between iter FGSM noises crafted from Kurakin’s network and those from Pivot network with the same initialization. Conjectured from (Kurakin et al., 2017), we observe high corre", + "Figure 6: Correlation between iter FGSM noises crafted from different networks for each \u000f. Correlation is averaged over randomly chosen 128 images from CIFAR10 test-set. " + ], + "image_footnote": [], + "bbox": [ + 433, + 674, + 823, + 853 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/635c6aa003fe8ab801de926562c927629e2d923031927c6371924d96ec1dc1ef.jpg", + "table_caption": [ + "Table 3: CIFAR10 test results $( \\% )$ for 110-layer ResNet models. CW $L _ { \\infty }$ attack is performed with 100 test samples (10 samples per each class) and the number of adversarial examples with $\\epsilon > 2$ or 4 is reported. $\\{ \\mathrm { R 1 1 0 } _ { K }$ : Kurakin’s, $\\mathrm { R } 1 0 _ { P }$ : P ivot loss, $\\mathrm { R } 1 1 0 _ { E }$ : Ensemble training, $\\mathrm { R 1 1 0 } _ { K , C }$ : Kurakin’s and $C$ ascade training, $\\mathrm { R 1 1 0 } _ { P , E }$ : P ivot loss and Ensemble training, and $\\mathrm { R 1 1 0 } _ { P , C }$ : P ivot loss and Cascade training} " + ], + "table_footnote": [], + "table_body": "
Modelcleanstep_llstep_FGSMiter_FGSMCW
e=2∈=16e=2∈=16e=2∈=4∈=2e=4
R110K92.388.390.786.095.259.49.2254
R110p (Ours)92.386.089.481.691.664.120.9327
R110E92.386.374.384.172.963.521.1246
R110k,c (Ours)92.386.272.882.666.769.333.4205
R110p,ε (Ours)91.384.065.777.654.566.838.33816
R110p,c (Ours)91.585.776.482.469.173.542.52715
", + "bbox": [ + 215, + 188, + 784, + 321 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "lation between iter FGSM noises from networks with the same initialization. Correlation between iter FGSM noises from the networks with different initialization, however, becomes lower as the network is deeper as shown in figure 6 (b). Since the degree of freedom increases as the network size increases, adversarially trained networks prone to end up with different states, thus, making transfer rate lower. To maximize the benefit of the cascade adversarial training, we propose to use the same initialization for a cascade network and a source network used for iterative adversarial examples generation. ", + "bbox": [ + 174, + 361, + 825, + 458 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 WHITE BOX ATTACK ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 483, + 434, + 497 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We first compare a network trained with Kurakin’s method and that with pivot loss. We train 110- layer ResNet models with/without pivot loss and report accuracy in table 3. We observe our lowlevel similarity learning further improves robustness against iterative attacks compared to Kurakin’s adversarial training. However, the accuracy improvements against iterative attacks (iter FGSM, CW) are limited, showing regularization effect of low-level similarity learning is not sufficient for the iterative attacks on complex color images like CIFAR10. This is different from MNIST test cases where we observed significant accuracy increase for iterative attacks only with pivot loss. We observe label leaking phenomenon reported in (Kurakin et al., 2017) happens even though we don’t train a network with step FGSM images. Additional analysis for this phenomenon is explained in Appendix D. ", + "bbox": [ + 174, + 512, + 825, + 651 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Next, we train a network from scratch with iter FGSM examples crafted from the defended network, $\\mathrm { R } 1 0 _ { P }$ . We use the same initialization used in $\\mathrm { R } 1 1 0 _ { P }$ as discussed in 5.1. In particular, iter FGSM images are crafted from $\\mathrm { R } 1 0 _ { P }$ with CIFAR10 training images for $\\epsilon = 1 , 2 , . . . , 1 6$ , and those are used randomly together with step ll examples from the network being trained. We train cascade networks with/without pivot loss. We also train networks with ensemble adversarial training (Tramer et al., \\` 2017) with/without pivot loss for comparison. The implementation details for the trained models can be found in Appendix B. ", + "bbox": [ + 174, + 659, + 825, + 756 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We find several meaningful observations in table 3. First, ensemble and cascade models show improved accuracy against iterative attack although at the expense of decreased accuracy for onestep attacks compared to the baseline defended network $( \\mathrm { R } 1 1 0 _ { K } )$ ). Additional data augmentation from other networks enhances the robustness against iterative attack, weakening label leaking effect caused by one-step adversarial training. ", + "bbox": [ + 174, + 763, + 823, + 833 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Second, our low-level similarity learning $( \\mathrm { R } 1 1 0 _ { P , E }$ , $\\operatorname { R 1 1 0 } _ { P , C } )$ ) further enhances robustness against iterative attacks including fully unknown CW attack (especially for $\\epsilon { = } 4$ ). Additional knowledge learned from data augmentation through cascade/ensemble adversarial training enables networks to learn partial knowledge of perturbations generated by an iterative method. And the learned iterative perturbations become regularized further with our low-level similarity learning making networks robust against unknown iterative attacks. ", + "bbox": [ + 174, + 840, + 825, + 922 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/c739090c30b8cd33548e9102c900feae48e9493fde03b6171e4d1dfecec11039.jpg", + "table_caption": [ + "Table 4: CIFAR10 test results $( \\% )$ for 110-layer ResNet models under black box attacks $\\left( \\epsilon = 1 6 \\right)$ . {Target: same networks in table 3 and $\\mathrm { R } 1 1 0 _ { K }$ : Kurakin’s, Source: re-trained baseline, Kurakin’s, cascade and ensemble networks with/without pivot loss. Source networks use the different initialization from the target networks. Additional details of the models can be found in Appendix B.} " + ], + "table_footnote": [], + "table_body": "
TargetSource: iter_FGSM
R1102R110K2R110E2R110p2R110K,C2R110p,E2R110p,C2
R110K70.573.227.977.067.354.680.8
R110E77.979.555.879.068.254.782.7
R110p (Ours)75.975.639.678.568.361.383.3
R110k,c (Ours)56.480.261.179.567.462.682.1
R110p,E (Ours)78.282.167.781.773.468.483.8
R110p,C (Ours)71.980.463.980.171.164.283.0
", + "bbox": [ + 189, + 174, + 810, + 303 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Third, our low-level similarity learning serves as a good regularizer for adversarial images, but not for the clean images for ensemble/cascade models (reduced accuracy for the clean images for $\\mathrm { R 1 1 0 } _ { P , E }$ and $\\mathrm { R 1 1 0 } _ { P , C }$ in table 3). Compared to pure adversarial training with one-step adversarial examples, the network sees more various adversarial perturbations during training as a result of ensemble and cascade training. Those perturbations are prone to end up embeddings in the vicinity of decision boundary more often than perturbations caused by one-step adversarial training. Pivot loss pulls the vicinity of those adversarial embeddings toward their corresponding clean embeddings. During this process, clean embeddings from other classes might also be moved toward the decision boundary which results in decreased accuracy for the clean images. ", + "bbox": [ + 173, + 340, + 825, + 465 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.3 BLACK BOX ATTACK ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 491, + 434, + 505 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We finally perform black box attack analysis for the cascade/ensemble networks with/without pivot loss. We report black box attack accuracy with the source networks trained with the same method, but with different initialization from the target networks. The reason for this is adversarial examples transfer well between networks trained with the same strategy as observed in section 3.1. We re-train 110-layer ResNet models using Kurakin’s, cascade and ensemble adversarial training with/without low-level similarity learning and use those networks as source networks for black-box attacks. Baseline 110-layer ResNet model is also included as a source network. Target networks are the same networks used in table 3. We found iter FGSM attack resulted in lower accuracy than step FGSM attack, thus, report iter FGSM attack only in table 4. ", + "bbox": [ + 174, + 518, + 825, + 645 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We first observe that iter FGSM attack from ensemble models $( \\mathrm { R } 1 1 0 _ { E 2 }$ , $\\mathrm { R 1 1 0 } _ { P , E 2 } )$ is strong (results in lower accuracy) compared to that from any other trained networks. 2 Since ensemble models learn various perturbation during training, adversarial noises crafted from those networks might be more general for other networks making them transfer easily between defended networks. ", + "bbox": [ + 174, + 651, + 823, + 708 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Second, cascade adversarial training breaks chicken and egg problem. (In section 3.1, we found that it is efficient to use a defended network as a source network to attack another defended network.) Even though the transferability between defended networks is reduced for deeper networks, cascade network $( \\mathrm { R } 1 1 0 _ { K , C } )$ shows worst case performance against the attack not from a defended network, but from a purely trained network $\\mathbf { ( R 1 1 0 _ { 2 } ) }$ . Possible solution to further improve the worst case robustness would be to use more than one network as source networks (including pure/defended networks) for iter FGSM images generation for cascade adversarial training. ", + "bbox": [ + 174, + 715, + 825, + 814 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Third, ensemble/cascade networks together with our low-level similarity learning $( \\mathrm { R } 1 1 0 _ { P , E }$ , $\\mathrm { R 1 1 0 } _ { P , C } )$ show better worst case accuracy under black box attack scenario. This shows that enhancing robustness against iterative white box attack also improves robustness against iterative black box attack. ", + "bbox": [ + 174, + 820, + 823, + 876 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 102, + 318, + 117 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We performed through transfer analysis and showed iter FGSM images transfer easily between networks trained with the same strategy. We exploited this and proposed cascade adversarial training, a method to train a network with iter FGSM adversarial images crafted from already defended networks. We also proposed adversarial training regularized with a unified embedding for classification and low- level similarity learning by penalizing distance between the clean and their corresponding adversarial embeddings. Combining those two techniques (low level similarity learning $^ +$ cascade adversarial training) with deeper networks further improved robustness against iterative attacks for both white-box and black-box attacks. ", + "bbox": [ + 174, + 133, + 825, + 244 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "However, there is still a gap between accuracy for the clean images and that for the adversarial images. Improving robustness against both one-step and iterative attacks still remains challenging since it is shown to be difficult to train networks robust for both one-step and iterative attacks simultaneously. Future research is necessary to further improve the robustness against iterative attack without sacrificing the accuracy for step attacks or clean images under both white-box attack and black-box attack scenarios. ", + "bbox": [ + 174, + 252, + 825, + 335 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 354, + 326, + 367 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We thank Alexey Kurakin of Google Brain and Li Chen of Intel for comments that greatly improved the manuscript. The research reported here was supported in part by the Defense Advanced Research Projects Agency (DARPA) under contract number HR0011-17-2-0045. The views and conclusions contained herein are those of the authors and should not be interpreted as necessarily representing the official policies or endorsements, either expressed or implied, of DARPA. ", + "bbox": [ + 174, + 378, + 825, + 449 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 470, + 285, + 484 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In IEEE Symposium on Security and Privacy, 2017. ", + "bbox": [ + 174, + 494, + 823, + 522 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ian J. Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In Proceedings of the International Conference on Learning Representations (ICLR), 2015. ", + "bbox": [ + 174, + 531, + 823, + 574 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2016, Las Vegas, NV, USA, June 27-30, 2016, pp. 770–778, 2016. doi: 10.1109/CVPR.2016.90. URL http://dx.doi.org/10.1109/CVPR.2016.90. ", + "bbox": [ + 173, + 584, + 823, + 641 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ruitong Huang, Bing Xu, Dale Schuurmans, and Csaba Szepesvari. Learning with a strong adver-´ sary. CoRR, abs/1511.03034, 2015. URL http://arxiv.org/abs/1511.03034. ", + "bbox": [ + 173, + 650, + 820, + 680 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009. ", + "bbox": [ + 173, + 689, + 805, + 705 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Alexey Kurakin, Ian J. Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In Proceedings of the International Conference on Learning Representations (ICLR), 2017. ", + "bbox": [ + 173, + 713, + 823, + 742 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Yann LeCun and Corinna Cortes. MNIST handwritten digit database. 2010. URL http://yann. lecun.com/exdb/mnist/. ", + "bbox": [ + 173, + 751, + 820, + 781 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "O. M. Parkhi, A. Vedaldi, and A. Zisserman. Deep face recognition. In Proceedings of the British Machine Vision Conference (BMVC), 2015. ", + "bbox": [ + 171, + 790, + 825, + 819 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face recognition and clustering. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2015. ", + "bbox": [ + 173, + 828, + 823, + 871 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick McDaniel. Ensem- \\` ble adversarial training: Attacks and defenses. CoRR, abs/1705.07204, 2017. URL http: //arxiv.org/abs/1705.07204. ", + "bbox": [ + 174, + 882, + 823, + 922 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Yandong Wen, Kaipeng Zhang, Zhifeng Li, and Yu Qiao. A discriminative feature learning approach for deep face recognition. In Computer Vision - ECCV 2016 - 14th European Conference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part VII, pp. 499– 515, 2016. doi: 10.1007/978-3-319-46478-7 31. URL http://dx.doi.org/10.1007/ 978-3-319-46478-7_31. ", + "bbox": [ + 176, + 103, + 825, + 174 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 176, + 102, + 403, + 118 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We scale down the image values to [0,1] and don’t perform any data augmentation for MNIST. For CIFAR10, we scale down the image values to [0,1] and subtract per-pixel mean values. We perform $2 4 \\times 2 4$ random crop and random flip on $3 2 \\mathrm { x } 3 2 $ original images. We generate adversarial images with “step ll” after these steps otherwise noted. ", + "bbox": [ + 174, + 133, + 823, + 189 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We use stochastic gradient descent (SGD) optimizer with momentum of 0.9, weight decay of 0.0001 and mini batch size of 128. For adversarial training, we generate $k = 6 4$ adversarial examples among 128 images in one mini-batch. We start with a learning rate of 0.1, divide it by 10 at $4 \\mathrm { k }$ and 6k iterations, and terminate training at 8k iterations for MNIST, and $4 8 \\mathrm { k }$ and $7 2 \\mathrm { k }$ iterations, and terminate training at 94k iterations for CIFAR10. 3 ", + "bbox": [ + 174, + 195, + 825, + 266 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We also found that initialization affects the training results slightly as in (Kurakin et al., 2017), thus, we pre-train the networks 2 and 10 epochs for MNIST and CIFAR10, and use these as initial starting points for different configurations. We use $m a x \\_ e = 0 . 3 ^ { * } 2 5 5$ and 16 for MNIST and CIFAR10 respectively. ", + "bbox": [ + 174, + 272, + 825, + 329 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "B MODEL DESCRIPTIONS ", + "text_level": 1, + "bbox": [ + 176, + 349, + 401, + 366 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We summarize the model names used in this paper in table 5. For ensemble adversarial training, pre-trained networks as in table 7 together with the network being trained are used to generate onestep adversarial examples during training. For cascade adversarial training, pre-trained defended networks as in table 6 are used to generate iter FGSM images, and the network being trained is used to generate one-step adversarial examples during training. ", + "bbox": [ + 174, + 381, + 825, + 450 + ], + "page_idx": 10 + }, + { + "type": "table", + "img_path": "images/6563234a98d2b1b419bf55c8773833ffa6f401037be1b161549906d5475fba30.jpg", + "table_caption": [ + "Table 5: Model descriptions ", + "Table 6: Ensemble model description " + ], + "table_footnote": [], + "table_body": "
Initialization
DatasetResNetGroupTrainingModel
MNIST20-layerAstandard training Kurakin'sR20M R20MK
Bidirection lossR20MB
20-layerPivot lossR20Mp
standard trainingR20
Kurakin'sR20K
Ensemble trainingR20E
BBidirection loss Pivot lossR20B R20p
Kurakin's & Cascade trainingR20K,C
Pivot loss & Ensemble trainingR20p,E
Pivot loss & Cascade trainingR20p,C
standard trainingR202
CIFAR10 56-layerCKurakin'sR20K2
DPivot loss standard trainingR20p2 R203
E standard trainingR204
FKurakin'sR56K R56p
Pivot loss
GKurakin'sR56K2
110-layerH standard trainingR110
Kurakin'sR110K
Pivot loss Ensemble trainingR110p R110E
Kurakin's & Cascade training
R110K,C
Pivot loss & Ensemble trainingR110p,E
Pivot loss & Cascade trainingR110p,C
Istandard training Kurakin'sR1102
R110k2
Ensemble trainingR110E2
Pivot lossR110p2
Kurakin's & Cascade training Pivot loss & Ensemble trainingR110k,C2 R110p,E2
JPivot loss & Cascade trainingR110p,C2
standard trainingR1103
Kstandard trainingR1104
", + "bbox": [ + 209, + 130, + 789, + 736 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/61ea47e7a72ef68e291fac78da5b31bedcb666f76f13ac434011d7fd2ae6f1fe.jpg", + "table_caption": [ + "Table 7: Cascade model description " + ], + "table_footnote": [], + "table_body": "
Ensemble modelsPre-trained models
R20E,R20p,E,R110E,R110P,E R110E2,R110P,E2R203,R110g R204,R1104
", + "bbox": [ + 305, + 768, + 692, + 820 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/4d5bc4d9e93eb2629ea11b02196b809f6a3f4f5abfad465b7319e8a39cae28f2.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Cascade modelsPre-trained model
R20K,c,R20p,CR20p
R110K,c,R110p,CR110p
R110K,c2,R110P,C2R110p2
", + "bbox": [ + 344, + 854, + 651, + 921 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/a63d4cd60c68a6ff53d587a7bfc58f89eb11f682c0bbc103d1fd3a001a954254.jpg", + "image_caption": [ + "Figure 7: Argument to the softmax vs. $\\epsilon$ in test time. “step ll”, “step FGSM” and ”random sign” methods were used to generate test-time adversarial images. Arguments to the softmax were measured by changing $\\epsilon$ for each test method and averaged over randomly chosen 128 images from CIFAR10 test-set. Blue line represents true class and the red line represents mean of the false classes. Shaded region shows $\\pm \\nobreakspace 1 \\nobreakspace$ standard deviation of each line. " + ], + "image_footnote": [], + "bbox": [ + 173, + 145, + 826, + 570 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We draw average value of the argument to the softmax layer for the true class and the false classes to visualize how the adversarial training works as in figure 7. Standard training, as expected, shows dramatic drop in the values for the true class as we increase $\\epsilon$ in “step ll” or “step FGSM direction. With adversarial training, we observe that the value drop is limited at small $\\epsilon$ and our method even increases the value in certain range upto ${ \\epsilon } { = } 1 0$ . Note that adversarial training is not the same as the gradient masking.As illustrated in figure 7, it exposes gradient information, however, quickly distort gradients along the sign of the gradient (“step ll” or “step FGSM) direction. We also observe improved results (broader margins than baseline) for “random sign” added images even though we didn’t inject random sign added images during training. Overall shape of the argument to the softmax layer in our case becomes smoother than Kurakin’s method, suggesting our method is good for pixel level regularization. Even though actual value of the embeddings for the true class in our case is smaller than that in Kurakin’s, the standard deviation of our case is less than Kurakin’s, making better margin between the true class and false classes. ", + "bbox": [ + 174, + 667, + 825, + 848 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/bb0f617516f1c753274ff6e6c797bcd0df9ac1a88e8bee55ff5efc872dab5a74.jpg", + "image_caption": [ + "Figure 8: Averaged Pearson’s correlation coefficient between the gradients w.r.t. two images. Correlation were measured by changing $\\epsilon$ for each adversarial image and averaged over randomly chosen 128 images from CIFAR10 test-set. Shaded region represents $\\pm \\ : 0 . 5$ standard deviation of each line. " + ], + "image_footnote": [], + "bbox": [ + 173, + 169, + 825, + 304 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We observe accuracies for the “step FGSM” adversarial images become higher than those for the clean images (“label leaking” phenomenon) by training with “step FGSM” examples as in (Kurakin et al., 2017). Interestingly, we also observe “label leaking” phenomenon even without providing true labels for adversarial images generation. We argue that “label leaking” is a natural result of the adversarial training. ", + "bbox": [ + 174, + 372, + 825, + 444 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To understand the nature of adversarial training, we measure correlation between gradients w.r.t. different images (i.e. clean vs. adversarial) as a measure of error surface similarity. We measure correlation between gradients w.r.t. (1) clean vs. “step ll” image, (2) clean vs. “step FGSM” image, (3) clean vs. “random sign” added image, and (4) “step ll” image vs. “step FGSM” image for three trained networks (a) R20, (b) $\\mathsf { R } 2 0 _ { K }$ and (c) ${ \\mathrm { R } } 2 0 _ { P }$ (Ours) in table 5. Figure 8 draws average value of correlations for each case. ", + "bbox": [ + 173, + 450, + 825, + 534 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Meaning of the correlation: In order to make strong adversarial images with “step FGSM” method, correlation between the gradient w.r.t. the clean image and the gradient w.r.t. its corresponding adversarial image should remain high since the “step FGSM” method only use the gradient w.r.t. the clean image $( \\epsilon { = } 0 )$ . Lower correlation means perturbing the adversarial image at $\\epsilon$ further to the gradient (seen from the clean image) direction is no longer efficient. ", + "bbox": [ + 174, + 541, + 825, + 611 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Results of adversarial training: We observe that (1) and (2) become quickly lower than (3) as $\\epsilon$ increases. This means that, when we move toward the steepest (gradient) direction on the error surface, gradient is more quickly uncorrelated with the gradient w.r.t. the clean image than when we move to random direction. As a result of adversarial training, this uncorrelation is observed at a lower $\\epsilon$ making one-step attack less efficient even with small perturbation. (1), (2) and (3) for our case are slightly lower than Kurakin’s method at the same $\\epsilon$ which means that our method is better at defending one-step attacks than Kurakin’s. ", + "bbox": [ + 173, + 617, + 825, + 715 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Error surface similarity between “step ll” and “step FGSM” images: We also observe (4) remains high with higher $\\epsilon$ for all trained networks. This means that the error surface (gradient) of the “step ll” image and that of its corresponding “step FGSM” image resemble each other. That is the reason why we get the robustness against “step FGSM” method only by training with “step ll” method and vice versa. (4) for our case is slightly higher than Kurakin’s method at the same $\\epsilon$ and that means our similarity learning tends to make error surfaces of the adversarial images with “step ll” and “step FGSM” method to be more similar. ", + "bbox": [ + 173, + 722, + 825, + 819 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Analysis of label leaking phenomenon: Interestingly, (2) becomes slightly negative in certain range $1 < \\epsilon < 3$ for Kurakin’s, and $1 < \\epsilon < 4$ for Pivot (Ours) ) and this could be the possible reason for “label leaking” phenomenon. For example, let’s assume that we have a perturbed image (by “step FGSM” method) at $\\epsilon$ where the correlation between the gradients w.r.t. that image and the corresponding clean image is negative. Further increase of $\\epsilon$ with the gradient (w.r.t. the clean image) direction actually decreases the loss resulting in increased accuracy (label leaking phenomenon). Due to the error surface similarity between “step ll” and “step FGSM” images and this negative correlation effect, however, label leaking phenomenon can always happen for the networks trained with one-step adversarial examples. ", + "bbox": [ + 173, + 827, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "E ADDITIONAL BLACK BOX ATTACK RESULTS ", + "text_level": 1, + "bbox": [ + 173, + 151, + 578, + 170 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/b57587db05d54f989662ee35c8d48e2d69d44fda8d60a095327d85851b575a1a.jpg", + "table_caption": [ + "Table 8: CIFAR10 test results $( \\% )$ under black box attacks between the network with the same initialization $\\scriptstyle \\left( \\epsilon = 1 6 \\right) \\}$ " + ], + "table_footnote": [], + "table_body": "
TargetSource: step_FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R2012.227.427.50.045.944.7
R20K65.781.581.851.50.018.2
R20p58.189.391.748.913.40.0
", + "bbox": [ + 299, + 229, + 699, + 318 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Table 8 shows that black box attack between trained networks with the same initialization tends to be more successful than that between networks with different initialization as explained in (Kurakin et al., 2017). ", + "bbox": [ + 174, + 337, + 823, + 378 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/fe92bfdf334b84af237151b801dbe6b25b9ef4b200fd5ece97ae0d14392d78bc.jpg", + "table_caption": [ + "Table 9: CIFAR10 test results $( \\% )$ under black box attacks for ${ \\epsilon } { = } 1 6$ . {Target and Source networks are switched from the table 1} " + ], + "table_footnote": [], + "table_body": "
TargetSource: step-FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R20217.933.934.54.154.854.3
R20K265.084.684.561.225.330.4
R20p266.488.287.261.627.736.1
", + "bbox": [ + 295, + 435, + 702, + 521 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In table 9, our method $( \\mathsf { R } 2 0 _ { P 2 } )$ is always better at one-step and iterative black box attack from defended networks $( \\mathsf { R } 2 0 _ { K } , \\mathsf { R } 2 0 _ { P } )$ and undefended network (R20) than Kurakin’s method $( { \\bf R } 2 0 _ { B { \\bf 2 } } )$ . However, it is hard to tell which method is better than the other one as explained in the main paper. ", + "bbox": [ + 178, + 540, + 821, + 582 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/19b43217da7077fd6e2e2eff14dc27cd85d13f61c08c35e6d2732ef97907066a.jpg", + "table_caption": [ + "Table 10: CIFAR10 test results $( \\% )$ for cascade networks under black box attacks for ${ \\epsilon } { = } 1 6$ . {Target and Source: Please see the model descriptions in Appendix B.} " + ], + "table_footnote": [], + "table_body": "
TargetSource: iter_FGSM
R110R110KR110ER110pR110K,CR110p,ER110p,C
R110K280.572.749.368.049.641.067.9
R110E282.759.139.559.651.540.369.6
R110p2 (Ours)80.375.954.272.254.944.372.4
R110k,C2 (Ours)62.174.761.572.346.539.067.9
R110p,E2 (Ours)81.579.050.077.356.945.575.2
R110p,c2 (Ours)72.276.460.673.851.040.972.0
", + "bbox": [ + 210, + 638, + 787, + 766 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In table 10, we show black box attack accuracies with the source and the target networks switched from the table 4. We also observe that networks trained with both low-level similarity learning and cascade/ensemble adversarial training $( \\mathrm { R } 1 1 0 _ { P , C 2 }$ , $\\mathbf { R } 1 1 0 _ { P , E 2 } )$ show better worst-case performance than other networks. Overall, iter FGSM images crafted from ensemble model families $( \\mathrm { R } 1 1 0 _ { E }$ , $\\operatorname { R 1 1 0 } _ { P , E } )$ remain strong on the defended networks. ", + "bbox": [ + 173, + 784, + 825, + 854 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/ab53c2fe8209182e38731b9aaaef260818586606f8ae3b9ef8464c393141354e.jpg", + "image_caption": [ + "Figure 9: Cumulative distribution function vs. $\\epsilon$ for 100 test adversarial examples generated by CW $L _ { \\infty }$ attack. Lower CDF value for a fixed $\\epsilon$ means the better defense. " + ], + "image_footnote": [], + "bbox": [ + 173, + 147, + 825, + 290 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Carlini and Wagner (CW) $L _ { \\infty }$ attack solves the following optimization problem for every input $\\boldsymbol { X }$ ", + "bbox": [ + 173, + 343, + 820, + 359 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/74e24b878b8dc6c29f71fb22a4989b093871e569b0819a2be05ce3a62d8f184a.jpg", + "text": "$$\nm i n i m i z e \\quad c \\cdot f ( X + \\pmb { \\delta } ) + \\sum _ { i } [ ( | \\delta _ { i } | - \\tau ) ^ { + } ]\n$$", + "text_format": "latex", + "bbox": [ + 346, + 364, + 651, + 398 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where, the function $f$ is defined such that attack is success if and only if $f ( X + \\delta ) < 0 , \\mathfrak { c }$ δ is the target perturbation defined as $X ^ { a d v } - X$ , $c$ is the parameter to control the relative weight of function $f$ in the total cost function, and $\\tau$ is the control threshold used to penalize any terms that exceed $\\tau$ . ", + "bbox": [ + 174, + 424, + 825, + 467 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Since CW $L _ { \\infty }$ attack is computationally expensive, we only use 100 test examples (10 examples per each class). We search adversarial example $X ^ { a d v }$ with $c \\in \\{ 0 . 1 , 0 . 2 , 0 . 5 , 1 , 2 , 5 , 1 0 , 2 0 \\}$ and $\\tau \\in \\ \\{ 0 . 0 2 , 0 . 0 4 , . . . , 0 . 6 \\}$ for MNIST and $c ~ \\in ~ \\{ 0 . 1 , 0 . 3 , 1 , 3 , 1 0 , 3 0 , 1 0 0 \\}$ and $\\tau \\_ { \\in }$ $\\{ 0 . 0 0 1 , 0 . 0 0 \\dot { 2 } , . . . , 0 . 0 1 , 0 . 0 1 2 , . . . , 0 . 0 2 , 0 . 0 2 4 , . . . , 0 . 0 4 , 0 . 0 4 8 , . . . , 0 . 0 8 \\}$ for CIFAR10. We use Adam optimizer with an initial learning rate of $0 . 0 1 / c$ since we found constant initial learning rate for $c \\cdot f ( \\pmb { X } + \\pmb { \\delta } )$ term is critical for successful adversarial images generation. We terminate the search after 2,000 iterations for each $\\boldsymbol { X }$ , $c$ and $\\tau$ . If $f ( X + \\delta ) < 0$ and the resulting $| | \\delta | | _ { \\infty }$ is lower than the current best distance, we update $X ^ { a d v }$ . ", + "bbox": [ + 173, + 472, + 825, + 585 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Figure 9 shows cumulative distribution function of $\\epsilon$ for 100 successful adversarial examples per each network. We report the number of adversarial examples with $\\epsilon > 0 . 3 ^ { * } 2 5 5$ for MNIST and that with $\\epsilon > 2$ or 4 for CIFAR10. As seen from this figure, our approaches provide robust defense against CW $L _ { \\infty }$ attack compared to other approaches. ", + "bbox": [ + 173, + 590, + 825, + 647 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/HyRVBzap-/HyRVBzap-_middle.json b/parse/train/HyRVBzap-/HyRVBzap-_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..8679bd434523ff2623ffe89ff57b149dd8df8241 --- /dev/null +++ b/parse/train/HyRVBzap-/HyRVBzap-_middle.json @@ -0,0 +1,37957 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 504, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 504, + 97 + ], + "score": 1.0, + "content": "CASCADE ADVERSARIAL MACHINE LEARNING REG-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 407, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 407, + 117 + ], + "score": 1.0, + "content": "ULARIZED WITH A UNIFIED EMBEDDING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 334, + 147 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 335, + 150 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 335, + 150 + ], + "score": 1.0, + "content": "Taesik Na, Jong Hwan Ko & Saibal Mukhopadhyay", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 113, + 148, + 417, + 190 + ], + "lines": [ + { + "bbox": [ + 111, + 144, + 305, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 305, + 159 + ], + "score": 1.0, + "content": "School of Electrical and Computer Engineering", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 155, + 243, + 170 + ], + "spans": [ + { + "bbox": [ + 111, + 155, + 243, + 170 + ], + "score": 1.0, + "content": "Georgia Institute of Technology", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 113, + 168, + 216, + 179 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 216, + 179 + ], + "score": 1.0, + "content": "Atlanta, GA 30332, USA", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 113, + 178, + 417, + 192 + ], + "spans": [ + { + "bbox": [ + 113, + 178, + 417, + 192 + ], + "score": 1.0, + "content": "{taesik.na, jonghwan.ko, smukhopadhyay6}@gatech.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "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, + 431 + ], + "lines": [ + { + "bbox": [ + 142, + 245, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 245, + 470, + 258 + ], + "score": 1.0, + "content": "Injecting adversarial examples during training, known as adversarial training, can", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "score": 1.0, + "content": "improve robustness against one-step attacks, but not for unknown iterative at-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "score": 1.0, + "content": "tacks. To address this challenge, we first show iteratively generated adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "images easily transfer between networks trained with the same strategy. Inspired", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 470, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 470, + 302 + ], + "score": 1.0, + "content": "by this observation, we propose cascade adversarial training, which transfers the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "score": 1.0, + "content": "knowledge of the end results of adversarial training. We train a network from", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 311, + 469, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 469, + 323 + ], + "score": 1.0, + "content": "scratch by injecting iteratively generated adversarial images crafted from already", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "defended networks in addition to one-step adversarial images from the network", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "score": 1.0, + "content": "being trained. We also propose to utilize embedding space for both classification", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "score": 1.0, + "content": "and low-level (pixel-level) similarity learning to ignore unknown pixel level per-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "score": 1.0, + "content": "turbation. During training, we inject adversarial images without replacing their", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 470, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 470, + 378 + ], + "score": 1.0, + "content": "corresponding clean images and penalize the distance between the two embed-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 376, + 470, + 389 + ], + "spans": [ + { + "bbox": [ + 141, + 376, + 470, + 389 + ], + "score": 1.0, + "content": "dings (clean and adversarial). Experimental results show that cascade adversarial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 387, + 470, + 400 + ], + "spans": [ + { + "bbox": [ + 141, + 387, + 470, + 400 + ], + "score": 1.0, + "content": "training together with our proposed low-level similarity learning efficiently en-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 398, + 468, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 398, + 468, + 411 + ], + "score": 1.0, + "content": "hances the robustness against iterative attacks, but at the expense of decreased ro-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 409, + 469, + 422 + ], + "spans": [ + { + "bbox": [ + 141, + 409, + 469, + 422 + ], + "score": 1.0, + "content": "bustness against one-step attacks. We show that combining those two techniques", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 421, + 447, + 432 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 447, + 432 + ], + "score": 1.0, + "content": "can also improve robustness under the worst case black box attack scenario.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 108, + 453, + 206, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 208, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 208, + 469 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "Injecting adversarial examples during training (adversarial training), (Goodfellow et al., 2015; Ku-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "rakin et al., 2017; Huang et al., 2015) increases the robustness of a network against adversarial", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "attacks. The networks trained with one-step methods have shown noticeable robustness against one-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 526 + ], + "score": 1.0, + "content": "step attacks, but, limited robustness against iterative attacks at test time. To address this challenge,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 523, + 279, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 279, + 535 + ], + "score": 1.0, + "content": "we have made the following contributions:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Cascade adversarial training: We first show that iteratively generated adversarial images transfer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 564 + ], + "score": 1.0, + "content": "well between networks when the source and the target networks are trained with the same training", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "method. Inspired by this observation, we propose cascade adversarial training which transfers the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 586 + ], + "score": 1.0, + "content": "knowledge of the end results of adversarial training. In particular, we train a network by injecting", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "iter FGSM images (section 2.1) crafted from an already defended network (a network trained with", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "adversarial training) in addition to the one-step adversarial images crafted from the network being", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "trained. The concept of using already trained networks for adversarial training is also introduced in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "(Tramer et al., 2017). In their work, purely trained networks are used as another source networks `", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "to generate one-step adversarial examples for training. On the contrary, our cascade adversarial", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 638, + 403, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 403, + 650 + ], + "score": 1.0, + "content": "training uses already defended network for iter FGSM images generation.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Low level similarity learning: We advance the previous data augmentation approach (Kurakin", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "et al., 2017) by adding additional regularization in deep features to encourage a network to be insen-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "sitive to adversarial perturbation. In particular, we inject adversarial images in the mini batch with-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "out replacing their corresponding clean images and penalize distance between embeddings from the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "score": 1.0, + "content": "clean and the adversarial examples. There are past examples of using embedding space for learning", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "similarity of high level features like face similarity between two different images (Schroff et al.,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "2015; Parkhi et al., 2015; Wen et al., 2016). Instead, we use the embedding space for learning", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 504, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 504, + 97 + ], + "score": 1.0, + "content": "CASCADE ADVERSARIAL MACHINE LEARNING REG-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 407, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 407, + 117 + ], + "score": 1.0, + "content": "ULARIZED WITH A UNIFIED EMBEDDING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 334, + 147 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 335, + 150 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 335, + 150 + ], + "score": 1.0, + "content": "Taesik Na, Jong Hwan Ko & Saibal Mukhopadhyay", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 111, + 133, + 335, + 150 + ] + }, + { + "type": "list", + "bbox": [ + 113, + 148, + 417, + 190 + ], + "lines": [ + { + "bbox": [ + 111, + 144, + 305, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 305, + 159 + ], + "score": 1.0, + "content": "School of Electrical and Computer Engineering", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 155, + 243, + 170 + ], + "spans": [ + { + "bbox": [ + 111, + 155, + 243, + 170 + ], + "score": 1.0, + "content": "Georgia Institute of Technology", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 168, + 216, + 179 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 216, + 179 + ], + "score": 1.0, + "content": "Atlanta, GA 30332, USA", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 178, + 417, + 192 + ], + "spans": [ + { + "bbox": [ + 113, + 178, + 417, + 192 + ], + "score": 1.0, + "content": "{taesik.na, jonghwan.ko, smukhopadhyay6}@gatech.edu", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + } + ], + "index": 4.5, + "bbox_fs": [ + 111, + 144, + 417, + 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, + 431 + ], + "lines": [ + { + "bbox": [ + 142, + 245, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 245, + 470, + 258 + ], + "score": 1.0, + "content": "Injecting adversarial examples during training, known as adversarial training, can", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "score": 1.0, + "content": "improve robustness against one-step attacks, but not for unknown iterative at-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "score": 1.0, + "content": "tacks. To address this challenge, we first show iteratively generated adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "images easily transfer between networks trained with the same strategy. Inspired", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 470, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 470, + 302 + ], + "score": 1.0, + "content": "by this observation, we propose cascade adversarial training, which transfers the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "score": 1.0, + "content": "knowledge of the end results of adversarial training. We train a network from", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 311, + 469, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 469, + 323 + ], + "score": 1.0, + "content": "scratch by injecting iteratively generated adversarial images crafted from already", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "defended networks in addition to one-step adversarial images from the network", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "score": 1.0, + "content": "being trained. We also propose to utilize embedding space for both classification", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "score": 1.0, + "content": "and low-level (pixel-level) similarity learning to ignore unknown pixel level per-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 470, + 367 + ], + "score": 1.0, + "content": "turbation. During training, we inject adversarial images without replacing their", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 470, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 470, + 378 + ], + "score": 1.0, + "content": "corresponding clean images and penalize the distance between the two embed-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 376, + 470, + 389 + ], + "spans": [ + { + "bbox": [ + 141, + 376, + 470, + 389 + ], + "score": 1.0, + "content": "dings (clean and adversarial). Experimental results show that cascade adversarial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 387, + 470, + 400 + ], + "spans": [ + { + "bbox": [ + 141, + 387, + 470, + 400 + ], + "score": 1.0, + "content": "training together with our proposed low-level similarity learning efficiently en-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 398, + 468, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 398, + 468, + 411 + ], + "score": 1.0, + "content": "hances the robustness against iterative attacks, but at the expense of decreased ro-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 409, + 469, + 422 + ], + "spans": [ + { + "bbox": [ + 141, + 409, + 469, + 422 + ], + "score": 1.0, + "content": "bustness against one-step attacks. We show that combining those two techniques", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 421, + 447, + 432 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 447, + 432 + ], + "score": 1.0, + "content": "can also improve robustness under the worst case black box attack scenario.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16, + "bbox_fs": [ + 141, + 245, + 470, + 432 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 453, + 206, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 208, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 208, + 469 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "Injecting adversarial examples during training (adversarial training), (Goodfellow et al., 2015; Ku-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "rakin et al., 2017; Huang et al., 2015) increases the robustness of a network against adversarial", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "attacks. The networks trained with one-step methods have shown noticeable robustness against one-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 526 + ], + "score": 1.0, + "content": "step attacks, but, limited robustness against iterative attacks at test time. To address this challenge,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 523, + 279, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 279, + 535 + ], + "score": 1.0, + "content": "we have made the following contributions:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 478, + 506, + 535 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Cascade adversarial training: We first show that iteratively generated adversarial images transfer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 564 + ], + "score": 1.0, + "content": "well between networks when the source and the target networks are trained with the same training", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "method. Inspired by this observation, we propose cascade adversarial training which transfers the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 571, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 586 + ], + "score": 1.0, + "content": "knowledge of the end results of adversarial training. In particular, we train a network by injecting", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "iter FGSM images (section 2.1) crafted from an already defended network (a network trained with", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "adversarial training) in addition to the one-step adversarial images crafted from the network being", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "trained. The concept of using already trained networks for adversarial training is also introduced in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "(Tramer et al., 2017). In their work, purely trained networks are used as another source networks `", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "to generate one-step adversarial examples for training. On the contrary, our cascade adversarial", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 638, + 403, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 403, + 650 + ], + "score": 1.0, + "content": "training uses already defended network for iter FGSM images generation.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 539, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Low level similarity learning: We advance the previous data augmentation approach (Kurakin", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "et al., 2017) by adding additional regularization in deep features to encourage a network to be insen-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "sitive to adversarial perturbation. In particular, we inject adversarial images in the mini batch with-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "out replacing their corresponding clean images and penalize distance between embeddings from the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 713 + ], + "score": 1.0, + "content": "clean and the adversarial examples. There are past examples of using embedding space for learning", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "similarity of high level features like face similarity between two different images (Schroff et al.,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "2015; Parkhi et al., 2015; Wen et al., 2016). Instead, we use the embedding space for learning", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "similarity of the pixel level differences between two similar images. The intuition of using this", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "score": 1.0, + "content": "regularization is that small difference on input should not drastically change the high level feature", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 170, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 170, + 117 + ], + "score": 1.0, + "content": "representation.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 655, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "similarity of the pixel level differences between two similar images. The intuition of using this", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "score": 1.0, + "content": "regularization is that small difference on input should not drastically change the high level feature", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 170, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 170, + 117 + ], + "score": 1.0, + "content": "representation.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 134 + ], + "score": 1.0, + "content": "Analysis of adversarial training: We train ResNet models (He et al., 2016) on MNIST (LeCun", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 146 + ], + "score": 1.0, + "content": "& Cortes, 2010) and CIFAR10 dataset (Krizhevsky, 2009) using the proposed adversarial training.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "We first show low level similarity learning improves robustness of the network against adversarial", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "score": 1.0, + "content": "images generated by one-step and iterative methods compared to the prior work. We show that", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "modifying the weight of the distance measure in the loss function can help control trade-off between", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 308, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 308, + 189 + ], + "score": 1.0, + "content": "accuracies for the clean and adversarial examples.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "Together with cascade adversarial training and low-level similarity learning, we achieve accuracy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "score": 1.0, + "content": "increase against unknown iterative attacks, but at the expense of decreased accuracy for one-step", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "attacks. We also show our cascade adversarial training and low level similarity learning provide", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 226, + 301, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 301, + 238 + ], + "score": 1.0, + "content": "much better robustness against black box attack.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 254, + 347, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 348, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 348, + 268 + ], + "score": 1.0, + "content": "2 BACKGROUND ON ADVERSARIAL ATTACKS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 278, + 213, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 278, + 214, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 214, + 291 + ], + "score": 1.0, + "content": "2.1 ATTACK METHODS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 506, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 506, + 312 + ], + "score": 1.0, + "content": "One-step fast gradient sign method (FGSM), referred to as “step FGSM”, generates adversarial", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 308, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 133, + 324 + ], + "score": 1.0, + "content": "image", + "type": "text" + }, + { + "bbox": [ + 134, + 309, + 158, + 320 + ], + "score": 0.88, + "content": "\\bar { X } ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 308, + 375, + 324 + ], + "score": 1.0, + "content": "by adding sign of the gradients w.r.t. the clean image", + "type": "text" + }, + { + "bbox": [ + 376, + 310, + 387, + 320 + ], + "score": 0.8, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 308, + 444, + 324 + ], + "score": 1.0, + "content": "multiplied by", + "type": "text" + }, + { + "bbox": [ + 445, + 309, + 492, + 322 + ], + "score": 0.91, + "content": "\\epsilon \\in [ 0 , 2 5 5 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 308, + 506, + 324 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 321, + 267, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 267, + 333 + ], + "score": 1.0, + "content": "shown below (Goodfellow et al., 2015):", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 336, + 385, + 351 + ], + "lines": [ + { + "bbox": [ + 226, + 336, + 385, + 351 + ], + "spans": [ + { + "bbox": [ + 226, + 336, + 385, + 351 + ], + "score": 0.91, + "content": "X ^ { a d v } = X + \\epsilon \\mathrm { s i g n } ( \\nabla _ { X } J ( X , y _ { t r u e } ) )", + "type": "interline_equation", + "image_path": "1255c66c34121c9e4885dd473449c158936c386b948fa1100acba8edc69c7df4.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 226, + 336, + 385, + 351 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 361, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 359, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 273, + 375 + ], + "score": 1.0, + "content": "One-step target class method generates", + "type": "text" + }, + { + "bbox": [ + 273, + 361, + 297, + 372 + ], + "score": 0.9, + "content": "X ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 359, + 507, + 375 + ], + "score": 1.0, + "content": "by subtracting sign of the gradients computed on a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 372, + 220, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 220, + 385 + ], + "score": 1.0, + "content": "target false label as follows:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 388, + 388, + 403 + ], + "lines": [ + { + "bbox": [ + 222, + 388, + 388, + 403 + ], + "spans": [ + { + "bbox": [ + 222, + 388, + 388, + 403 + ], + "score": 0.9, + "content": "X ^ { a d v } = X - \\epsilon \\mathrm { s i g n } ( \\nabla _ { X } J ( X , y _ { t a r g e t } ) )", + "type": "interline_equation", + "image_path": "9c3704a86ae00977475deb3f9b3530a6ae7b3b615e0f4866c59366e0ca11c381.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 222, + 388, + 388, + 403 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 425, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 426, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 205, + 427 + ], + "score": 1.0, + "content": "We use least likely class", + "type": "text" + }, + { + "bbox": [ + 205, + 416, + 223, + 426 + ], + "score": 0.87, + "content": "y _ { L L }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 413, + 426, + 427 + ], + "score": 1.0, + "content": "as a target class and refer this method as “step ll”.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 104, + 430, + 494, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 495, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 424, + 444 + ], + "score": 1.0, + "content": "Basic iterative method, referred to as “iter FGSM”, applies FGSM with small", + "type": "text" + }, + { + "bbox": [ + 424, + 433, + 432, + 441 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 430, + 495, + 444 + ], + "score": 1.0, + "content": "multiple times.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 447, + 463, + 465 + ], + "lines": [ + { + "bbox": [ + 147, + 447, + 463, + 465 + ], + "spans": [ + { + "bbox": [ + 147, + 447, + 463, + 465 + ], + "score": 0.89, + "content": "X _ { 0 } ^ { a d v } = X , \\quad X _ { N } ^ { a d v } = C l i p _ { X , \\epsilon } \\{ X _ { N - 1 } ^ { a d v } + \\alpha \\ \\mathrm { s i g n } ( \\nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { t r u e } ) ) \\}", + "type": "interline_equation", + "image_path": "1b3e1127ee0213428c760a8433ad9167027e7c56ff6f39bbd5924f62d731f5ab.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 147, + 447, + 463, + 465 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 504, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 139, + 490 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 139, + 477, + 164, + 487 + ], + "score": 0.9, + "content": "\\alpha = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 474, + 254, + 490 + ], + "score": 1.0, + "content": ", number of iterations", + "type": "text" + }, + { + "bbox": [ + 254, + 477, + 265, + 486 + ], + "score": 0.84, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 474, + 291, + 490 + ], + "score": 1.0, + "content": "to be", + "type": "text" + }, + { + "bbox": [ + 291, + 476, + 406, + 488 + ], + "score": 0.66, + "content": "\\operatorname* { m i n } ( \\epsilon + 4 , 1 . 2 5 \\epsilon ) . ~ C l i p _ { X , \\epsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 474, + 505, + 490 + ], + "score": 1.0, + "content": "is elementwise clipping", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 487, + 442, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 297, + 500 + ], + "score": 1.0, + "content": "function where the input is clipped to the range", + "type": "text" + }, + { + "bbox": [ + 297, + 488, + 439, + 499 + ], + "score": 0.88, + "content": "[ \\mathrm { m a x } ( 0 , X - \\epsilon ) , \\mathrm { m i n } ( 2 5 5 , X + \\epsilon ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 487, + 442, + 500 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 469, + 517 + ], + "score": 1.0, + "content": "Iterative least-likely class method, referred to as “iter ll”, is to apply “step ll” with small", + "type": "text" + }, + { + "bbox": [ + 469, + 506, + 477, + 514 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 502, + 505, + 517 + ], + "score": 1.0, + "content": "multi-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 515, + 148, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 148, + 528 + ], + "score": 1.0, + "content": "ple times.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 531, + 461, + 549 + ], + "lines": [ + { + "bbox": [ + 150, + 531, + 461, + 549 + ], + "spans": [ + { + "bbox": [ + 150, + 531, + 461, + 549 + ], + "score": 0.9, + "content": "X _ { 0 } ^ { a d v } = X , \\quad X _ { N } ^ { a d v } = C l i p _ { X , \\epsilon } \\{ X _ { N - 1 } ^ { a d v } - \\alpha \\ \\mathrm { s i g n } ( \\nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { L L } ) ) \\}", + "type": "interline_equation", + "image_path": "6eb0a38899718bb27efd5684809622afb0fef795ffc29528a6180b900f0e4d25.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 150, + 531, + 461, + 549 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 559, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 387, + 572 + ], + "score": 1.0, + "content": "Carlini and Wagner attack (Carlini & Wagner, 2017) referred to as", + "type": "text" + }, + { + "bbox": [ + 387, + 560, + 413, + 570 + ], + "score": 0.26, + "content": "\\mathbf { \\tilde { \\Sigma } } ^ { 6 6 } \\mathbf { C } \\mathbf { W } ^ { \\prime } ", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "solves an optimization", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 570, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 325, + 583 + ], + "score": 1.0, + "content": "problem which minimizes both an objective function", + "type": "text" + }, + { + "bbox": [ + 325, + 571, + 333, + 582 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 570, + 506, + 583 + ], + "score": 1.0, + "content": "(such that attack is success if and only if", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 580, + 358, + 594 + ], + "spans": [ + { + "bbox": [ + 107, + 581, + 165, + 594 + ], + "score": 0.9, + "content": "\\stackrel { \\bullet } { f } ( X ^ { a d v } ) < 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 580, + 298, + 594 + ], + "score": 1.0, + "content": "and a distance measure between", + "type": "text" + }, + { + "bbox": [ + 298, + 581, + 322, + 591 + ], + "score": 0.89, + "content": "X ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 580, + 341, + 594 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 341, + 582, + 352, + 591 + ], + "score": 0.83, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 580, + 358, + 594 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "score": 1.0, + "content": "Black box attack is performed by testing accuracy on a target network with the adversarial images", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "crafted from a source network different from the target network. Lower accuracy means successful", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 621, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 632 + ], + "score": 1.0, + "content": "black-box attack. When we use the same network for both target and source network, we call this", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 632, + 189, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 189, + 642 + ], + "score": 1.0, + "content": "as white-box attack.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 108, + 656, + 218, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 219, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 219, + 669 + ], + "score": 1.0, + "content": "2.2 DEFENSE METHODS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Adversarial training (Kurakin et al., 2017): is a form of data augmentation where it injects", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 324, + 700 + ], + "score": 1.0, + "content": "adversarial examples during training. In this method,", + "type": "text" + }, + { + "bbox": [ + 324, + 688, + 330, + 698 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 687, + 494, + 700 + ], + "score": 1.0, + "content": "examples are taken from the mini batch", + "type": "text" + }, + { + "bbox": [ + 495, + 688, + 504, + 698 + ], + "score": 0.78, + "content": "B", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 139, + 712 + ], + "score": 1.0, + "content": "(size of", + "type": "text" + }, + { + "bbox": [ + 139, + 700, + 149, + 709 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 698, + 450, + 712 + ], + "score": 1.0, + "content": ") and the adversarial examples are generated with one of step method. The", + "type": "text" + }, + { + "bbox": [ + 451, + 699, + 458, + 709 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "adversarial", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "examples replaces the corresponding clean examples when making mini batch. Below we refer this", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 282, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 282, + 732 + ], + "score": 1.0, + "content": "adversarial training method as “Kurakin’s”.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 115 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 117 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 134 + ], + "score": 1.0, + "content": "Analysis of adversarial training: We train ResNet models (He et al., 2016) on MNIST (LeCun", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 146 + ], + "score": 1.0, + "content": "& Cortes, 2010) and CIFAR10 dataset (Krizhevsky, 2009) using the proposed adversarial training.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "We first show low level similarity learning improves robustness of the network against adversarial", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "score": 1.0, + "content": "images generated by one-step and iterative methods compared to the prior work. We show that", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "modifying the weight of the distance measure in the loss function can help control trade-off between", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 308, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 308, + 189 + ], + "score": 1.0, + "content": "accuracies for the clean and adversarial examples.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 120, + 505, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "Together with cascade adversarial training and low-level similarity learning, we achieve accuracy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "score": 1.0, + "content": "increase against unknown iterative attacks, but at the expense of decreased accuracy for one-step", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "attacks. We also show our cascade adversarial training and low level similarity learning provide", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 226, + 301, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 301, + 238 + ], + "score": 1.0, + "content": "much better robustness against black box attack.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 192, + 505, + 238 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 254, + 347, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 348, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 348, + 268 + ], + "score": 1.0, + "content": "2 BACKGROUND ON ADVERSARIAL ATTACKS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 278, + 213, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 278, + 214, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 214, + 291 + ], + "score": 1.0, + "content": "2.1 ATTACK METHODS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 506, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 506, + 312 + ], + "score": 1.0, + "content": "One-step fast gradient sign method (FGSM), referred to as “step FGSM”, generates adversarial", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 308, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 133, + 324 + ], + "score": 1.0, + "content": "image", + "type": "text" + }, + { + "bbox": [ + 134, + 309, + 158, + 320 + ], + "score": 0.88, + "content": "\\bar { X } ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 308, + 375, + 324 + ], + "score": 1.0, + "content": "by adding sign of the gradients w.r.t. the clean image", + "type": "text" + }, + { + "bbox": [ + 376, + 310, + 387, + 320 + ], + "score": 0.8, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 308, + 444, + 324 + ], + "score": 1.0, + "content": "multiplied by", + "type": "text" + }, + { + "bbox": [ + 445, + 309, + 492, + 322 + ], + "score": 0.91, + "content": "\\epsilon \\in [ 0 , 2 5 5 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 308, + 506, + 324 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 321, + 267, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 267, + 333 + ], + "score": 1.0, + "content": "shown below (Goodfellow et al., 2015):", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 298, + 506, + 333 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 336, + 385, + 351 + ], + "lines": [ + { + "bbox": [ + 226, + 336, + 385, + 351 + ], + "spans": [ + { + "bbox": [ + 226, + 336, + 385, + 351 + ], + "score": 0.91, + "content": "X ^ { a d v } = X + \\epsilon \\mathrm { s i g n } ( \\nabla _ { X } J ( X , y _ { t r u e } ) )", + "type": "interline_equation", + "image_path": "1255c66c34121c9e4885dd473449c158936c386b948fa1100acba8edc69c7df4.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 226, + 336, + 385, + 351 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 361, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 359, + 507, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 273, + 375 + ], + "score": 1.0, + "content": "One-step target class method generates", + "type": "text" + }, + { + "bbox": [ + 273, + 361, + 297, + 372 + ], + "score": 0.9, + "content": "X ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 359, + 507, + 375 + ], + "score": 1.0, + "content": "by subtracting sign of the gradients computed on a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 372, + 220, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 220, + 385 + ], + "score": 1.0, + "content": "target false label as follows:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 359, + 507, + 385 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 388, + 388, + 403 + ], + "lines": [ + { + "bbox": [ + 222, + 388, + 388, + 403 + ], + "spans": [ + { + "bbox": [ + 222, + 388, + 388, + 403 + ], + "score": 0.9, + "content": "X ^ { a d v } = X - \\epsilon \\mathrm { s i g n } ( \\nabla _ { X } J ( X , y _ { t a r g e t } ) )", + "type": "interline_equation", + "image_path": "9c3704a86ae00977475deb3f9b3530a6ae7b3b615e0f4866c59366e0ca11c381.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 222, + 388, + 388, + 403 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 425, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 426, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 205, + 427 + ], + "score": 1.0, + "content": "We use least likely class", + "type": "text" + }, + { + "bbox": [ + 205, + 416, + 223, + 426 + ], + "score": 0.87, + "content": "y _ { L L }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 413, + 426, + 427 + ], + "score": 1.0, + "content": "as a target class and refer this method as “step ll”.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 413, + 426, + 427 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 430, + 494, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 495, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 424, + 444 + ], + "score": 1.0, + "content": "Basic iterative method, referred to as “iter FGSM”, applies FGSM with small", + "type": "text" + }, + { + "bbox": [ + 424, + 433, + 432, + 441 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 430, + 495, + 444 + ], + "score": 1.0, + "content": "multiple times.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 430, + 495, + 444 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 447, + 463, + 465 + ], + "lines": [ + { + "bbox": [ + 147, + 447, + 463, + 465 + ], + "spans": [ + { + "bbox": [ + 147, + 447, + 463, + 465 + ], + "score": 0.89, + "content": "X _ { 0 } ^ { a d v } = X , \\quad X _ { N } ^ { a d v } = C l i p _ { X , \\epsilon } \\{ X _ { N - 1 } ^ { a d v } + \\alpha \\ \\mathrm { s i g n } ( \\nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { t r u e } ) ) \\}", + "type": "interline_equation", + "image_path": "1b3e1127ee0213428c760a8433ad9167027e7c56ff6f39bbd5924f62d731f5ab.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 147, + 447, + 463, + 465 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 504, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 139, + 490 + ], + "score": 1.0, + "content": "We use", + "type": "text" + }, + { + "bbox": [ + 139, + 477, + 164, + 487 + ], + "score": 0.9, + "content": "\\alpha = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 474, + 254, + 490 + ], + "score": 1.0, + "content": ", number of iterations", + "type": "text" + }, + { + "bbox": [ + 254, + 477, + 265, + 486 + ], + "score": 0.84, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 474, + 291, + 490 + ], + "score": 1.0, + "content": "to be", + "type": "text" + }, + { + "bbox": [ + 291, + 476, + 406, + 488 + ], + "score": 0.66, + "content": "\\operatorname* { m i n } ( \\epsilon + 4 , 1 . 2 5 \\epsilon ) . ~ C l i p _ { X , \\epsilon }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 474, + 505, + 490 + ], + "score": 1.0, + "content": "is elementwise clipping", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 487, + 442, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 297, + 500 + ], + "score": 1.0, + "content": "function where the input is clipped to the range", + "type": "text" + }, + { + "bbox": [ + 297, + 488, + 439, + 499 + ], + "score": 0.88, + "content": "[ \\mathrm { m a x } ( 0 , X - \\epsilon ) , \\mathrm { m i n } ( 2 5 5 , X + \\epsilon ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 487, + 442, + 500 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 474, + 505, + 500 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 504, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 469, + 517 + ], + "score": 1.0, + "content": "Iterative least-likely class method, referred to as “iter ll”, is to apply “step ll” with small", + "type": "text" + }, + { + "bbox": [ + 469, + 506, + 477, + 514 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 502, + 505, + 517 + ], + "score": 1.0, + "content": "multi-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 515, + 148, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 148, + 528 + ], + "score": 1.0, + "content": "ple times.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 502, + 505, + 528 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 531, + 461, + 549 + ], + "lines": [ + { + "bbox": [ + 150, + 531, + 461, + 549 + ], + "spans": [ + { + "bbox": [ + 150, + 531, + 461, + 549 + ], + "score": 0.9, + "content": "X _ { 0 } ^ { a d v } = X , \\quad X _ { N } ^ { a d v } = C l i p _ { X , \\epsilon } \\{ X _ { N - 1 } ^ { a d v } - \\alpha \\ \\mathrm { s i g n } ( \\nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { L L } ) ) \\}", + "type": "interline_equation", + "image_path": "6eb0a38899718bb27efd5684809622afb0fef795ffc29528a6180b900f0e4d25.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 150, + 531, + 461, + 549 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 559, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 387, + 572 + ], + "score": 1.0, + "content": "Carlini and Wagner attack (Carlini & Wagner, 2017) referred to as", + "type": "text" + }, + { + "bbox": [ + 387, + 560, + 413, + 570 + ], + "score": 0.26, + "content": "\\mathbf { \\tilde { \\Sigma } } ^ { 6 6 } \\mathbf { C } \\mathbf { W } ^ { \\prime } ", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "solves an optimization", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 570, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 325, + 583 + ], + "score": 1.0, + "content": "problem which minimizes both an objective function", + "type": "text" + }, + { + "bbox": [ + 325, + 571, + 333, + 582 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 570, + 506, + 583 + ], + "score": 1.0, + "content": "(such that attack is success if and only if", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 580, + 358, + 594 + ], + "spans": [ + { + "bbox": [ + 107, + 581, + 165, + 594 + ], + "score": 0.9, + "content": "\\stackrel { \\bullet } { f } ( X ^ { a d v } ) < 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 580, + 298, + 594 + ], + "score": 1.0, + "content": "and a distance measure between", + "type": "text" + }, + { + "bbox": [ + 298, + 581, + 322, + 591 + ], + "score": 0.89, + "content": "X ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 580, + 341, + 594 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 341, + 582, + 352, + 591 + ], + "score": 0.83, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 580, + 358, + 594 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 559, + 506, + 594 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 611 + ], + "score": 1.0, + "content": "Black box attack is performed by testing accuracy on a target network with the adversarial images", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "crafted from a source network different from the target network. Lower accuracy means successful", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 621, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 632 + ], + "score": 1.0, + "content": "black-box attack. When we use the same network for both target and source network, we call this", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 632, + 189, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 189, + 642 + ], + "score": 1.0, + "content": "as white-box attack.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 597, + 506, + 642 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 656, + 218, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 219, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 219, + 669 + ], + "score": 1.0, + "content": "2.2 DEFENSE METHODS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Adversarial training (Kurakin et al., 2017): is a form of data augmentation where it injects", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 324, + 700 + ], + "score": 1.0, + "content": "adversarial examples during training. In this method,", + "type": "text" + }, + { + "bbox": [ + 324, + 688, + 330, + 698 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 687, + 494, + 700 + ], + "score": 1.0, + "content": "examples are taken from the mini batch", + "type": "text" + }, + { + "bbox": [ + 495, + 688, + 504, + 698 + ], + "score": 0.78, + "content": "B", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 139, + 712 + ], + "score": 1.0, + "content": "(size of", + "type": "text" + }, + { + "bbox": [ + 139, + 700, + 149, + 709 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 698, + 450, + 712 + ], + "score": 1.0, + "content": ") and the adversarial examples are generated with one of step method. The", + "type": "text" + }, + { + "bbox": [ + 451, + 699, + 458, + 709 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "adversarial", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "examples replaces the corresponding clean examples when making mini batch. Below we refer this", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 282, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 282, + 732 + ], + "score": 1.0, + "content": "adversarial training method as “Kurakin’s”.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 677, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 162, + 326, + 219 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 86, + 326, + 143 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 86, + 326, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 86, + 230, + 98 + ], + "score": 1.0, + "content": "Table 1: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 230, + 87, + 244, + 98 + ], + "score": 0.62, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 86, + 326, + 98 + ], + "score": 1.0, + "content": "under black box at-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 97, + 326, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 97, + 145, + 109 + ], + "score": 1.0, + "content": "tacks for", + "type": "text" + }, + { + "bbox": [ + 146, + 98, + 167, + 108 + ], + "score": 0.87, + "content": "{ \\epsilon } { = } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 97, + 326, + 109 + ], + "score": 1.0, + "content": ". Source networks share the same ini-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 108, + 326, + 120 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 326, + 120 + ], + "score": 1.0, + "content": "tialization which is different from the target networks.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 119, + 327, + 132 + ], + "spans": [ + { + "bbox": [ + 107, + 119, + 168, + 132 + ], + "score": 1.0, + "content": "{Target: R20,", + "type": "text" + }, + { + "bbox": [ + 169, + 120, + 195, + 131 + ], + "score": 0.87, + "content": "\\mathsf { R } 2 0 _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 119, + 327, + 132 + ], + "score": 1.0, + "content": ": standard, Kurakin’s, Source:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 130, + 259, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 129, + 142 + ], + "score": 0.86, + "content": "\\mathbf { R } 2 0 \\mathbf { _ 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 130, + 133, + 143 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 133, + 131, + 164, + 142 + ], + "score": 0.87, + "content": "\\mathbf { R } 2 0 _ { K 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 130, + 259, + 143 + ], + "score": 1.0, + "content": ": standard, Kurakin’s.}", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 106, + 162, + 326, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 162, + 326, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 326, + 219 + ], + "score": 0.839, + "html": "
TargetSource: step-FGSMSource: iter_FGSM
R202R20K2R202R20K2
R2016.231.62.760.1
R20K66.782.755.828.5
", + "type": "table", + "image_path": "aea920e27ab8fdce7f5e623a12d60e754f7868ac8c75a3056a62de968ed1bb8d.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 106, + 162, + 326, + 176.25 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 176.25, + 326, + 190.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 190.5, + 326, + 204.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 204.75, + 326, + 219.0 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 7.25 + }, + { + "type": "image", + "bbox": [ + 338, + 82, + 502, + 162 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 338, + 82, + 502, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 338, + 82, + 502, + 162 + ], + "spans": [ + { + "bbox": [ + 338, + 82, + 502, + 162 + ], + "score": 0.968, + "type": "image", + "image_path": "9574ecbaff76aa59c142821a74b75ca57db11c28bc841935cae1c0896257b6aa.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 338, + 82, + 502, + 95.33333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 338, + 95.33333333333333, + 502, + 108.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 338, + 108.66666666666666, + 502, + 121.99999999999999 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 338, + 121.99999999999999, + 502, + 135.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 338, + 135.33333333333331, + 502, + 148.66666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 338, + 148.66666666666666, + 502, + 162.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 336, + 173, + 504, + 218 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 335, + 173, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 335, + 173, + 505, + 184 + ], + "score": 1.0, + "content": "Figure 1: Correlation between adversarial", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 335, + 185, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 335, + 185, + 496, + 196 + ], + "score": 1.0, + "content": "noises from different networks for each", + "type": "text" + }, + { + "bbox": [ + 496, + 186, + 501, + 194 + ], + "score": 0.57, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 185, + 505, + 196 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 336, + 195, + 504, + 207 + ], + "spans": [ + { + "bbox": [ + 336, + 195, + 421, + 207 + ], + "score": 1.0, + "content": "Shaded region shows", + "type": "text" + }, + { + "bbox": [ + 422, + 195, + 446, + 206 + ], + "score": 0.84, + "content": "\\pm 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 195, + 504, + 207 + ], + "score": 1.0, + "content": "standard devi-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 336, + 207, + 410, + 217 + ], + "spans": [ + { + "bbox": [ + 336, + 207, + 410, + 217 + ], + "score": 1.0, + "content": "ation of each line.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 106, + 239, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 238, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 505, + 252 + ], + "score": 1.0, + "content": "Ensemble adversarial training (Tramer et al., 2017): ` is essentially the same with the adversarial", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "training, but uses several pre-trained vanilla networks to generate one-step adversarial examples for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 261, + 400, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 400, + 273 + ], + "score": 1.0, + "content": "training. Below we refer this adversarial training method as “Ensemble”.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 108, + 288, + 241, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 287, + 242, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 242, + 303 + ], + "score": 1.0, + "content": "3 PROPOSED APPROACH", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 313, + 259, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 261, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 261, + 325 + ], + "score": 1.0, + "content": "3.1 TRANSFERABILITY ANALYSIS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "We first show transferability between purely trained networks and adversarially trained networks", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "under black box attack. We use ResNet (He et al., 2016) models for CIFAR10 classification. We first", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 356, + 504, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 504, + 367 + ], + "score": 1.0, + "content": "train 20-layer ResNets with different methods (standard training, adversarial training (Kurakin et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "2017)) and use those as target networks. We re-train networks (standard training and adversarial", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "training) with the different initialization from the target networks, and use the trained networks as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 389, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 400 + ], + "score": 1.0, + "content": "source networks. Experimental details and model descriptions can be found in Appendix A and B.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 399, + 345, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 345, + 412 + ], + "score": 1.0, + "content": "In table 1, we report test accuracies under black box attack.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 428 + ], + "score": 1.0, + "content": "Transferability (step attack): We first observe that high robustness against one-step attack between", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 186, + 440 + ], + "score": 1.0, + "content": "defended networks", + "type": "text" + }, + { + "bbox": [ + 186, + 427, + 262, + 438 + ], + "score": 0.89, + "content": "( \\mathsf { R } 2 0 _ { K 2 } \\ldots \\mathsf { R } 2 0 _ { K } )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 427, + 473, + 440 + ], + "score": 1.0, + "content": "), and low robustness between undefended networks", + "type": "text" + }, + { + "bbox": [ + 473, + 427, + 498, + 438 + ], + "score": 0.67, + "content": "( \\mathsf { R 2 0 _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 137, + 449 + ], + "score": 0.79, + "content": "> { \\textrm R } 2 0 \\AA ,", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "). This observation shows that error surfaces of neural networks are driven by the training", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 449, + 440, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 440, + 461 + ], + "score": 1.0, + "content": "method and networks trained with the same method end up similar optimum states.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 504, + 521 + ], + "lines": [ + { + "bbox": [ + 104, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 104, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "It is noteworthy to observe that the accuracies against step attack from the undefended network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 107, + 477, + 136, + 488 + ], + "score": 0.85, + "content": "( \\mathsf { R } 2 0 _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 477, + 358, + 490 + ], + "score": 1.0, + "content": "are always lower than those from defended network", + "type": "text" + }, + { + "bbox": [ + 359, + 477, + 394, + 488 + ], + "score": 0.87, + "content": "( \\mathsf { R } 2 0 _ { K { \\bf 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 477, + 506, + 490 + ], + "score": 1.0, + "content": ". Possible explanation for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "this would be that adversarial training tweaks gradient seen from the clean image to point toward", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "score": 1.0, + "content": "weaker adversarial point along that gradient direction. As a result, one-step adversarial images from", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 510, + 400, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 400, + 522 + ], + "score": 1.0, + "content": "defended networks become weaker than those from undefended network.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "Transferability (iterative attack): We observe “iter FGSM” attack remains very strong even under", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "the black box attack scenario but only between undefended networks or defended networks. This is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 546, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 217, + 561 + ], + "score": 1.0, + "content": "because iter FGSM noises", + "type": "text" + }, + { + "bbox": [ + 217, + 548, + 259, + 560 + ], + "score": 0.89, + "content": "( X ^ { a d v } – X )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 546, + 506, + 561 + ], + "score": 1.0, + "content": "from defended networks resemble each other. As shown in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 471, + 572 + ], + "score": 1.0, + "content": "figure 1, we observe higher correlation between iter FGSM noises from a defended network", + "type": "text" + }, + { + "bbox": [ + 471, + 560, + 502, + 571 + ], + "score": 0.83, + "content": "( \\mathsf { R } 2 0 \\kappa )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 559, + 505, + 572 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 569, + 317, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 276, + 584 + ], + "score": 1.0, + "content": "and those from another defended network", + "type": "text" + }, + { + "bbox": [ + 276, + 571, + 311, + 582 + ], + "score": 0.84, + "content": "( \\mathsf { R } 2 0 _ { K { \\bf 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 569, + 317, + 584 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 587, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 600 + ], + "score": 1.0, + "content": "Difficulty of defense/attack under the black box attack scenario: As seen from this observation,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "it is efficient to attack an undefended/defended network with iter FGSM examples crafted from", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "another undefended/defended network. Thus, when we want to build a robust network under the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "black box attack scenario, it is desired to check accuracies for the adversarial examples crafted from", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 630, + 293, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 293, + 645 + ], + "score": 1.0, + "content": "other networks trained with the same strategy.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + }, + { + "type": "title", + "bbox": [ + 108, + 656, + 285, + 667 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 286, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 286, + 669 + ], + "score": 1.0, + "content": "3.2 CASCADE ADVERSARIAL TRAINING", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 50 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Inspired by the observation that iter FGSM images transfer well between defended networks, we", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "propose cascade adversarial training, which trains a network by injecting iter FGSM images crafted", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "from an already defended network. We hypothesize that the network being trained with cascade", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "adversarial training will learn to avoid such adversarial perturbation, enhancing robustness against", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "iter FGSM attack. The intuition behind this proposed method is that we transfer the knowledge of", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 53 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 162, + 326, + 219 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 86, + 326, + 143 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 86, + 326, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 86, + 230, + 98 + ], + "score": 1.0, + "content": "Table 1: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 230, + 87, + 244, + 98 + ], + "score": 0.62, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 86, + 326, + 98 + ], + "score": 1.0, + "content": "under black box at-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 97, + 326, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 97, + 145, + 109 + ], + "score": 1.0, + "content": "tacks for", + "type": "text" + }, + { + "bbox": [ + 146, + 98, + 167, + 108 + ], + "score": 0.87, + "content": "{ \\epsilon } { = } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 97, + 326, + 109 + ], + "score": 1.0, + "content": ". Source networks share the same ini-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 108, + 326, + 120 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 326, + 120 + ], + "score": 1.0, + "content": "tialization which is different from the target networks.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 119, + 327, + 132 + ], + "spans": [ + { + "bbox": [ + 107, + 119, + 168, + 132 + ], + "score": 1.0, + "content": "{Target: R20,", + "type": "text" + }, + { + "bbox": [ + 169, + 120, + 195, + 131 + ], + "score": 0.87, + "content": "\\mathsf { R } 2 0 _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 119, + 327, + 132 + ], + "score": 1.0, + "content": ": standard, Kurakin’s, Source:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 130, + 259, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 129, + 142 + ], + "score": 0.86, + "content": "\\mathbf { R } 2 0 \\mathbf { _ 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 130, + 133, + 143 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 133, + 131, + 164, + 142 + ], + "score": 0.87, + "content": "\\mathbf { R } 2 0 _ { K 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 130, + 259, + 143 + ], + "score": 1.0, + "content": ": standard, Kurakin’s.}", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 106, + 162, + 326, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 162, + 326, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 326, + 219 + ], + "score": 0.839, + "html": "
TargetSource: step-FGSMSource: iter_FGSM
R202R20K2R202R20K2
R2016.231.62.760.1
R20K66.782.755.828.5
", + "type": "table", + "image_path": "aea920e27ab8fdce7f5e623a12d60e754f7868ac8c75a3056a62de968ed1bb8d.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 106, + 162, + 326, + 176.25 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 176.25, + 326, + 190.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 190.5, + 326, + 204.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 204.75, + 326, + 219.0 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 7.25 + }, + { + "type": "image", + "bbox": [ + 338, + 82, + 502, + 162 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 338, + 82, + 502, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 338, + 82, + 502, + 162 + ], + "spans": [ + { + "bbox": [ + 338, + 82, + 502, + 162 + ], + "score": 0.968, + "type": "image", + "image_path": "9574ecbaff76aa59c142821a74b75ca57db11c28bc841935cae1c0896257b6aa.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 338, + 82, + 502, + 95.33333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 338, + 95.33333333333333, + 502, + 108.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 338, + 108.66666666666666, + 502, + 121.99999999999999 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 338, + 121.99999999999999, + 502, + 135.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 338, + 135.33333333333331, + 502, + 148.66666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 338, + 148.66666666666666, + 502, + 162.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 336, + 173, + 504, + 218 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 335, + 173, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 335, + 173, + 505, + 184 + ], + "score": 1.0, + "content": "Figure 1: Correlation between adversarial", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 335, + 185, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 335, + 185, + 496, + 196 + ], + "score": 1.0, + "content": "noises from different networks for each", + "type": "text" + }, + { + "bbox": [ + 496, + 186, + 501, + 194 + ], + "score": 0.57, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 185, + 505, + 196 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 336, + 195, + 504, + 207 + ], + "spans": [ + { + "bbox": [ + 336, + 195, + 421, + 207 + ], + "score": 1.0, + "content": "Shaded region shows", + "type": "text" + }, + { + "bbox": [ + 422, + 195, + 446, + 206 + ], + "score": 0.84, + "content": "\\pm 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 195, + 504, + 207 + ], + "score": 1.0, + "content": "standard devi-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 336, + 207, + 410, + 217 + ], + "spans": [ + { + "bbox": [ + 336, + 207, + 410, + 217 + ], + "score": 1.0, + "content": "ation of each line.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 106, + 239, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 238, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 505, + 252 + ], + "score": 1.0, + "content": "Ensemble adversarial training (Tramer et al., 2017): ` is essentially the same with the adversarial", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "training, but uses several pre-trained vanilla networks to generate one-step adversarial examples for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 261, + 400, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 400, + 273 + ], + "score": 1.0, + "content": "training. Below we refer this adversarial training method as “Ensemble”.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 238, + 505, + 273 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 288, + 241, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 287, + 242, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 242, + 303 + ], + "score": 1.0, + "content": "3 PROPOSED APPROACH", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 313, + 259, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 312, + 261, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 261, + 325 + ], + "score": 1.0, + "content": "3.1 TRANSFERABILITY ANALYSIS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "We first show transferability between purely trained networks and adversarially trained networks", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "under black box attack. We use ResNet (He et al., 2016) models for CIFAR10 classification. We first", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 356, + 504, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 504, + 367 + ], + "score": 1.0, + "content": "train 20-layer ResNets with different methods (standard training, adversarial training (Kurakin et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "2017)) and use those as target networks. We re-train networks (standard training and adversarial", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "training) with the different initialization from the target networks, and use the trained networks as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 389, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 400 + ], + "score": 1.0, + "content": "source networks. Experimental details and model descriptions can be found in Appendix A and B.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 399, + 345, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 345, + 412 + ], + "score": 1.0, + "content": "In table 1, we report test accuracies under black box attack.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 333, + 505, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 428 + ], + "score": 1.0, + "content": "Transferability (step attack): We first observe that high robustness against one-step attack between", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 186, + 440 + ], + "score": 1.0, + "content": "defended networks", + "type": "text" + }, + { + "bbox": [ + 186, + 427, + 262, + 438 + ], + "score": 0.89, + "content": "( \\mathsf { R } 2 0 _ { K 2 } \\ldots \\mathsf { R } 2 0 _ { K } )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 427, + 473, + 440 + ], + "score": 1.0, + "content": "), and low robustness between undefended networks", + "type": "text" + }, + { + "bbox": [ + 473, + 427, + 498, + 438 + ], + "score": 0.67, + "content": "( \\mathsf { R 2 0 _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 137, + 449 + ], + "score": 0.79, + "content": "> { \\textrm R } 2 0 \\AA ,", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "). This observation shows that error surfaces of neural networks are driven by the training", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 449, + 440, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 440, + 461 + ], + "score": 1.0, + "content": "method and networks trained with the same method end up similar optimum states.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 416, + 505, + 461 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 504, + 521 + ], + "lines": [ + { + "bbox": [ + 104, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 104, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "It is noteworthy to observe that the accuracies against step attack from the undefended network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 107, + 477, + 136, + 488 + ], + "score": 0.85, + "content": "( \\mathsf { R } 2 0 _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 477, + 358, + 490 + ], + "score": 1.0, + "content": "are always lower than those from defended network", + "type": "text" + }, + { + "bbox": [ + 359, + 477, + 394, + 488 + ], + "score": 0.87, + "content": "( \\mathsf { R } 2 0 _ { K { \\bf 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 477, + 506, + 490 + ], + "score": 1.0, + "content": ". Possible explanation for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "this would be that adversarial training tweaks gradient seen from the clean image to point toward", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 512 + ], + "score": 1.0, + "content": "weaker adversarial point along that gradient direction. As a result, one-step adversarial images from", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 510, + 400, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 400, + 522 + ], + "score": 1.0, + "content": "defended networks become weaker than those from undefended network.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 465, + 506, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "Transferability (iterative attack): We observe “iter FGSM” attack remains very strong even under", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 550 + ], + "score": 1.0, + "content": "the black box attack scenario but only between undefended networks or defended networks. This is", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 546, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 217, + 561 + ], + "score": 1.0, + "content": "because iter FGSM noises", + "type": "text" + }, + { + "bbox": [ + 217, + 548, + 259, + 560 + ], + "score": 0.89, + "content": "( X ^ { a d v } – X )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 546, + 506, + 561 + ], + "score": 1.0, + "content": "from defended networks resemble each other. As shown in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 471, + 572 + ], + "score": 1.0, + "content": "figure 1, we observe higher correlation between iter FGSM noises from a defended network", + "type": "text" + }, + { + "bbox": [ + 471, + 560, + 502, + 571 + ], + "score": 0.83, + "content": "( \\mathsf { R } 2 0 \\kappa )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 559, + 505, + 572 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 569, + 317, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 276, + 584 + ], + "score": 1.0, + "content": "and those from another defended network", + "type": "text" + }, + { + "bbox": [ + 276, + 571, + 311, + 582 + ], + "score": 0.84, + "content": "( \\mathsf { R } 2 0 _ { K { \\bf 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 569, + 317, + 584 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 527, + 506, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 587, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 600 + ], + "score": 1.0, + "content": "Difficulty of defense/attack under the black box attack scenario: As seen from this observation,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "it is efficient to attack an undefended/defended network with iter FGSM examples crafted from", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "another undefended/defended network. Thus, when we want to build a robust network under the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "black box attack scenario, it is desired to check accuracies for the adversarial examples crafted from", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 630, + 293, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 293, + 645 + ], + "score": 1.0, + "content": "other networks trained with the same strategy.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 586, + 505, + 645 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 656, + 285, + 667 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 286, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 286, + 669 + ], + "score": 1.0, + "content": "3.2 CASCADE ADVERSARIAL TRAINING", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 50 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Inspired by the observation that iter FGSM images transfer well between defended networks, we", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "propose cascade adversarial training, which trains a network by injecting iter FGSM images crafted", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "from an already defended network. We hypothesize that the network being trained with cascade", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "adversarial training will learn to avoid such adversarial perturbation, enhancing robustness against", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "iter FGSM attack. The intuition behind this proposed method is that we transfer the knowledge of", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "the end results of adversarial training. In particular, we train a network by injecting iter FGSM", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "images crafted from already defended network in addition to the one-step adversarial images crafted", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 337, + 235, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 235, + 349 + ], + "score": 1.0, + "content": "from the network being trained.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 53, + "bbox_fs": [ + 105, + 677, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 137, + 78, + 481, + 188 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 78, + 481, + 188 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 78, + 481, + 188 + ], + "spans": [ + { + "bbox": [ + 137, + 78, + 481, + 188 + ], + "score": 0.971, + "type": "image", + "image_path": "3e15aca655600181f36bed5f1e7e2e1f2bf9f8ad5a8ba6aba416917d887a4350.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 137, + 78, + 481, + 114.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 137, + 114.66666666666666, + 481, + 151.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 137, + 151.33333333333331, + 481, + 187.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 151, + 195, + 459, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 194, + 460, + 210 + ], + "spans": [ + { + "bbox": [ + 150, + 194, + 460, + 210 + ], + "score": 1.0, + "content": "Figure 2: Cascade adversarial training regularized with a unified embedding.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 180, + 217, + 434, + 275 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 180, + 217, + 434, + 275 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 180, + 217, + 434, + 275 + ], + "spans": [ + { + "bbox": [ + 180, + 217, + 434, + 275 + ], + "score": 0.964, + "type": "image", + "image_path": "94897954e10187615eda8e565cf77b8ca80a2765e4e1577dda4e06d5b6bda6a3.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 180, + 217, + 434, + 236.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 180, + 236.33333333333334, + 434, + 255.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 180, + 255.66666666666669, + 434, + 275.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 196, + 283, + 414, + 295 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 196, + 282, + 415, + 296 + ], + "spans": [ + { + "bbox": [ + 196, + 282, + 415, + 296 + ], + "score": 1.0, + "content": "Figure 3: (Left) Bidirectional loss. (Right) Pivot loss.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "the end results of adversarial training. In particular, we train a network by injecting iter FGSM", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "images crafted from already defended network in addition to the one-step adversarial images crafted", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 337, + 235, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 235, + 349 + ], + "score": 1.0, + "content": "from the network being trained.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 107, + 362, + 338, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 339, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 339, + 374 + ], + "score": 1.0, + "content": "3.3 REGULARIZATION WITH A UNIFIED EMBEDDING", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 382, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "We advance the algorithm proposed in (Kurakin et al., 2017) by adding low level similarity learning.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "Unlike (Kurakin et al., 2017), we include the clean examples used for generating adversarial images", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "in the mini batch. Once one step forward pass is performed with the mini batch, embeddings are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "followed by the softmax layer for the cross entropy loss for the standard classification. At the same", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "time, we take clean embeddings and adversarial embeddings, and minimize the distance between", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 438, + 254, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 254, + 449 + ], + "score": 1.0, + "content": "the two with the distance based loss.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 454, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 467 + ], + "score": 1.0, + "content": "The distance based loss encourages two similar images (clean and adversarial) to produce the same", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "outputs, not necessarily the true labels. Thus, low-level similarity learning can be considered as", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "an unsupervised learning. By adding regularization in higher embedding layer, convolution filters", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "gradually learn how to ignore such pixel-level perturbation. We have applied regularization on lower", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "layers with an assumption that low level pixel perturbation can be ignored in lower hierarchy of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "networks. However, adding regularization term on higher embedding layer right before the softmax", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "layer showed best performance. The more convolutional filters have chance to learn such similarity,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "the better the performance. Note that cross entropy doesn’t encourage two similar images to produce", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "the same output labels. Standard image classification using cross entropy compares ground truth", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 553, + 421, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 421, + 565 + ], + "score": 1.0, + "content": "labels with outputs of a network regardless of how similar training images are.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 569, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 506, + 583 + ], + "score": 1.0, + "content": "The entire training process combining cascade adversarial training and low level similarity learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 580, + 331, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 331, + 593 + ], + "score": 1.0, + "content": "is shown in figure 2. We define the total loss as follows:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 596, + 487, + 631 + ], + "lines": [ + { + "bbox": [ + 123, + 596, + 487, + 631 + ], + "spans": [ + { + "bbox": [ + 123, + 596, + 487, + 631 + ], + "score": 0.94, + "content": "L o s s = \\frac { 1 } { ( m - k ) + \\lambda k } \\Bigg ( \\sum _ { i = 1 } ^ { m - k } L ( { \\bf X } _ { i } | y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { k } L ( { \\bf X } _ { i } ^ { a d v } | y _ { i } ) \\Bigg ) + \\lambda _ { 2 } \\sum _ { i = 1 } ^ { k } L _ { d i s t } ( E _ { i } ^ { a d v } , E _ { i } )", + "type": "interline_equation", + "image_path": "05961acf28424a1591ec2f03701fa08a08759e475106beffa1aa7bca3f6ec615.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 123, + 596, + 487, + 607.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 123, + 607.6666666666666, + 487, + 619.3333333333333 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 123, + 619.3333333333333, + 487, + 630.9999999999999 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 641, + 504, + 686 + ], + "lines": [ + { + "bbox": [ + 107, + 640, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 107, + 642, + 119, + 653 + ], + "score": 0.86, + "content": "\\mathbf { \\mathcal { E } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 640, + 138, + 655 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 139, + 641, + 161, + 654 + ], + "score": 0.92, + "content": "E _ { i } ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 640, + 306, + 655 + ], + "score": 1.0, + "content": "are the resulting embeddings from", + "type": "text" + }, + { + "bbox": [ + 306, + 642, + 320, + 653 + ], + "score": 0.92, + "content": "X _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 640, + 339, + 655 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 340, + 641, + 363, + 654 + ], + "score": 0.92, + "content": "X _ { i } ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 640, + 423, + 655 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + }, + { + "bbox": [ + 423, + 644, + 433, + 652 + ], + "score": 0.73, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 640, + 506, + 655 + ], + "score": 1.0, + "content": "is the size of the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 653, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 155, + 664 + ], + "score": 1.0, + "content": "mini batch,", + "type": "text" + }, + { + "bbox": [ + 155, + 653, + 202, + 664 + ], + "score": 0.9, + "content": "k \\left( \\leq m / 2 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 653, + 428, + 664 + ], + "score": 1.0, + "content": "is the number of adversarial images in the mini batch.", + "type": "text" + }, + { + "bbox": [ + 429, + 654, + 436, + 663 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 653, + 506, + 664 + ], + "score": 1.0, + "content": "is the parameter", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 664, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 412, + 676 + ], + "score": 1.0, + "content": "to control the relative weight of classification loss for adversarial images.", + "type": "text" + }, + { + "bbox": [ + 412, + 664, + 424, + 675 + ], + "score": 0.88, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 664, + 506, + 676 + ], + "score": 1.0, + "content": "is the parameter to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 675, + 406, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 317, + 687 + ], + "score": 1.0, + "content": "control the relative weight of the distance based loss", + "type": "text" + }, + { + "bbox": [ + 317, + 675, + 339, + 686 + ], + "score": 0.9, + "content": "L _ { d i s t }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 675, + 406, + 687 + ], + "score": 1.0, + "content": "in the total loss.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 691, + 503, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "Bidirectional loss minimizes the distance between the two embeddings by moving both clean and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 703, + 363, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 363, + 715 + ], + "score": 1.0, + "content": "adversarial embeddings as shown in the left side of the figure 3.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 718, + 436, + 733 + ], + "lines": [ + { + "bbox": [ + 175, + 718, + 436, + 733 + ], + "spans": [ + { + "bbox": [ + 175, + 718, + 436, + 733 + ], + "score": 0.9, + "content": "L _ { d i s t } ( \\pmb { { E } } _ { i } ^ { a d v } , \\pmb { { E } } _ { i } ) = | | \\pmb { { E } } _ { i } ^ { a d v } - \\pmb { { E } } _ { i } | | _ { N } ^ { N } , \\quad N \\in { 1 , 2 \\quad i = 1 , 2 , . . . , k }", + "type": "interline_equation", + "image_path": "a4d7acae9b01aadbad4425654117f9ae7745fe9216f3c571a1defe3e5244383e.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 175, + 718, + 436, + 733 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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": "image", + "bbox": [ + 137, + 78, + 481, + 188 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 78, + 481, + 188 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 78, + 481, + 188 + ], + "spans": [ + { + "bbox": [ + 137, + 78, + 481, + 188 + ], + "score": 0.971, + "type": "image", + "image_path": "3e15aca655600181f36bed5f1e7e2e1f2bf9f8ad5a8ba6aba416917d887a4350.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 137, + 78, + 481, + 114.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 137, + 114.66666666666666, + 481, + 151.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 137, + 151.33333333333331, + 481, + 187.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 151, + 195, + 459, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 194, + 460, + 210 + ], + "spans": [ + { + "bbox": [ + 150, + 194, + 460, + 210 + ], + "score": 1.0, + "content": "Figure 2: Cascade adversarial training regularized with a unified embedding.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 180, + 217, + 434, + 275 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 180, + 217, + 434, + 275 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 180, + 217, + 434, + 275 + ], + "spans": [ + { + "bbox": [ + 180, + 217, + 434, + 275 + ], + "score": 0.964, + "type": "image", + "image_path": "94897954e10187615eda8e565cf77b8ca80a2765e4e1577dda4e06d5b6bda6a3.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 180, + 217, + 434, + 236.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 180, + 236.33333333333334, + 434, + 255.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 180, + 255.66666666666669, + 434, + 275.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 196, + 283, + 414, + 295 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 196, + 282, + 415, + 296 + ], + "spans": [ + { + "bbox": [ + 196, + 282, + 415, + 296 + ], + "score": 1.0, + "content": "Figure 3: (Left) Bidirectional loss. (Right) Pivot loss.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 349 + ], + "lines": [], + "index": 9, + "bbox_fs": [ + 105, + 315, + 505, + 349 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 362, + 338, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 339, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 339, + 374 + ], + "score": 1.0, + "content": "3.3 REGULARIZATION WITH A UNIFIED EMBEDDING", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 382, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "We advance the algorithm proposed in (Kurakin et al., 2017) by adding low level similarity learning.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "Unlike (Kurakin et al., 2017), we include the clean examples used for generating adversarial images", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "in the mini batch. Once one step forward pass is performed with the mini batch, embeddings are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "followed by the softmax layer for the cross entropy loss for the standard classification. At the same", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "time, we take clean embeddings and adversarial embeddings, and minimize the distance between", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 438, + 254, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 254, + 449 + ], + "score": 1.0, + "content": "the two with the distance based loss.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 381, + 505, + 449 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 454, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 467 + ], + "score": 1.0, + "content": "The distance based loss encourages two similar images (clean and adversarial) to produce the same", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "outputs, not necessarily the true labels. Thus, low-level similarity learning can be considered as", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "an unsupervised learning. By adding regularization in higher embedding layer, convolution filters", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "gradually learn how to ignore such pixel-level perturbation. We have applied regularization on lower", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "layers with an assumption that low level pixel perturbation can be ignored in lower hierarchy of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "networks. However, adding regularization term on higher embedding layer right before the softmax", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "layer showed best performance. The more convolutional filters have chance to learn such similarity,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "the better the performance. Note that cross entropy doesn’t encourage two similar images to produce", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "the same output labels. Standard image classification using cross entropy compares ground truth", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 553, + 421, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 421, + 565 + ], + "score": 1.0, + "content": "labels with outputs of a network regardless of how similar training images are.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 453, + 506, + 565 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 569, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 506, + 583 + ], + "score": 1.0, + "content": "The entire training process combining cascade adversarial training and low level similarity learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 580, + 331, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 331, + 593 + ], + "score": 1.0, + "content": "is shown in figure 2. We define the total loss as follows:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 568, + 506, + 593 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 596, + 487, + 631 + ], + "lines": [ + { + "bbox": [ + 123, + 596, + 487, + 631 + ], + "spans": [ + { + "bbox": [ + 123, + 596, + 487, + 631 + ], + "score": 0.94, + "content": "L o s s = \\frac { 1 } { ( m - k ) + \\lambda k } \\Bigg ( \\sum _ { i = 1 } ^ { m - k } L ( { \\bf X } _ { i } | y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { k } L ( { \\bf X } _ { i } ^ { a d v } | y _ { i } ) \\Bigg ) + \\lambda _ { 2 } \\sum _ { i = 1 } ^ { k } L _ { d i s t } ( E _ { i } ^ { a d v } , E _ { i } )", + "type": "interline_equation", + "image_path": "05961acf28424a1591ec2f03701fa08a08759e475106beffa1aa7bca3f6ec615.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 123, + 596, + 487, + 607.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 123, + 607.6666666666666, + 487, + 619.3333333333333 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 123, + 619.3333333333333, + 487, + 630.9999999999999 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 641, + 504, + 686 + ], + "lines": [ + { + "bbox": [ + 107, + 640, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 107, + 642, + 119, + 653 + ], + "score": 0.86, + "content": "\\mathbf { \\mathcal { E } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 640, + 138, + 655 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 139, + 641, + 161, + 654 + ], + "score": 0.92, + "content": "E _ { i } ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 640, + 306, + 655 + ], + "score": 1.0, + "content": "are the resulting embeddings from", + "type": "text" + }, + { + "bbox": [ + 306, + 642, + 320, + 653 + ], + "score": 0.92, + "content": "X _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 640, + 339, + 655 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 340, + 641, + 363, + 654 + ], + "score": 0.92, + "content": "X _ { i } ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 640, + 423, + 655 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + }, + { + "bbox": [ + 423, + 644, + 433, + 652 + ], + "score": 0.73, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 640, + 506, + 655 + ], + "score": 1.0, + "content": "is the size of the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 653, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 155, + 664 + ], + "score": 1.0, + "content": "mini batch,", + "type": "text" + }, + { + "bbox": [ + 155, + 653, + 202, + 664 + ], + "score": 0.9, + "content": "k \\left( \\leq m / 2 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 653, + 428, + 664 + ], + "score": 1.0, + "content": "is the number of adversarial images in the mini batch.", + "type": "text" + }, + { + "bbox": [ + 429, + 654, + 436, + 663 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 653, + 506, + 664 + ], + "score": 1.0, + "content": "is the parameter", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 664, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 412, + 676 + ], + "score": 1.0, + "content": "to control the relative weight of classification loss for adversarial images.", + "type": "text" + }, + { + "bbox": [ + 412, + 664, + 424, + 675 + ], + "score": 0.88, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 664, + 506, + 676 + ], + "score": 1.0, + "content": "is the parameter to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 675, + 406, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 317, + 687 + ], + "score": 1.0, + "content": "control the relative weight of the distance based loss", + "type": "text" + }, + { + "bbox": [ + 317, + 675, + 339, + 686 + ], + "score": 0.9, + "content": "L _ { d i s t }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 675, + 406, + 687 + ], + "score": 1.0, + "content": "in the total loss.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 640, + 506, + 687 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 691, + 503, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "Bidirectional loss minimizes the distance between the two embeddings by moving both clean and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 703, + 363, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 363, + 715 + ], + "score": 1.0, + "content": "adversarial embeddings as shown in the left side of the figure 3.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 691, + 505, + 715 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 718, + 436, + 733 + ], + "lines": [ + { + "bbox": [ + 175, + 718, + 436, + 733 + ], + "spans": [ + { + "bbox": [ + 175, + 718, + 436, + 733 + ], + "score": 0.9, + "content": "L _ { d i s t } ( \\pmb { { E } } _ { i } ^ { a d v } , \\pmb { { E } } _ { i } ) = | | \\pmb { { E } } _ { i } ^ { a d v } - \\pmb { { E } } _ { i } | | _ { N } ^ { N } , \\quad N \\in { 1 , 2 \\quad i = 1 , 2 , . . . , k }", + "type": "interline_equation", + "image_path": "a4d7acae9b01aadbad4425654117f9ae7745fe9216f3c571a1defe3e5244383e.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 175, + 718, + 436, + 733 + ], + "spans": [], + "index": 39 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 143, + 149, + 467, + 213 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 136 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 223, + 92 + ], + "score": 1.0, + "content": "Table 2: MNIST test results", + "type": "text" + }, + { + "bbox": [ + 224, + 81, + 239, + 91 + ], + "score": 0.82, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 79, + 359, + 92 + ], + "score": 1.0, + "content": "for 20-layer ResNet models", + "type": "text" + }, + { + "bbox": [ + 359, + 81, + 409, + 91 + ], + "score": 0.92, + "content": "\\prime { \\epsilon } = 0 . 3 { ^ { * } } 2 5 5", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 79, + 466, + 92 + ], + "score": 1.0, + "content": "at test time).", + "type": "text" + }, + { + "bbox": [ + 466, + 80, + 501, + 92 + ], + "score": 0.67, + "content": "\\{ { \\bf R } 2 0 { \\bf M }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 79, + 505, + 92 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 90, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 179, + 105 + ], + "score": 1.0, + "content": "standard training,", + "type": "text" + }, + { + "bbox": [ + 180, + 91, + 214, + 102 + ], + "score": 0.89, + "content": "{ \\mathrm { R } } 2 0 { \\mathrm { M } } _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 90, + 348, + 105 + ], + "score": 1.0, + "content": ": Kurakin’s adversarial training,", + "type": "text" + }, + { + "bbox": [ + 348, + 92, + 383, + 102 + ], + "score": 0.89, + "content": "{ \\bf R } 2 0 { \\bf M } _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 90, + 466, + 105 + ], + "score": 1.0, + "content": ": Bidirectional loss,", + "type": "text" + }, + { + "bbox": [ + 467, + 92, + 501, + 102 + ], + "score": 0.87, + "content": "{ \\bf R } 2 0 { \\bf M } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 90, + 505, + 105 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 504, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 151, + 114 + ], + "score": 1.0, + "content": "P ivot loss.", + "type": "text" + }, + { + "bbox": [ + 151, + 102, + 157, + 114 + ], + "score": 0.64, + "content": "\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 102, + 176, + 114 + ], + "score": 1.0, + "content": "CW", + "type": "text" + }, + { + "bbox": [ + 177, + 103, + 193, + 113 + ], + "score": 0.88, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 102, + 504, + 114 + ], + "score": 1.0, + "content": "attack is performed with 100 test samples (10 samples per each class) and the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 256, + 126 + ], + "score": 1.0, + "content": "number of adversarial examples with", + "type": "text" + }, + { + "bbox": [ + 257, + 113, + 307, + 124 + ], + "score": 0.9, + "content": "\\epsilon > 0 . 3 ^ { * } 2 5 5", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "is reported. Additional details for CW attack can", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 123, + 205, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 205, + 137 + ], + "score": 1.0, + "content": "be found in Appendix F", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 143, + 149, + 467, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 143, + 149, + 467, + 213 + ], + "spans": [ + { + "bbox": [ + 143, + 149, + 467, + 213 + ], + "score": 0.98, + "html": "
Modelcleanstep_llstep_FGSMiter_lliter_FGSMCW
R20M99.69.710.30.00.00
R20MK99.696.794.589.060.246
R20Mb (Ours)99.597.396.297.288.581
R20Mp (Ours)99.597.195.796.988.982
", + "type": "table", + "image_path": "c673904c52bc36a2ac20b6ef79b31fbb15ba9161edb999ffb29ed9aa24e870aa.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 143, + 149, + 467, + 170.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 143, + 170.33333333333334, + 467, + 191.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 143, + 191.66666666666669, + 467, + 213.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 504, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 143, + 249 + ], + "score": 1.0, + "content": "We tried", + "type": "text" + }, + { + "bbox": [ + 143, + 237, + 169, + 248 + ], + "score": 0.84, + "content": "N = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 236, + 485, + 249 + ], + "score": 1.0, + "content": ", 2 and found not much difference between the two. We report the results with", + "type": "text" + }, + { + "bbox": [ + 485, + 237, + 505, + 248 + ], + "score": 0.84, + "content": "N =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 248, + 430, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 304, + 261 + ], + "score": 1.0, + "content": "2 for the rest of the paper otherwise noted. When", + "type": "text" + }, + { + "bbox": [ + 305, + 248, + 331, + 259 + ], + "score": 0.86, + "content": "N = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 248, + 334, + 261 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 335, + 248, + 357, + 259 + ], + "score": 0.87, + "content": "L _ { d i s t }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 248, + 430, + 261 + ], + "score": 1.0, + "content": "becomes L2 loss.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 503, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "Pivot loss minimizes the distance between the two embeddings by moving only the adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 276, + 322, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 322, + 288 + ], + "score": 1.0, + "content": "embeddings as shown in the right side of the figure 3.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 291, + 435, + 307 + ], + "lines": [ + { + "bbox": [ + 176, + 291, + 435, + 307 + ], + "spans": [ + { + "bbox": [ + 176, + 291, + 435, + 307 + ], + "score": 0.89, + "content": "L _ { d i s t } ( \\pmb { { E } } _ { i } ^ { a d v } | \\pmb { { E } } _ { i } ) = | | \\pmb { { E } } _ { i } ^ { a d v } - \\pmb { { E } } _ { i } | | _ { N } ^ { N } , \\quad N \\in { 1 , 2 \\quad i = 1 , 2 , . . . , k }", + "type": "interline_equation", + "image_path": "65a51d48749309a44e801c21f9dca81d780b27d1739d48e04acf44c349841c79.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 176, + 291, + 435, + 307 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 240, + 329 + ], + "score": 1.0, + "content": "In this case, clean embeddings (", + "type": "text" + }, + { + "bbox": [ + 240, + 317, + 253, + 328 + ], + "score": 0.51, + "content": "\\mathbf { \\mathcal { E } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 317, + 505, + 329 + ], + "score": 1.0, + "content": ") serve as pivots to the adversarial embeddings. In particular,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "we don’t back-propagate through the clean embeddings for the distance based loss. The intuition", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "behind the use of pivot loss is that the embedding from a clean image can be treated as the ground", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 348, + 178, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 178, + 363 + ], + "score": 1.0, + "content": "truth embedding.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 107, + 377, + 368, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 376, + 368, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 368, + 391 + ], + "score": 1.0, + "content": "4 LOW LEVEL SIMILARITY LEARNING ANALYSIS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 290, + 413 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 292, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 292, + 414 + ], + "score": 1.0, + "content": "4.1 EXPERIMENTAL RESULTS ON MNIST", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "We first analyze the effect of low level similarity learning on MNIST. We train ResNet models (He", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "et al., 2016) with different methods (standard training, Kurakin’s adversarial training and adversarial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 444, + 463, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 463, + 457 + ], + "score": 1.0, + "content": "training with our distance based loss). Experimental details can be found in Appendix A.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "Table 2 shows the accuracy results for MNIST test dataset for different types of attack methods.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 472, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 485 + ], + "score": 1.0, + "content": "As shown in the table, our method achieves better accuracy than Kurakin’s method for all types", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "of attacks with a little sacrifice on the accuracy for the clean images. Even though adversarial", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "training is done only with “step ll”, additional regularization increases robustness against unknown", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 504, + 504, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 293, + 518 + ], + "score": 1.0, + "content": "“step FGSM”, “iter ll”, “iter FGSM” and CW", + "type": "text" + }, + { + "bbox": [ + 294, + 506, + 310, + 516 + ], + "score": 0.89, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 504, + 504, + 518 + ], + "score": 1.0, + "content": "attacks. This shows that our low-level similarity", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "learning can successfully regularize the one-step adversarial perturbation and its vicinity for simple", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 527, + 241, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 241, + 539 + ], + "score": 1.0, + "content": "image classification like MNIST.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 551, + 285, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 288, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 288, + 565 + ], + "score": 1.0, + "content": "4.2 EMBEDDING SPACE VISUALIZATION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "To visualize the embedding space, we modify 20-layer ResNet model where the last fully connected", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 129, + 596 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 130, + 583, + 161, + 595 + ], + "score": 0.32, + "content": "\\left( 6 4 \\mathbf { x } 1 0 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 583, + 330, + 596 + ], + "score": 1.0, + "content": "is changed to two fully connected layers (", + "type": "text" + }, + { + "bbox": [ + 330, + 583, + 352, + 594 + ], + "score": 0.33, + "content": "6 4 \\mathrm { x } 2", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "and 2x10). We re-train networks with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 593, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 608 + ], + "score": 1.0, + "content": "standard training, Kurakin’s method and our pivot loss on MNIST. 1 In figure 4, we draw embeddings", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 151, + 618 + ], + "score": 1.0, + "content": "(dimension", + "type": "text" + }, + { + "bbox": [ + 151, + 606, + 163, + 615 + ], + "score": 0.61, + "content": "^ { 1 = 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 605, + 505, + 618 + ], + "score": 1.0, + "content": ") between two fully connected layers. As seen from this figure, adversarial images", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 456, + 629 + ], + "score": 1.0, + "content": "from the network trained with standard training cross the decision boundary easily as", + "type": "text" + }, + { + "bbox": [ + 456, + 619, + 462, + 626 + ], + "score": 0.63, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "increases.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "With Kurakin’s adversarial training, the distances between clean and adversarial embeddings are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "minimized compared to standard training. And our pivot loss further minimizes distance between", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "the clean and adversarial embeddings. Note that our pivot loss also decreases absolute value of the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 210, + 673 + ], + "score": 1.0, + "content": "embeddings, thus, higher", + "type": "text" + }, + { + "bbox": [ + 210, + 661, + 222, + 671 + ], + "score": 0.86, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "will eventually result in overlap between distinct embedding distribu-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "tions. We also observe that intra class variation of the clean embeddings are also minimized for the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 682, + 418, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 418, + 695 + ], + "score": 1.0, + "content": "network trained with our pivot loss as shown in the scatter plot in figure 4 (c).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 119, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "1Modified ResNet models showed slight decreased accuracy for both clean and adversarial images compared", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 712, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 505, + 722 + ], + "score": 1.0, + "content": "to original ResNet counterparts, however, we observed similar trends (improved accuracy for iterative attacks", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 722, + 297, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 297, + 732 + ], + "score": 1.0, + "content": "for the network trained with pivot loss) as in table 2.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 143, + 149, + 467, + 213 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 136 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 223, + 92 + ], + "score": 1.0, + "content": "Table 2: MNIST test results", + "type": "text" + }, + { + "bbox": [ + 224, + 81, + 239, + 91 + ], + "score": 0.82, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 79, + 359, + 92 + ], + "score": 1.0, + "content": "for 20-layer ResNet models", + "type": "text" + }, + { + "bbox": [ + 359, + 81, + 409, + 91 + ], + "score": 0.92, + "content": "\\prime { \\epsilon } = 0 . 3 { ^ { * } } 2 5 5", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 79, + 466, + 92 + ], + "score": 1.0, + "content": "at test time).", + "type": "text" + }, + { + "bbox": [ + 466, + 80, + 501, + 92 + ], + "score": 0.67, + "content": "\\{ { \\bf R } 2 0 { \\bf M }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 79, + 505, + 92 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 90, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 179, + 105 + ], + "score": 1.0, + "content": "standard training,", + "type": "text" + }, + { + "bbox": [ + 180, + 91, + 214, + 102 + ], + "score": 0.89, + "content": "{ \\mathrm { R } } 2 0 { \\mathrm { M } } _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 90, + 348, + 105 + ], + "score": 1.0, + "content": ": Kurakin’s adversarial training,", + "type": "text" + }, + { + "bbox": [ + 348, + 92, + 383, + 102 + ], + "score": 0.89, + "content": "{ \\bf R } 2 0 { \\bf M } _ { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 90, + 466, + 105 + ], + "score": 1.0, + "content": ": Bidirectional loss,", + "type": "text" + }, + { + "bbox": [ + 467, + 92, + 501, + 102 + ], + "score": 0.87, + "content": "{ \\bf R } 2 0 { \\bf M } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 90, + 505, + 105 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 504, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 151, + 114 + ], + "score": 1.0, + "content": "P ivot loss.", + "type": "text" + }, + { + "bbox": [ + 151, + 102, + 157, + 114 + ], + "score": 0.64, + "content": "\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 102, + 176, + 114 + ], + "score": 1.0, + "content": "CW", + "type": "text" + }, + { + "bbox": [ + 177, + 103, + 193, + 113 + ], + "score": 0.88, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 102, + 504, + 114 + ], + "score": 1.0, + "content": "attack is performed with 100 test samples (10 samples per each class) and the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 256, + 126 + ], + "score": 1.0, + "content": "number of adversarial examples with", + "type": "text" + }, + { + "bbox": [ + 257, + 113, + 307, + 124 + ], + "score": 0.9, + "content": "\\epsilon > 0 . 3 ^ { * } 2 5 5", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "is reported. Additional details for CW attack can", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 123, + 205, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 205, + 137 + ], + "score": 1.0, + "content": "be found in Appendix F", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 143, + 149, + 467, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 143, + 149, + 467, + 213 + ], + "spans": [ + { + "bbox": [ + 143, + 149, + 467, + 213 + ], + "score": 0.98, + "html": "
Modelcleanstep_llstep_FGSMiter_lliter_FGSMCW
R20M99.69.710.30.00.00
R20MK99.696.794.589.060.246
R20Mb (Ours)99.597.396.297.288.581
R20Mp (Ours)99.597.195.796.988.982
", + "type": "table", + "image_path": "c673904c52bc36a2ac20b6ef79b31fbb15ba9161edb999ffb29ed9aa24e870aa.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 143, + 149, + 467, + 170.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 143, + 170.33333333333334, + 467, + 191.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 143, + 191.66666666666669, + 467, + 213.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 504, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 143, + 249 + ], + "score": 1.0, + "content": "We tried", + "type": "text" + }, + { + "bbox": [ + 143, + 237, + 169, + 248 + ], + "score": 0.84, + "content": "N = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 236, + 485, + 249 + ], + "score": 1.0, + "content": ", 2 and found not much difference between the two. We report the results with", + "type": "text" + }, + { + "bbox": [ + 485, + 237, + 505, + 248 + ], + "score": 0.84, + "content": "N =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 248, + 430, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 304, + 261 + ], + "score": 1.0, + "content": "2 for the rest of the paper otherwise noted. When", + "type": "text" + }, + { + "bbox": [ + 305, + 248, + 331, + 259 + ], + "score": 0.86, + "content": "N = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 248, + 334, + 261 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 335, + 248, + 357, + 259 + ], + "score": 0.87, + "content": "L _ { d i s t }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 248, + 430, + 261 + ], + "score": 1.0, + "content": "becomes L2 loss.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 236, + 505, + 261 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 503, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "Pivot loss minimizes the distance between the two embeddings by moving only the adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 276, + 322, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 322, + 288 + ], + "score": 1.0, + "content": "embeddings as shown in the right side of the figure 3.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 265, + 505, + 288 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 291, + 435, + 307 + ], + "lines": [ + { + "bbox": [ + 176, + 291, + 435, + 307 + ], + "spans": [ + { + "bbox": [ + 176, + 291, + 435, + 307 + ], + "score": 0.89, + "content": "L _ { d i s t } ( \\pmb { { E } } _ { i } ^ { a d v } | \\pmb { { E } } _ { i } ) = | | \\pmb { { E } } _ { i } ^ { a d v } - \\pmb { { E } } _ { i } | | _ { N } ^ { N } , \\quad N \\in { 1 , 2 \\quad i = 1 , 2 , . . . , k }", + "type": "interline_equation", + "image_path": "65a51d48749309a44e801c21f9dca81d780b27d1739d48e04acf44c349841c79.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 176, + 291, + 435, + 307 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 240, + 329 + ], + "score": 1.0, + "content": "In this case, clean embeddings (", + "type": "text" + }, + { + "bbox": [ + 240, + 317, + 253, + 328 + ], + "score": 0.51, + "content": "\\mathbf { \\mathcal { E } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 317, + 505, + 329 + ], + "score": 1.0, + "content": ") serve as pivots to the adversarial embeddings. In particular,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "we don’t back-propagate through the clean embeddings for the distance based loss. The intuition", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "behind the use of pivot loss is that the embedding from a clean image can be treated as the ground", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 348, + 178, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 178, + 363 + ], + "score": 1.0, + "content": "truth embedding.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 317, + 506, + 363 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 377, + 368, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 376, + 368, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 368, + 391 + ], + "score": 1.0, + "content": "4 LOW LEVEL SIMILARITY LEARNING ANALYSIS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 290, + 413 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 292, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 292, + 414 + ], + "score": 1.0, + "content": "4.1 EXPERIMENTAL RESULTS ON MNIST", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "We first analyze the effect of low level similarity learning on MNIST. We train ResNet models (He", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "et al., 2016) with different methods (standard training, Kurakin’s adversarial training and adversarial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 444, + 463, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 463, + 457 + ], + "score": 1.0, + "content": "training with our distance based loss). Experimental details can be found in Appendix A.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 422, + 505, + 457 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "Table 2 shows the accuracy results for MNIST test dataset for different types of attack methods.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 472, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 485 + ], + "score": 1.0, + "content": "As shown in the table, our method achieves better accuracy than Kurakin’s method for all types", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "of attacks with a little sacrifice on the accuracy for the clean images. Even though adversarial", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "training is done only with “step ll”, additional regularization increases robustness against unknown", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 504, + 504, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 293, + 518 + ], + "score": 1.0, + "content": "“step FGSM”, “iter ll”, “iter FGSM” and CW", + "type": "text" + }, + { + "bbox": [ + 294, + 506, + 310, + 516 + ], + "score": 0.89, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 504, + 504, + 518 + ], + "score": 1.0, + "content": "attacks. This shows that our low-level similarity", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "learning can successfully regularize the one-step adversarial perturbation and its vicinity for simple", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 527, + 241, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 241, + 539 + ], + "score": 1.0, + "content": "image classification like MNIST.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 461, + 506, + 539 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 551, + 285, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 288, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 288, + 565 + ], + "score": 1.0, + "content": "4.2 EMBEDDING SPACE VISUALIZATION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "To visualize the embedding space, we modify 20-layer ResNet model where the last fully connected", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 129, + 596 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 130, + 583, + 161, + 595 + ], + "score": 0.32, + "content": "\\left( 6 4 \\mathbf { x } 1 0 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 583, + 330, + 596 + ], + "score": 1.0, + "content": "is changed to two fully connected layers (", + "type": "text" + }, + { + "bbox": [ + 330, + 583, + 352, + 594 + ], + "score": 0.33, + "content": "6 4 \\mathrm { x } 2", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "and 2x10). We re-train networks with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 593, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 608 + ], + "score": 1.0, + "content": "standard training, Kurakin’s method and our pivot loss on MNIST. 1 In figure 4, we draw embeddings", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 151, + 618 + ], + "score": 1.0, + "content": "(dimension", + "type": "text" + }, + { + "bbox": [ + 151, + 606, + 163, + 615 + ], + "score": 0.61, + "content": "^ { 1 = 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 605, + 505, + 618 + ], + "score": 1.0, + "content": ") between two fully connected layers. As seen from this figure, adversarial images", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 456, + 629 + ], + "score": 1.0, + "content": "from the network trained with standard training cross the decision boundary easily as", + "type": "text" + }, + { + "bbox": [ + 456, + 619, + 462, + 626 + ], + "score": 0.63, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "increases.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "With Kurakin’s adversarial training, the distances between clean and adversarial embeddings are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "minimized compared to standard training. And our pivot loss further minimizes distance between", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "the clean and adversarial embeddings. Note that our pivot loss also decreases absolute value of the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 210, + 673 + ], + "score": 1.0, + "content": "embeddings, thus, higher", + "type": "text" + }, + { + "bbox": [ + 210, + 661, + 222, + 671 + ], + "score": 0.86, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "will eventually result in overlap between distinct embedding distribu-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "tions. We also observe that intra class variation of the clean embeddings are also minimized for the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 682, + 418, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 418, + 695 + ], + "score": 1.0, + "content": "network trained with our pivot loss as shown in the scatter plot in figure 4 (c).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 572, + 505, + 695 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 91, + 505, + 199 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 91, + 505, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 91, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 505, + 199 + ], + "score": 0.971, + "type": "image", + "image_path": "03d39dce6fed9b5b8ffb7ae3b4de76e2f07a5e1bf76cb53aab54a3b3914a9521.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 91, + 505, + 127.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 127.0, + 505, + 163.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 163.0, + 505, + 199.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 506, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 478, + 221 + ], + "score": 1.0, + "content": "Figure 4: Embedding space visualization for modified ResNet models trained on MNIST.", + "type": "text" + }, + { + "bbox": [ + 478, + 210, + 484, + 219 + ], + "score": 0.27, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "-axis", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "and y-axis show first and second dimension of embeddings respectively. Scatter plot shows first", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "100 clean embeddings per each class on MNIST test set. Each arrow shows difference between two", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 241, + 504, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 363, + 253 + ], + "score": 1.0, + "content": "embeddings (one from iter FGSM image (\u000f) and the other from", + "type": "text" + }, + { + "bbox": [ + 363, + 242, + 387, + 253 + ], + "score": 0.81, + "content": "( \\epsilon { + } 8 ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 241, + 482, + 253 + ], + "score": 1.0, + "content": "). We draw arrows from", + "type": "text" + }, + { + "bbox": [ + 483, + 241, + 504, + 252 + ], + "score": 0.88, + "content": "\\epsilon = 0", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 252, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 117, + 265 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 253, + 144, + 263 + ], + "score": 0.87, + "content": "\\epsilon = 7 6", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 253, + 194, + 263 + ], + "score": 0.82, + "content": "( \\approx 0 . 3 ^ { * } 2 5 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 252, + 506, + 265 + ], + "score": 1.0, + "content": ") for one sample image per each class. We observe differences between clean", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 263, + 496, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 496, + 276 + ], + "score": 1.0, + "content": "and corresponding adversarial embeddings are minimized for the network trained with pivot loss.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "title", + "bbox": [ + 108, + 298, + 250, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 252, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 178, + 312 + ], + "score": 1.0, + "content": "4.3 EFFECT OF", + "type": "text" + }, + { + "bbox": [ + 179, + 299, + 191, + 309 + ], + "score": 0.85, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 297, + 252, + 312 + ], + "score": 1.0, + "content": "ON CIFAR10", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 361, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 361, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 361, + 332 + ], + "score": 1.0, + "content": "We train 20-layer ResNet models with pivot loss and various", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 330, + 361, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 122, + 342 + ], + "score": 0.85, + "content": "\\lambda _ { \\mathrm { 2 } } \\mathrm { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 330, + 361, + 343 + ], + "score": 1.0, + "content": "for CIFAR10 dataset to study effects of the weight of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 341, + 362, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 362, + 354 + ], + "score": 1.0, + "content": "distance measure in the loss function. Figure 5 shows that a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 352, + 362, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 134, + 365 + ], + "score": 1.0, + "content": "higher", + "type": "text" + }, + { + "bbox": [ + 135, + 353, + 146, + 363 + ], + "score": 0.88, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 352, + 362, + 365 + ], + "score": 1.0, + "content": "increases accuracy of the iteratively generated adver-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 364, + 361, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 361, + 375 + ], + "score": 1.0, + "content": "sarial images. However, it reduces accuracy on the clean im-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 375, + 362, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 190, + 386 + ], + "score": 1.0, + "content": "ages, and increasing", + "type": "text" + }, + { + "bbox": [ + 190, + 375, + 201, + 385 + ], + "score": 0.86, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 375, + 362, + 386 + ], + "score": 1.0, + "content": "above 0.3 even results in divergence of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 385, + 362, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 362, + 397 + ], + "score": 1.0, + "content": "the training. This is because embedding distributions of differ-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 397, + 361, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 361, + 408 + ], + "score": 1.0, + "content": "ent classes will eventually overlap since absolute value of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 408, + 362, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 239, + 419 + ], + "score": 1.0, + "content": "embedding will be decreased as", + "type": "text" + }, + { + "bbox": [ + 239, + 408, + 250, + 418 + ], + "score": 0.88, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 408, + 362, + 419 + ], + "score": 1.0, + "content": "increases as seen from the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 419, + 361, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 361, + 430 + ], + "score": 1.0, + "content": "section 4.2. In this experiment, we show that there exists clear", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 430, + 361, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 361, + 441 + ], + "score": 1.0, + "content": "trade-off between accuracy for the clean images and that for the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 439, + 360, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 348, + 453 + ], + "score": 1.0, + "content": "adversarial images, and we recommend using a very high", + "type": "text" + }, + { + "bbox": [ + 349, + 441, + 360, + 451 + ], + "score": 0.85, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 452, + 280, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 280, + 463 + ], + "score": 1.0, + "content": "only under strong adversarial environment.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16 + }, + { + "type": "image", + "bbox": [ + 367, + 322, + 500, + 421 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 367, + 322, + 500, + 421 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 367, + 322, + 500, + 421 + ], + "spans": [ + { + "bbox": [ + 367, + 322, + 500, + 421 + ], + "score": 0.945, + "type": "image", + "image_path": "c7c186c5dd4d21b6bfbfbcbee29ca466d12198bfbe2a9938e520a56b1e3d928b.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 367, + 322, + 500, + 371.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 367, + 371.5, + 500, + 421.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 381, + 433, + 487, + 445 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 380, + 431, + 487, + 448 + ], + "spans": [ + { + "bbox": [ + 380, + 431, + 475, + 448 + ], + "score": 1.0, + "content": "Figure 5: Accuracy vs.", + "type": "text" + }, + { + "bbox": [ + 475, + 433, + 487, + 444 + ], + "score": 0.8, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "index": 24.25 + }, + { + "type": "title", + "bbox": [ + 107, + 481, + 366, + 493 + ], + "lines": [ + { + "bbox": [ + 104, + 479, + 367, + 496 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 367, + 496 + ], + "score": 1.0, + "content": "5 CASCADE ADVERSARIAL TRAINING ANALYSIS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 507, + 266, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 267, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 267, + 520 + ], + "score": 1.0, + "content": "5.1 SOURCE NETWORK SELECTION", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 257, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 257, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 257, + 540 + ], + "score": 1.0, + "content": "We further study the transferability", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 539, + 257, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 257, + 550 + ], + "score": 1.0, + "content": "of iter FGSM images between vari-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 550, + 257, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 257, + 561 + ], + "score": 1.0, + "content": "ous architectures. To this end, we", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 257, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 257, + 572 + ], + "score": 1.0, + "content": "first train 56-layer ResNet networks", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 258, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 258, + 583 + ], + "score": 1.0, + "content": "(Kurakin’s, pivot loss) with the same", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 582, + 258, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 258, + 594 + ], + "score": 1.0, + "content": "initialization. Then we train another", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 594, + 257, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 257, + 605 + ], + "score": 1.0, + "content": "56-layer ResNet network (Kurakin’s)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 605, + 258, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 258, + 616 + ], + "score": 1.0, + "content": "with different initialization. We re-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 616, + 258, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 258, + 627 + ], + "score": 1.0, + "content": "peat the training for the 110-layer", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 627, + 258, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 258, + 638 + ], + "score": 1.0, + "content": "ResNet networks. We measure cor-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 637, + 258, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 258, + 649 + ], + "score": 1.0, + "content": "relation between iter FGSM noises", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 649, + 206, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 206, + 660 + ], + "score": 1.0, + "content": "from different networks.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5 + }, + { + "type": "image", + "bbox": [ + 265, + 534, + 504, + 676 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 106, + 666, + 256, + 731 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 666, + 257, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 257, + 677 + ], + "score": 1.0, + "content": "Figure 6 (a) shows correlation be-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 677, + 257, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 257, + 688 + ], + "score": 1.0, + "content": "tween iter FGSM noises crafted from", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 687, + 258, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 258, + 699 + ], + "score": 1.0, + "content": "Kurakin’s network and those from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 258, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 258, + 710 + ], + "score": 1.0, + "content": "Pivot network with the same initial-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 257, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 257, + 721 + ], + "score": 1.0, + "content": "ization. Conjectured from (Kurakin", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 258, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 258, + 732 + ], + "score": 1.0, + "content": "et al., 2017), we observe high corre-", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + }, + { + "type": "image_body", + "bbox": [ + 265, + 534, + 504, + 676 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 265, + 534, + 504, + 676 + ], + "spans": [ + { + "bbox": [ + 265, + 534, + 504, + 676 + ], + "score": 0.954, + "type": "image", + "image_path": "34d7075ba0af839593f33f5d84485be6ec355dc2d545d65ab9e3441ef984ed68.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 265, + 534, + 504, + 546.9090909090909 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 265, + 546.9090909090909, + 504, + 559.8181818181818 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 265, + 559.8181818181818, + 504, + 572.7272727272726 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 265, + 572.7272727272726, + 504, + 585.6363636363635 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 265, + 585.6363636363635, + 504, + 598.5454545454544 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 265, + 598.5454545454544, + 504, + 611.4545454545453 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 265, + 611.4545454545453, + 504, + 624.3636363636361 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 265, + 624.3636363636361, + 504, + 637.272727272727 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 265, + 637.272727272727, + 504, + 650.1818181818179 + ], + "spans": [], + "index": 54 + }, + { + "bbox": [ + 265, + 650.1818181818179, + 504, + 663.0909090909088 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 265, + 663.0909090909088, + 504, + 675.9999999999997 + ], + "spans": [], + "index": 56 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 264, + 685, + 504, + 719 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 264, + 685, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 264, + 685, + 505, + 697 + ], + "score": 1.0, + "content": "Figure 6: Correlation between iter FGSM noises crafted", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 264, + 695, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 264, + 695, + 505, + 708 + ], + "score": 1.0, + "content": "from different networks for each \u000f. Correlation is averaged", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 264, + 707, + 500, + 720 + ], + "spans": [ + { + "bbox": [ + 264, + 707, + 500, + 720 + ], + "score": 1.0, + "content": "over randomly chosen 128 images from CIFAR10 test-set.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 58 + } + ], + "index": 51 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 91, + 505, + 199 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 91, + 505, + 199 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 91, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 505, + 199 + ], + "score": 0.971, + "type": "image", + "image_path": "03d39dce6fed9b5b8ffb7ae3b4de76e2f07a5e1bf76cb53aab54a3b3914a9521.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 91, + 505, + 127.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 127.0, + 505, + 163.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 163.0, + 505, + 199.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 208, + 506, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 478, + 221 + ], + "score": 1.0, + "content": "Figure 4: Embedding space visualization for modified ResNet models trained on MNIST.", + "type": "text" + }, + { + "bbox": [ + 478, + 210, + 484, + 219 + ], + "score": 0.27, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "-axis", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "and y-axis show first and second dimension of embeddings respectively. Scatter plot shows first", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "100 clean embeddings per each class on MNIST test set. Each arrow shows difference between two", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 241, + 504, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 363, + 253 + ], + "score": 1.0, + "content": "embeddings (one from iter FGSM image (\u000f) and the other from", + "type": "text" + }, + { + "bbox": [ + 363, + 242, + 387, + 253 + ], + "score": 0.81, + "content": "( \\epsilon { + } 8 ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 241, + 482, + 253 + ], + "score": 1.0, + "content": "). We draw arrows from", + "type": "text" + }, + { + "bbox": [ + 483, + 241, + 504, + 252 + ], + "score": 0.88, + "content": "\\epsilon = 0", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 252, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 117, + 265 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 253, + 144, + 263 + ], + "score": 0.87, + "content": "\\epsilon = 7 6", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 253, + 194, + 263 + ], + "score": 0.82, + "content": "( \\approx 0 . 3 ^ { * } 2 5 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 252, + 506, + 265 + ], + "score": 1.0, + "content": ") for one sample image per each class. We observe differences between clean", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 263, + 496, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 496, + 276 + ], + "score": 1.0, + "content": "and corresponding adversarial embeddings are minimized for the network trained with pivot loss.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "title", + "bbox": [ + 108, + 298, + 250, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 252, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 178, + 312 + ], + "score": 1.0, + "content": "4.3 EFFECT OF", + "type": "text" + }, + { + "bbox": [ + 179, + 299, + 191, + 309 + ], + "score": 0.85, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 297, + 252, + 312 + ], + "score": 1.0, + "content": "ON CIFAR10", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 361, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 361, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 361, + 332 + ], + "score": 1.0, + "content": "We train 20-layer ResNet models with pivot loss and various", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 330, + 361, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 122, + 342 + ], + "score": 0.85, + "content": "\\lambda _ { \\mathrm { 2 } } \\mathrm { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 330, + 361, + 343 + ], + "score": 1.0, + "content": "for CIFAR10 dataset to study effects of the weight of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 341, + 362, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 362, + 354 + ], + "score": 1.0, + "content": "distance measure in the loss function. Figure 5 shows that a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 352, + 362, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 134, + 365 + ], + "score": 1.0, + "content": "higher", + "type": "text" + }, + { + "bbox": [ + 135, + 353, + 146, + 363 + ], + "score": 0.88, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 352, + 362, + 365 + ], + "score": 1.0, + "content": "increases accuracy of the iteratively generated adver-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 364, + 361, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 361, + 375 + ], + "score": 1.0, + "content": "sarial images. However, it reduces accuracy on the clean im-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 375, + 362, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 190, + 386 + ], + "score": 1.0, + "content": "ages, and increasing", + "type": "text" + }, + { + "bbox": [ + 190, + 375, + 201, + 385 + ], + "score": 0.86, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 375, + 362, + 386 + ], + "score": 1.0, + "content": "above 0.3 even results in divergence of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 385, + 362, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 362, + 397 + ], + "score": 1.0, + "content": "the training. This is because embedding distributions of differ-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 397, + 361, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 361, + 408 + ], + "score": 1.0, + "content": "ent classes will eventually overlap since absolute value of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 408, + 362, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 239, + 419 + ], + "score": 1.0, + "content": "embedding will be decreased as", + "type": "text" + }, + { + "bbox": [ + 239, + 408, + 250, + 418 + ], + "score": 0.88, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 408, + 362, + 419 + ], + "score": 1.0, + "content": "increases as seen from the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 419, + 361, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 361, + 430 + ], + "score": 1.0, + "content": "section 4.2. In this experiment, we show that there exists clear", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 430, + 361, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 361, + 441 + ], + "score": 1.0, + "content": "trade-off between accuracy for the clean images and that for the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 439, + 360, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 348, + 453 + ], + "score": 1.0, + "content": "adversarial images, and we recommend using a very high", + "type": "text" + }, + { + "bbox": [ + 349, + 441, + 360, + 451 + ], + "score": 0.85, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 452, + 280, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 280, + 463 + ], + "score": 1.0, + "content": "only under strong adversarial environment.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 319, + 362, + 463 + ] + }, + { + "type": "image", + "bbox": [ + 367, + 322, + 500, + 421 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 367, + 322, + 500, + 421 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 367, + 322, + 500, + 421 + ], + "spans": [ + { + "bbox": [ + 367, + 322, + 500, + 421 + ], + "score": 0.945, + "type": "image", + "image_path": "c7c186c5dd4d21b6bfbfbcbee29ca466d12198bfbe2a9938e520a56b1e3d928b.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 367, + 322, + 500, + 371.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 367, + 371.5, + 500, + 421.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 381, + 433, + 487, + 445 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 380, + 431, + 487, + 448 + ], + "spans": [ + { + "bbox": [ + 380, + 431, + 475, + 448 + ], + "score": 1.0, + "content": "Figure 5: Accuracy vs.", + "type": "text" + }, + { + "bbox": [ + 475, + 433, + 487, + 444 + ], + "score": 0.8, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "index": 24.25 + }, + { + "type": "title", + "bbox": [ + 107, + 481, + 366, + 493 + ], + "lines": [ + { + "bbox": [ + 104, + 479, + 367, + 496 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 367, + 496 + ], + "score": 1.0, + "content": "5 CASCADE ADVERSARIAL TRAINING ANALYSIS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 507, + 266, + 518 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 267, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 267, + 520 + ], + "score": 1.0, + "content": "5.1 SOURCE NETWORK SELECTION", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 257, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 257, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 257, + 540 + ], + "score": 1.0, + "content": "We further study the transferability", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 539, + 257, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 257, + 550 + ], + "score": 1.0, + "content": "of iter FGSM images between vari-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 550, + 257, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 257, + 561 + ], + "score": 1.0, + "content": "ous architectures. To this end, we", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 561, + 257, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 257, + 572 + ], + "score": 1.0, + "content": "first train 56-layer ResNet networks", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 572, + 258, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 258, + 583 + ], + "score": 1.0, + "content": "(Kurakin’s, pivot loss) with the same", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 582, + 258, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 258, + 594 + ], + "score": 1.0, + "content": "initialization. Then we train another", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 594, + 257, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 257, + 605 + ], + "score": 1.0, + "content": "56-layer ResNet network (Kurakin’s)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 605, + 258, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 258, + 616 + ], + "score": 1.0, + "content": "with different initialization. We re-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 616, + 258, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 258, + 627 + ], + "score": 1.0, + "content": "peat the training for the 110-layer", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 627, + 258, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 258, + 638 + ], + "score": 1.0, + "content": "ResNet networks. We measure cor-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 637, + 258, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 258, + 649 + ], + "score": 1.0, + "content": "relation between iter FGSM noises", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 649, + 206, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 206, + 660 + ], + "score": 1.0, + "content": "from different networks.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 527, + 258, + 660 + ] + }, + { + "type": "image", + "bbox": [ + 265, + 534, + 504, + 676 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 106, + 666, + 256, + 731 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 666, + 257, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 257, + 677 + ], + "score": 1.0, + "content": "Figure 6 (a) shows correlation be-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 677, + 257, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 257, + 688 + ], + "score": 1.0, + "content": "tween iter FGSM noises crafted from", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 687, + 258, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 258, + 699 + ], + "score": 1.0, + "content": "Kurakin’s network and those from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 258, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 258, + 710 + ], + "score": 1.0, + "content": "Pivot network with the same initial-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 257, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 257, + 721 + ], + "score": 1.0, + "content": "ization. Conjectured from (Kurakin", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 258, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 258, + 732 + ], + "score": 1.0, + "content": "et al., 2017), we observe high corre-", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + }, + { + "type": "image_body", + "bbox": [ + 265, + 534, + 504, + 676 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 265, + 534, + 504, + 676 + ], + "spans": [ + { + "bbox": [ + 265, + 534, + 504, + 676 + ], + "score": 0.954, + "type": "image", + "image_path": "34d7075ba0af839593f33f5d84485be6ec355dc2d545d65ab9e3441ef984ed68.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 265, + 534, + 504, + 546.9090909090909 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 265, + 546.9090909090909, + 504, + 559.8181818181818 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 265, + 559.8181818181818, + 504, + 572.7272727272726 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 265, + 572.7272727272726, + 504, + 585.6363636363635 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 265, + 585.6363636363635, + 504, + 598.5454545454544 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 265, + 598.5454545454544, + 504, + 611.4545454545453 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 265, + 611.4545454545453, + 504, + 624.3636363636361 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 265, + 624.3636363636361, + 504, + 637.272727272727 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 265, + 637.272727272727, + 504, + 650.1818181818179 + ], + "spans": [], + "index": 54 + }, + { + "bbox": [ + 265, + 650.1818181818179, + 504, + 663.0909090909088 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 265, + 663.0909090909088, + 504, + 675.9999999999997 + ], + "spans": [], + "index": 56 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 264, + 685, + 504, + 719 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 264, + 685, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 264, + 685, + 505, + 697 + ], + "score": 1.0, + "content": "Figure 6: Correlation between iter FGSM noises crafted", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 264, + 695, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 264, + 695, + 505, + 708 + ], + "score": 1.0, + "content": "from different networks for each \u000f. Correlation is averaged", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 264, + 707, + 500, + 720 + ], + "spans": [ + { + "bbox": [ + 264, + 707, + 500, + 720 + ], + "score": 1.0, + "content": "over randomly chosen 128 images from CIFAR10 test-set.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 58 + } + ], + "index": 51 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 132, + 149, + 480, + 255 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 79, + 505, + 136 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 235, + 92 + ], + "score": 1.0, + "content": "Table 3: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 236, + 81, + 252, + 92 + ], + "score": 0.8, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 80, + 403, + 92 + ], + "score": 1.0, + "content": "for 110-layer ResNet models. CW", + "type": "text" + }, + { + "bbox": [ + 403, + 81, + 420, + 91 + ], + "score": 0.89, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 80, + 505, + 92 + ], + "score": 1.0, + "content": "attack is performed", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 505, + 103 + ], + "score": 1.0, + "content": "with 100 test samples (10 samples per each class) and the number of adversarial examples with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 101, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 133, + 113 + ], + "score": 0.88, + "content": "\\epsilon > 2", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 101, + 208, + 116 + ], + "score": 1.0, + "content": "or 4 is reported.", + "type": "text" + }, + { + "bbox": [ + 209, + 102, + 244, + 114 + ], + "score": 0.89, + "content": "\\{ \\mathrm { R 1 1 0 } _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 101, + 300, + 116 + ], + "score": 1.0, + "content": ": Kurakin’s,", + "type": "text" + }, + { + "bbox": [ + 300, + 102, + 330, + 113 + ], + "score": 0.86, + "content": "\\mathrm { R } 1 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 101, + 386, + 116 + ], + "score": 1.0, + "content": ": P ivot loss,", + "type": "text" + }, + { + "bbox": [ + 387, + 102, + 416, + 113 + ], + "score": 0.87, + "content": "\\mathrm { R } 1 1 0 _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 101, + 505, + 116 + ], + "score": 1.0, + "content": ": Ensemble training,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 112, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 146, + 125 + ], + "score": 0.84, + "content": "\\mathrm { R 1 1 0 } _ { K , C }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 112, + 218, + 126 + ], + "score": 1.0, + "content": ": Kurakin’s and", + "type": "text" + }, + { + "bbox": [ + 218, + 114, + 228, + 123 + ], + "score": 0.38, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 112, + 294, + 126 + ], + "score": 1.0, + "content": "ascade training,", + "type": "text" + }, + { + "bbox": [ + 295, + 114, + 333, + 125 + ], + "score": 0.84, + "content": "\\mathrm { R 1 1 0 } _ { P , E }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 112, + 506, + 126 + ], + "score": 1.0, + "content": ": P ivot loss and Ensemble training, and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 123, + 286, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 145, + 137 + ], + "score": 0.84, + "content": "\\mathrm { R 1 1 0 } _ { P , C }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 123, + 286, + 137 + ], + "score": 1.0, + "content": ": P ivot loss and Cascade training}", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 132, + 149, + 480, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 149, + 480, + 255 + ], + "spans": [ + { + "bbox": [ + 132, + 149, + 480, + 255 + ], + "score": 0.982, + "html": "
Modelcleanstep_llstep_FGSMiter_FGSMCW
e=2∈=16e=2∈=16e=2∈=4∈=2e=4
R110K92.388.390.786.095.259.49.2254
R110p (Ours)92.386.089.481.691.664.120.9327
R110E92.386.374.384.172.963.521.1246
R110k,c (Ours)92.386.272.882.666.769.333.4205
R110p,ε (Ours)91.384.065.777.654.566.838.33816
R110p,c (Ours)91.585.776.482.469.173.542.52715
", + "type": "table", + "image_path": "635c6aa003fe8ab801de926562c927629e2d923031927c6371924d96ec1dc1ef.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 132, + 149, + 480, + 184.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 132, + 184.33333333333334, + 480, + 219.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 132, + 219.66666666666669, + 480, + 255.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 505, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "lation between iter FGSM noises from networks with the same initialization. Correlation between", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 297, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 309 + ], + "score": 1.0, + "content": "iter FGSM noises from the networks with different initialization, however, becomes lower as the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "network is deeper as shown in figure 6 (b). Since the degree of freedom increases as the network", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 318, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 333 + ], + "score": 1.0, + "content": "size increases, adversarially trained networks prone to end up with different states, thus, making", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "transfer rate lower. To maximize the benefit of the cascade adversarial training, we propose to use", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "score": 1.0, + "content": "the same initialization for a cascade network and a source network used for iterative adversarial", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 352, + 193, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 193, + 365 + ], + "score": 1.0, + "content": "examples generation.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 383, + 266, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 268, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 268, + 396 + ], + "score": 1.0, + "content": "5.2 WHITE BOX ATTACK ANALYSIS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 407, + 504, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 504, + 419 + ], + "score": 1.0, + "content": "We first compare a network trained with Kurakin’s method and that with pivot loss. We train 110-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "layer ResNet models with/without pivot loss and report accuracy in table 3. We observe our low-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "level similarity learning further improves robustness against iterative attacks compared to Kurakin’s", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 440, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 452 + ], + "score": 1.0, + "content": "adversarial training. However, the accuracy improvements against iterative attacks (iter FGSM,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "score": 1.0, + "content": "CW) are limited, showing regularization effect of low-level similarity learning is not sufficient for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 462, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 506, + 474 + ], + "score": 1.0, + "content": "the iterative attacks on complex color images like CIFAR10. This is different from MNIST test", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 472, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 484 + ], + "score": 1.0, + "content": "cases where we observed significant accuracy increase for iterative attacks only with pivot loss. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 484, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 496 + ], + "score": 1.0, + "content": "observe label leaking phenomenon reported in (Kurakin et al., 2017) happens even though we don’t", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 495, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 506 + ], + "score": 1.0, + "content": "train a network with step FGSM images. Additional analysis for this phenomenon is explained in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 506, + 160, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 160, + 517 + ], + "score": 1.0, + "content": "Appendix D.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "score": 1.0, + "content": "Next, we train a network from scratch with iter FGSM examples crafted from the defended network,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 136, + 545 + ], + "score": 0.88, + "content": "\\mathrm { R } 1 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 532, + 293, + 545 + ], + "score": 1.0, + "content": ". We use the same initialization used in", + "type": "text" + }, + { + "bbox": [ + 294, + 533, + 324, + 544 + ], + "score": 0.9, + "content": "\\mathrm { R } 1 1 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "as discussed in 5.1. In particular, iter FGSM", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 203, + 557 + ], + "score": 1.0, + "content": "images are crafted from", + "type": "text" + }, + { + "bbox": [ + 203, + 545, + 233, + 555 + ], + "score": 0.88, + "content": "\\mathrm { R } 1 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 545, + 373, + 557 + ], + "score": 1.0, + "content": "with CIFAR10 training images for", + "type": "text" + }, + { + "bbox": [ + 373, + 545, + 426, + 555 + ], + "score": 0.55, + "content": "\\epsilon = 1 , 2 , . . . , 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 545, + 505, + 557 + ], + "score": 1.0, + "content": ", and those are used", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 556, + 504, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 504, + 567 + ], + "score": 1.0, + "content": "randomly together with step ll examples from the network being trained. We train cascade networks", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "with/without pivot loss. We also train networks with ensemble adversarial training (Tramer et al., `", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "2017) with/without pivot loss for comparison. The implementation details for the trained models", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 588, + 225, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 225, + 600 + ], + "score": 1.0, + "content": "can be found in Appendix B.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 605, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 107, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 107, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "We find several meaningful observations in table 3. First, ensemble and cascade models show im-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "proved accuracy against iterative attack although at the expense of decreased accuracy for one-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 338, + 640 + ], + "score": 1.0, + "content": "step attacks compared to the baseline defended network", + "type": "text" + }, + { + "bbox": [ + 339, + 627, + 374, + 638 + ], + "score": 0.85, + "content": "( \\mathrm { R } 1 1 0 _ { K } )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "). Additional data augmentation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "from other networks enhances the robustness against iterative attack, weakening label leaking effect", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 649, + 267, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 267, + 662 + ], + "score": 1.0, + "content": "caused by one-step adversarial training.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 273, + 678 + ], + "score": 1.0, + "content": "Second, our low-level similarity learning", + "type": "text" + }, + { + "bbox": [ + 273, + 666, + 314, + 678 + ], + "score": 0.85, + "content": "( \\mathrm { R } 1 1 0 _ { P , E }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 665, + 317, + 678 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 318, + 666, + 358, + 678 + ], + "score": 0.81, + "content": "\\operatorname { R 1 1 0 } _ { P , C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 665, + 505, + 678 + ], + "score": 1.0, + "content": ") further enhances robustness against", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 386, + 690 + ], + "score": 1.0, + "content": "iterative attacks including fully unknown CW attack (especially for", + "type": "text" + }, + { + "bbox": [ + 386, + 677, + 403, + 687 + ], + "score": 0.83, + "content": "\\epsilon { = } 4", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "). Additional knowledge", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "learned from data augmentation through cascade/ensemble adversarial training enables networks to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "learn partial knowledge of perturbations generated by an iterative method. And the learned iterative", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "perturbations become regularized further with our low-level similarity learning making networks", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 721, + 271, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 271, + 732 + ], + "score": 1.0, + "content": "robust against unknown iterative attacks.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 7 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 132, + 149, + 480, + 255 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 79, + 505, + 136 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 235, + 92 + ], + "score": 1.0, + "content": "Table 3: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 236, + 81, + 252, + 92 + ], + "score": 0.8, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 80, + 403, + 92 + ], + "score": 1.0, + "content": "for 110-layer ResNet models. CW", + "type": "text" + }, + { + "bbox": [ + 403, + 81, + 420, + 91 + ], + "score": 0.89, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 80, + 505, + 92 + ], + "score": 1.0, + "content": "attack is performed", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 505, + 103 + ], + "score": 1.0, + "content": "with 100 test samples (10 samples per each class) and the number of adversarial examples with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 101, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 133, + 113 + ], + "score": 0.88, + "content": "\\epsilon > 2", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 101, + 208, + 116 + ], + "score": 1.0, + "content": "or 4 is reported.", + "type": "text" + }, + { + "bbox": [ + 209, + 102, + 244, + 114 + ], + "score": 0.89, + "content": "\\{ \\mathrm { R 1 1 0 } _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 101, + 300, + 116 + ], + "score": 1.0, + "content": ": Kurakin’s,", + "type": "text" + }, + { + "bbox": [ + 300, + 102, + 330, + 113 + ], + "score": 0.86, + "content": "\\mathrm { R } 1 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 101, + 386, + 116 + ], + "score": 1.0, + "content": ": P ivot loss,", + "type": "text" + }, + { + "bbox": [ + 387, + 102, + 416, + 113 + ], + "score": 0.87, + "content": "\\mathrm { R } 1 1 0 _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 101, + 505, + 116 + ], + "score": 1.0, + "content": ": Ensemble training,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 112, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 146, + 125 + ], + "score": 0.84, + "content": "\\mathrm { R 1 1 0 } _ { K , C }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 112, + 218, + 126 + ], + "score": 1.0, + "content": ": Kurakin’s and", + "type": "text" + }, + { + "bbox": [ + 218, + 114, + 228, + 123 + ], + "score": 0.38, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 112, + 294, + 126 + ], + "score": 1.0, + "content": "ascade training,", + "type": "text" + }, + { + "bbox": [ + 295, + 114, + 333, + 125 + ], + "score": 0.84, + "content": "\\mathrm { R 1 1 0 } _ { P , E }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 112, + 506, + 126 + ], + "score": 1.0, + "content": ": P ivot loss and Ensemble training, and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 123, + 286, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 145, + 137 + ], + "score": 0.84, + "content": "\\mathrm { R 1 1 0 } _ { P , C }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 123, + 286, + 137 + ], + "score": 1.0, + "content": ": P ivot loss and Cascade training}", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 132, + 149, + 480, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 149, + 480, + 255 + ], + "spans": [ + { + "bbox": [ + 132, + 149, + 480, + 255 + ], + "score": 0.982, + "html": "
Modelcleanstep_llstep_FGSMiter_FGSMCW
e=2∈=16e=2∈=16e=2∈=4∈=2e=4
R110K92.388.390.786.095.259.49.2254
R110p (Ours)92.386.089.481.691.664.120.9327
R110E92.386.374.384.172.963.521.1246
R110k,c (Ours)92.386.272.882.666.769.333.4205
R110p,ε (Ours)91.384.065.777.654.566.838.33816
R110p,c (Ours)91.585.776.482.469.173.542.52715
", + "type": "table", + "image_path": "635c6aa003fe8ab801de926562c927629e2d923031927c6371924d96ec1dc1ef.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 132, + 149, + 480, + 184.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 132, + 184.33333333333334, + 480, + 219.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 132, + 219.66666666666669, + 480, + 255.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 505, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "lation between iter FGSM noises from networks with the same initialization. Correlation between", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 297, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 309 + ], + "score": 1.0, + "content": "iter FGSM noises from the networks with different initialization, however, becomes lower as the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "network is deeper as shown in figure 6 (b). Since the degree of freedom increases as the network", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 318, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 333 + ], + "score": 1.0, + "content": "size increases, adversarially trained networks prone to end up with different states, thus, making", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "score": 1.0, + "content": "transfer rate lower. To maximize the benefit of the cascade adversarial training, we propose to use", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "score": 1.0, + "content": "the same initialization for a cascade network and a source network used for iterative adversarial", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 352, + 193, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 193, + 365 + ], + "score": 1.0, + "content": "examples generation.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 285, + 505, + 365 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 383, + 266, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 268, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 268, + 396 + ], + "score": 1.0, + "content": "5.2 WHITE BOX ATTACK ANALYSIS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 407, + 504, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 504, + 419 + ], + "score": 1.0, + "content": "We first compare a network trained with Kurakin’s method and that with pivot loss. We train 110-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "layer ResNet models with/without pivot loss and report accuracy in table 3. We observe our low-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "level similarity learning further improves robustness against iterative attacks compared to Kurakin’s", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 440, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 452 + ], + "score": 1.0, + "content": "adversarial training. However, the accuracy improvements against iterative attacks (iter FGSM,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "score": 1.0, + "content": "CW) are limited, showing regularization effect of low-level similarity learning is not sufficient for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 462, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 506, + 474 + ], + "score": 1.0, + "content": "the iterative attacks on complex color images like CIFAR10. This is different from MNIST test", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 472, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 484 + ], + "score": 1.0, + "content": "cases where we observed significant accuracy increase for iterative attacks only with pivot loss. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 484, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 496 + ], + "score": 1.0, + "content": "observe label leaking phenomenon reported in (Kurakin et al., 2017) happens even though we don’t", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 495, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 506 + ], + "score": 1.0, + "content": "train a network with step FGSM images. Additional analysis for this phenomenon is explained in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 506, + 160, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 160, + 517 + ], + "score": 1.0, + "content": "Appendix D.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 407, + 506, + 517 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "score": 1.0, + "content": "Next, we train a network from scratch with iter FGSM examples crafted from the defended network,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 136, + 545 + ], + "score": 0.88, + "content": "\\mathrm { R } 1 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 532, + 293, + 545 + ], + "score": 1.0, + "content": ". We use the same initialization used in", + "type": "text" + }, + { + "bbox": [ + 294, + 533, + 324, + 544 + ], + "score": 0.9, + "content": "\\mathrm { R } 1 1 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "as discussed in 5.1. In particular, iter FGSM", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 203, + 557 + ], + "score": 1.0, + "content": "images are crafted from", + "type": "text" + }, + { + "bbox": [ + 203, + 545, + 233, + 555 + ], + "score": 0.88, + "content": "\\mathrm { R } 1 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 545, + 373, + 557 + ], + "score": 1.0, + "content": "with CIFAR10 training images for", + "type": "text" + }, + { + "bbox": [ + 373, + 545, + 426, + 555 + ], + "score": 0.55, + "content": "\\epsilon = 1 , 2 , . . . , 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 545, + 505, + 557 + ], + "score": 1.0, + "content": ", and those are used", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 556, + 504, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 504, + 567 + ], + "score": 1.0, + "content": "randomly together with step ll examples from the network being trained. We train cascade networks", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "with/without pivot loss. We also train networks with ensemble adversarial training (Tramer et al., `", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "2017) with/without pivot loss for comparison. The implementation details for the trained models", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 588, + 225, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 225, + 600 + ], + "score": 1.0, + "content": "can be found in Appendix B.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 523, + 505, + 600 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 605, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 107, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 107, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "We find several meaningful observations in table 3. First, ensemble and cascade models show im-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "proved accuracy against iterative attack although at the expense of decreased accuracy for one-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 338, + 640 + ], + "score": 1.0, + "content": "step attacks compared to the baseline defended network", + "type": "text" + }, + { + "bbox": [ + 339, + 627, + 374, + 638 + ], + "score": 0.85, + "content": "( \\mathrm { R } 1 1 0 _ { K } )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "). Additional data augmentation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "from other networks enhances the robustness against iterative attack, weakening label leaking effect", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 649, + 267, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 267, + 662 + ], + "score": 1.0, + "content": "caused by one-step adversarial training.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 605, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 273, + 678 + ], + "score": 1.0, + "content": "Second, our low-level similarity learning", + "type": "text" + }, + { + "bbox": [ + 273, + 666, + 314, + 678 + ], + "score": 0.85, + "content": "( \\mathrm { R } 1 1 0 _ { P , E }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 665, + 317, + 678 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 318, + 666, + 358, + 678 + ], + "score": 0.81, + "content": "\\operatorname { R 1 1 0 } _ { P , C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 665, + 505, + 678 + ], + "score": 1.0, + "content": ") further enhances robustness against", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 386, + 690 + ], + "score": 1.0, + "content": "iterative attacks including fully unknown CW attack (especially for", + "type": "text" + }, + { + "bbox": [ + 386, + 677, + 403, + 687 + ], + "score": 0.83, + "content": "\\epsilon { = } 4", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "). Additional knowledge", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "learned from data augmentation through cascade/ensemble adversarial training enables networks to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "learn partial knowledge of perturbations generated by an iterative method. And the learned iterative", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "perturbations become regularized further with our low-level similarity learning making networks", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 721, + 271, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 271, + 732 + ], + "score": 1.0, + "content": "robust against unknown iterative attacks.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 665, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 116, + 138, + 496, + 240 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 125 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 233, + 92 + ], + "score": 1.0, + "content": "Table 4: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 234, + 81, + 249, + 91 + ], + "score": 0.83, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 79, + 474, + 92 + ], + "score": 1.0, + "content": "for 110-layer ResNet models under black box attacks", + "type": "text" + }, + { + "bbox": [ + 475, + 81, + 501, + 91 + ], + "score": 0.76, + "content": "\\left( \\epsilon = 1 6 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 79, + 505, + 92 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 91, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 107, + 91, + 263, + 103 + ], + "score": 1.0, + "content": "{Target: same networks in table 3 and", + "type": "text" + }, + { + "bbox": [ + 263, + 91, + 294, + 102 + ], + "score": 0.88, + "content": "\\mathrm { R } 1 1 0 _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 91, + 505, + 103 + ], + "score": 1.0, + "content": ": Kurakin’s, Source: re-trained baseline, Kurakin’s,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 114 + ], + "score": 1.0, + "content": "cascade and ensemble networks with/without pivot loss. Source networks use the different initial-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 113, + 492, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 492, + 125 + ], + "score": 1.0, + "content": "ization from the target networks. Additional details of the models can be found in Appendix B.}", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 116, + 138, + 496, + 240 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 138, + 496, + 240 + ], + "spans": [ + { + "bbox": [ + 116, + 138, + 496, + 240 + ], + "score": 0.982, + "html": "
TargetSource: iter_FGSM
R1102R110K2R110E2R110p2R110K,C2R110p,E2R110p,C2
R110K70.573.227.977.067.354.680.8
R110E77.979.555.879.068.254.782.7
R110p (Ours)75.975.639.678.568.361.383.3
R110k,c (Ours)56.480.261.179.567.462.682.1
R110p,E (Ours)78.282.167.781.773.468.483.8
R110p,C (Ours)71.980.463.980.171.164.283.0
", + "type": "table", + "image_path": "c739090c30b8cd33548e9102c900feae48e9493fde03b6171e4d1dfecec11039.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 116, + 138, + 496, + 172.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 116, + 172.0, + 496, + 206.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 116, + 206.0, + 496, + 240.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 269, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 506, + 283 + ], + "score": 1.0, + "content": "Third, our low-level similarity learning serves as a good regularizer for adversarial images, but", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "score": 1.0, + "content": "not for the clean images for ensemble/cascade models (reduced accuracy for the clean images for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 145, + 304 + ], + "score": 0.9, + "content": "\\mathrm { R 1 1 0 } _ { P , E }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 292, + 163, + 305 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 163, + 292, + 201, + 304 + ], + "score": 0.9, + "content": "\\mathrm { R 1 1 0 } _ { P , C }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 292, + 505, + 305 + ], + "score": 1.0, + "content": "in table 3). Compared to pure adversarial training with one-step adversarial", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "examples, the network sees more various adversarial perturbations during training as a result of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 314, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 327 + ], + "score": 1.0, + "content": "ensemble and cascade training. Those perturbations are prone to end up embeddings in the vicinity", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "score": 1.0, + "content": "of decision boundary more often than perturbations caused by one-step adversarial training. Pivot", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 334, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 350 + ], + "score": 1.0, + "content": "loss pulls the vicinity of those adversarial embeddings toward their corresponding clean embeddings.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "score": 1.0, + "content": "During this process, clean embeddings from other classes might also be moved toward the decision", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 357, + 377, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 377, + 372 + ], + "score": 1.0, + "content": "boundary which results in decreased accuracy for the clean images.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 389, + 266, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 268, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 268, + 402 + ], + "score": 1.0, + "content": "5.3 BLACK BOX ATTACK ANALYSIS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "We finally perform black box attack analysis for the cascade/ensemble networks with/without pivot", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "loss. We report black box attack accuracy with the source networks trained with the same method,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 434, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 445 + ], + "score": 1.0, + "content": "but with different initialization from the target networks. The reason for this is adversarial ex-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "amples transfer well between networks trained with the same strategy as observed in section 3.1.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 454, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 506, + 469 + ], + "score": 1.0, + "content": "We re-train 110-layer ResNet models using Kurakin’s, cascade and ensemble adversarial training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "with/without low-level similarity learning and use those networks as source networks for black-box", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "score": 1.0, + "content": "attacks. Baseline 110-layer ResNet model is also included as a source network. Target networks", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "are the same networks used in table 3. We found iter FGSM attack resulted in lower accuracy than", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 499, + 368, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 368, + 512 + ], + "score": 1.0, + "content": "step FGSM attack, thus, report iter FGSM attack only in table 4.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 504, + 561 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 362, + 529 + ], + "score": 1.0, + "content": "We first observe that iter FGSM attack from ensemble models", + "type": "text" + }, + { + "bbox": [ + 362, + 516, + 398, + 528 + ], + "score": 0.86, + "content": "( \\mathrm { R } 1 1 0 _ { E 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 515, + 402, + 529 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 402, + 516, + 448, + 528 + ], + "score": 0.81, + "content": "\\mathrm { R 1 1 0 } _ { P , E 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "is strong (re-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 529, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 541 + ], + "score": 1.0, + "content": "sults in lower accuracy) compared to that from any other trained networks. 2 Since ensemble models", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 540, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 506, + 551 + ], + "score": 1.0, + "content": "learn various perturbation during training, adversarial noises crafted from those networks might be", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 551, + 467, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 467, + 563 + ], + "score": 1.0, + "content": "more general for other networks making them transfer easily between defended networks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "Second, cascade adversarial training breaks chicken and egg problem. (In section 3.1, we found that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 579, + 504, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 504, + 590 + ], + "score": 1.0, + "content": "it is efficient to use a defended network as a source network to attack another defended network.)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 590, + 504, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 504, + 601 + ], + "score": 1.0, + "content": "Even though the transferability between defended networks is reduced for deeper networks, cascade", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 600, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 142, + 613 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 142, + 600, + 188, + 612 + ], + "score": 0.88, + "content": "( \\mathrm { R } 1 1 0 _ { K , C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 600, + 504, + 613 + ], + "score": 1.0, + "content": "shows worst case performance against the attack not from a defended network,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 250, + 624 + ], + "score": 1.0, + "content": "but from a purely trained network", + "type": "text" + }, + { + "bbox": [ + 251, + 612, + 283, + 623 + ], + "score": 0.84, + "content": "\\mathbf { ( R 1 1 0 _ { 2 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 610, + 506, + 624 + ], + "score": 1.0, + "content": ". Possible solution to further improve the worst case", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "robustness would be to use more than one network as source networks (including pure/defended", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 414, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 414, + 647 + ], + "score": 1.0, + "content": "networks) for iter FGSM images generation for cascade adversarial training.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 650, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 460, + 664 + ], + "score": 1.0, + "content": "Third, ensemble/cascade networks together with our low-level similarity learning", + "type": "text" + }, + { + "bbox": [ + 460, + 650, + 501, + 662 + ], + "score": 0.86, + "content": "( \\mathrm { R } 1 1 0 _ { P , E }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 648, + 506, + 664 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 660, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 148, + 673 + ], + "score": 0.88, + "content": "\\mathrm { R 1 1 0 } _ { P , C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 660, + 506, + 674 + ], + "score": 1.0, + "content": "show better worst case accuracy under black box attack scenario. This shows that enhanc-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "ing robustness against iterative white box attack also improves robustness against iterative black box", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 682, + 136, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 136, + 695 + ], + "score": 1.0, + "content": "attack.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 117, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 117, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "2We also observed this when we switch the source and the target networks. Additional details can be found", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 720, + 164, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 164, + 733 + ], + "score": 1.0, + "content": "in Appendix E.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 116, + 138, + 496, + 240 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 125 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 233, + 92 + ], + "score": 1.0, + "content": "Table 4: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 234, + 81, + 249, + 91 + ], + "score": 0.83, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 79, + 474, + 92 + ], + "score": 1.0, + "content": "for 110-layer ResNet models under black box attacks", + "type": "text" + }, + { + "bbox": [ + 475, + 81, + 501, + 91 + ], + "score": 0.76, + "content": "\\left( \\epsilon = 1 6 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 79, + 505, + 92 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 91, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 107, + 91, + 263, + 103 + ], + "score": 1.0, + "content": "{Target: same networks in table 3 and", + "type": "text" + }, + { + "bbox": [ + 263, + 91, + 294, + 102 + ], + "score": 0.88, + "content": "\\mathrm { R } 1 1 0 _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 91, + 505, + 103 + ], + "score": 1.0, + "content": ": Kurakin’s, Source: re-trained baseline, Kurakin’s,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 114 + ], + "score": 1.0, + "content": "cascade and ensemble networks with/without pivot loss. Source networks use the different initial-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 113, + 492, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 492, + 125 + ], + "score": 1.0, + "content": "ization from the target networks. Additional details of the models can be found in Appendix B.}", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 116, + 138, + 496, + 240 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 138, + 496, + 240 + ], + "spans": [ + { + "bbox": [ + 116, + 138, + 496, + 240 + ], + "score": 0.982, + "html": "
TargetSource: iter_FGSM
R1102R110K2R110E2R110p2R110K,C2R110p,E2R110p,C2
R110K70.573.227.977.067.354.680.8
R110E77.979.555.879.068.254.782.7
R110p (Ours)75.975.639.678.568.361.383.3
R110k,c (Ours)56.480.261.179.567.462.682.1
R110p,E (Ours)78.282.167.781.773.468.483.8
R110p,C (Ours)71.980.463.980.171.164.283.0
", + "type": "table", + "image_path": "c739090c30b8cd33548e9102c900feae48e9493fde03b6171e4d1dfecec11039.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 116, + 138, + 496, + 172.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 116, + 172.0, + 496, + 206.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 116, + 206.0, + 496, + 240.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 269, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 506, + 283 + ], + "score": 1.0, + "content": "Third, our low-level similarity learning serves as a good regularizer for adversarial images, but", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "score": 1.0, + "content": "not for the clean images for ensemble/cascade models (reduced accuracy for the clean images for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 145, + 304 + ], + "score": 0.9, + "content": "\\mathrm { R 1 1 0 } _ { P , E }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 292, + 163, + 305 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 163, + 292, + 201, + 304 + ], + "score": 0.9, + "content": "\\mathrm { R 1 1 0 } _ { P , C }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 292, + 505, + 305 + ], + "score": 1.0, + "content": "in table 3). Compared to pure adversarial training with one-step adversarial", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "examples, the network sees more various adversarial perturbations during training as a result of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 314, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 327 + ], + "score": 1.0, + "content": "ensemble and cascade training. Those perturbations are prone to end up embeddings in the vicinity", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "score": 1.0, + "content": "of decision boundary more often than perturbations caused by one-step adversarial training. Pivot", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 334, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 350 + ], + "score": 1.0, + "content": "loss pulls the vicinity of those adversarial embeddings toward their corresponding clean embeddings.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "score": 1.0, + "content": "During this process, clean embeddings from other classes might also be moved toward the decision", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 357, + 377, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 377, + 372 + ], + "score": 1.0, + "content": "boundary which results in decreased accuracy for the clean images.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 269, + 506, + 372 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 389, + 266, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 268, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 268, + 402 + ], + "score": 1.0, + "content": "5.3 BLACK BOX ATTACK ANALYSIS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "We finally perform black box attack analysis for the cascade/ensemble networks with/without pivot", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "loss. We report black box attack accuracy with the source networks trained with the same method,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 434, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 445 + ], + "score": 1.0, + "content": "but with different initialization from the target networks. The reason for this is adversarial ex-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "amples transfer well between networks trained with the same strategy as observed in section 3.1.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 454, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 506, + 469 + ], + "score": 1.0, + "content": "We re-train 110-layer ResNet models using Kurakin’s, cascade and ensemble adversarial training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "with/without low-level similarity learning and use those networks as source networks for black-box", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "score": 1.0, + "content": "attacks. Baseline 110-layer ResNet model is also included as a source network. Target networks", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "are the same networks used in table 3. We found iter FGSM attack resulted in lower accuracy than", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 499, + 368, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 368, + 512 + ], + "score": 1.0, + "content": "step FGSM attack, thus, report iter FGSM attack only in table 4.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 411, + 506, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 504, + 561 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 362, + 529 + ], + "score": 1.0, + "content": "We first observe that iter FGSM attack from ensemble models", + "type": "text" + }, + { + "bbox": [ + 362, + 516, + 398, + 528 + ], + "score": 0.86, + "content": "( \\mathrm { R } 1 1 0 _ { E 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 515, + 402, + 529 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 402, + 516, + 448, + 528 + ], + "score": 0.81, + "content": "\\mathrm { R 1 1 0 } _ { P , E 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 515, + 505, + 529 + ], + "score": 1.0, + "content": "is strong (re-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 529, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 541 + ], + "score": 1.0, + "content": "sults in lower accuracy) compared to that from any other trained networks. 2 Since ensemble models", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 540, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 506, + 551 + ], + "score": 1.0, + "content": "learn various perturbation during training, adversarial noises crafted from those networks might be", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 551, + 467, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 467, + 563 + ], + "score": 1.0, + "content": "more general for other networks making them transfer easily between defended networks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 515, + 506, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "Second, cascade adversarial training breaks chicken and egg problem. (In section 3.1, we found that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 579, + 504, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 504, + 590 + ], + "score": 1.0, + "content": "it is efficient to use a defended network as a source network to attack another defended network.)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 590, + 504, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 504, + 601 + ], + "score": 1.0, + "content": "Even though the transferability between defended networks is reduced for deeper networks, cascade", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 600, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 142, + 613 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 142, + 600, + 188, + 612 + ], + "score": 0.88, + "content": "( \\mathrm { R } 1 1 0 _ { K , C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 600, + 504, + 613 + ], + "score": 1.0, + "content": "shows worst case performance against the attack not from a defended network,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 250, + 624 + ], + "score": 1.0, + "content": "but from a purely trained network", + "type": "text" + }, + { + "bbox": [ + 251, + 612, + 283, + 623 + ], + "score": 0.84, + "content": "\\mathbf { ( R 1 1 0 _ { 2 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 610, + 506, + 624 + ], + "score": 1.0, + "content": ". Possible solution to further improve the worst case", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "robustness would be to use more than one network as source networks (including pure/defended", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 414, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 414, + 647 + ], + "score": 1.0, + "content": "networks) for iter FGSM images generation for cascade adversarial training.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 567, + 506, + 647 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 650, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 460, + 664 + ], + "score": 1.0, + "content": "Third, ensemble/cascade networks together with our low-level similarity learning", + "type": "text" + }, + { + "bbox": [ + 460, + 650, + 501, + 662 + ], + "score": 0.86, + "content": "( \\mathrm { R } 1 1 0 _ { P , E }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 648, + 506, + 664 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 660, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 661, + 148, + 673 + ], + "score": 0.88, + "content": "\\mathrm { R 1 1 0 } _ { P , C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 660, + 506, + 674 + ], + "score": 1.0, + "content": "show better worst case accuracy under black box attack scenario. This shows that enhanc-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "ing robustness against iterative white box attack also improves robustness against iterative black box", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 682, + 136, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 136, + 695 + ], + "score": 1.0, + "content": "attack.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 648, + 506, + 695 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 195, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 197, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 197, + 97 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 194 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "We performed through transfer analysis and showed iter FGSM images transfer easily between net-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "score": 1.0, + "content": "works trained with the same strategy. We exploited this and proposed cascade adversarial training,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 504, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 504, + 141 + ], + "score": 1.0, + "content": "a method to train a network with iter FGSM adversarial images crafted from already defended net-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 504, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 504, + 151 + ], + "score": 1.0, + "content": "works. We also proposed adversarial training regularized with a unified embedding for classification", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 164 + ], + "score": 1.0, + "content": "and low- level similarity learning by penalizing distance between the clean and their corresponding", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 462, + 174 + ], + "score": 1.0, + "content": "adversarial embeddings. Combining those two techniques (low level similarity learning", + "type": "text" + }, + { + "bbox": [ + 462, + 163, + 471, + 172 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "cascade", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 184 + ], + "score": 1.0, + "content": "adversarial training) with deeper networks further improved robustness against iterative attacks for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 261, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 261, + 194 + ], + "score": 1.0, + "content": "both white-box and black-box attacks.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "However, there is still a gap between accuracy for the clean images and that for the adversarial", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 209, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 225 + ], + "score": 1.0, + "content": "images. Improving robustness against both one-step and iterative attacks still remains challenging", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "since it is shown to be difficult to train networks robust for both one-step and iterative attacks si-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 233, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 245 + ], + "score": 1.0, + "content": "multaneously. Future research is necessary to further improve the robustness against iterative attack", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "without sacrificing the accuracy for step attacks or clean images under both white-box attack and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 255, + 217, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 217, + 267 + ], + "score": 1.0, + "content": "black-box attack scenarios.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 281, + 200, + 291 + ], + "lines": [ + { + "bbox": [ + 107, + 281, + 200, + 292 + ], + "spans": [ + { + "bbox": [ + 107, + 281, + 200, + 292 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 505, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "We thank Alexey Kurakin of Google Brain and Li Chen of Intel for comments that greatly improved", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "the manuscript. The research reported here was supported in part by the Defense Advanced Research", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "Projects Agency (DARPA) under contract number HR0011-17-2-0045. The views and conclusions", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 333, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 333, + 505, + 348 + ], + "score": 1.0, + "content": "contained herein are those of the authors and should not be interpreted as necessarily representing", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 345, + 416, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 416, + 357 + ], + "score": 1.0, + "content": "the official policies or endorsements, either expressed or implied, of DARPA.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 373, + 175, + 384 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 176, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 176, + 386 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 504, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In IEEE", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 402, + 290, + 415 + ], + "spans": [ + { + "bbox": [ + 116, + 402, + 290, + 415 + ], + "score": 1.0, + "content": "Symposium on Security and Privacy, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 504, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "Ian J. Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "examples. In Proceedings of the International Conference on Learning Representations (ICLR),", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 442, + 144, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 144, + 457 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 463, + 504, + 508 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "nition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2016,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 485, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 506, + 497 + ], + "score": 1.0, + "content": "Las Vegas, NV, USA, June 27-30, 2016, pp. 770–778, 2016. doi: 10.1109/CVPR.2016.90. URL", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 497, + 349, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 497, + 349, + 509 + ], + "score": 1.0, + "content": "http://dx.doi.org/10.1109/CVPR.2016.90.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 502, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 504, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 504, + 528 + ], + "score": 1.0, + "content": "Ruitong Huang, Bing Xu, Dale Schuurmans, and Csaba Szepesvari. Learning with a strong adver-´", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 526, + 476, + 540 + ], + "spans": [ + { + "bbox": [ + 115, + 526, + 476, + 540 + ], + "score": 1.0, + "content": "sary. CoRR, abs/1511.03034, 2015. URL http://arxiv.org/abs/1511.03034.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 493, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 493, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 493, + 560 + ], + "score": 1.0, + "content": "Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "Alexey Kurakin, Ian J. Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 577, + 473, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 473, + 589 + ], + "score": 1.0, + "content": "Proceedings of the International Conference on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 502, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 504, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 504, + 610 + ], + "score": 1.0, + "content": "Yann LeCun and Corinna Cortes. MNIST handwritten digit database. 2010. URL http://yann.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 607, + 247, + 619 + ], + "spans": [ + { + "bbox": [ + 117, + 607, + 247, + 619 + ], + "score": 1.0, + "content": "lecun.com/exdb/mnist/.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 105, + 626, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "O. M. Parkhi, A. Vedaldi, and A. Zisserman. Deep face recognition. In Proceedings of the British", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 637, + 292, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 292, + 650 + ], + "score": 1.0, + "content": "Machine Vision Conference (BMVC), 2015.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 656, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "score": 1.0, + "content": "Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "recognition and clustering. In The IEEE Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 680, + 199, + 691 + ], + "spans": [ + { + "bbox": [ + 117, + 680, + 199, + 691 + ], + "score": 1.0, + "content": "(CVPR), June 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick McDaniel. Ensem- `", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "ble adversarial training: Attacks and defenses. CoRR, abs/1705.07204, 2017. URL http:", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 721, + 277, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 277, + 732 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1705.07204.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 195, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 197, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 197, + 97 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 194 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "We performed through transfer analysis and showed iter FGSM images transfer easily between net-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "score": 1.0, + "content": "works trained with the same strategy. We exploited this and proposed cascade adversarial training,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 504, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 504, + 141 + ], + "score": 1.0, + "content": "a method to train a network with iter FGSM adversarial images crafted from already defended net-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 504, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 504, + 151 + ], + "score": 1.0, + "content": "works. We also proposed adversarial training regularized with a unified embedding for classification", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 164 + ], + "score": 1.0, + "content": "and low- level similarity learning by penalizing distance between the clean and their corresponding", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 462, + 174 + ], + "score": 1.0, + "content": "adversarial embeddings. Combining those two techniques (low level similarity learning", + "type": "text" + }, + { + "bbox": [ + 462, + 163, + 471, + 172 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "cascade", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 184 + ], + "score": 1.0, + "content": "adversarial training) with deeper networks further improved robustness against iterative attacks for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 261, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 261, + 194 + ], + "score": 1.0, + "content": "both white-box and black-box attacks.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 105, + 505, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "However, there is still a gap between accuracy for the clean images and that for the adversarial", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 209, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 225 + ], + "score": 1.0, + "content": "images. Improving robustness against both one-step and iterative attacks still remains challenging", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "since it is shown to be difficult to train networks robust for both one-step and iterative attacks si-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 233, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 245 + ], + "score": 1.0, + "content": "multaneously. Future research is necessary to further improve the robustness against iterative attack", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "without sacrificing the accuracy for step attacks or clean images under both white-box attack and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 255, + 217, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 217, + 267 + ], + "score": 1.0, + "content": "black-box attack scenarios.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 199, + 506, + 267 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 281, + 200, + 291 + ], + "lines": [ + { + "bbox": [ + 107, + 281, + 200, + 292 + ], + "spans": [ + { + "bbox": [ + 107, + 281, + 200, + 292 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 300, + 505, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "We thank Alexey Kurakin of Google Brain and Li Chen of Intel for comments that greatly improved", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "the manuscript. The research reported here was supported in part by the Defense Advanced Research", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "Projects Agency (DARPA) under contract number HR0011-17-2-0045. The views and conclusions", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 333, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 333, + 505, + 348 + ], + "score": 1.0, + "content": "contained herein are those of the authors and should not be interpreted as necessarily representing", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 345, + 416, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 416, + 357 + ], + "score": 1.0, + "content": "the official policies or endorsements, either expressed or implied, of DARPA.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 301, + 505, + 357 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 373, + 175, + 384 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 176, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 176, + 386 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 504, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In IEEE", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 402, + 290, + 415 + ], + "spans": [ + { + "bbox": [ + 116, + 402, + 290, + 415 + ], + "score": 1.0, + "content": "Symposium on Security and Privacy, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 391, + 506, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 504, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "Ian J. Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "examples. In Proceedings of the International Conference on Learning Representations (ICLR),", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 442, + 144, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 144, + 457 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 421, + 506, + 457 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 463, + 504, + 508 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "nition. In 2016 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2016,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 485, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 506, + 497 + ], + "score": 1.0, + "content": "Las Vegas, NV, USA, June 27-30, 2016, pp. 770–778, 2016. doi: 10.1109/CVPR.2016.90. URL", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 497, + 349, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 497, + 349, + 509 + ], + "score": 1.0, + "content": "http://dx.doi.org/10.1109/CVPR.2016.90.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 462, + 506, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 502, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 504, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 504, + 528 + ], + "score": 1.0, + "content": "Ruitong Huang, Bing Xu, Dale Schuurmans, and Csaba Szepesvari. Learning with a strong adver-´", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 526, + 476, + 540 + ], + "spans": [ + { + "bbox": [ + 115, + 526, + 476, + 540 + ], + "score": 1.0, + "content": "sary. CoRR, abs/1511.03034, 2015. URL http://arxiv.org/abs/1511.03034.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 515, + 504, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 493, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 493, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 493, + 560 + ], + "score": 1.0, + "content": "Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 546, + 493, + 560 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "Alexey Kurakin, Ian J. Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 577, + 473, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 473, + 589 + ], + "score": 1.0, + "content": "Proceedings of the International Conference on Learning Representations (ICLR), 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 565, + 505, + 589 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 502, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 504, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 504, + 610 + ], + "score": 1.0, + "content": "Yann LeCun and Corinna Cortes. MNIST handwritten digit database. 2010. URL http://yann.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 607, + 247, + 619 + ], + "spans": [ + { + "bbox": [ + 117, + 607, + 247, + 619 + ], + "score": 1.0, + "content": "lecun.com/exdb/mnist/.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 594, + 504, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 626, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "O. M. Parkhi, A. Vedaldi, and A. Zisserman. Deep face recognition. In Proceedings of the British", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 637, + 292, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 292, + 650 + ], + "score": 1.0, + "content": "Machine Vision Conference (BMVC), 2015.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 627, + 505, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 656, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 670 + ], + "score": 1.0, + "content": "Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "recognition and clustering. In The IEEE Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 680, + 199, + 691 + ], + "spans": [ + { + "bbox": [ + 117, + 680, + 199, + 691 + ], + "score": 1.0, + "content": "(CVPR), June 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 656, + 505, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Dan Boneh, and Patrick McDaniel. Ensem- `", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "ble adversarial training: Attacks and defenses. CoRR, abs/1705.07204, 2017. URL http:", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 721, + 277, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 277, + 732 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1705.07204.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 699, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Yandong Wen, Kaipeng Zhang, Zhifeng Li, and Yu Qiao. A discriminative feature learning ap-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "proach for deep face recognition. In Computer Vision - ECCV 2016 - 14th European Con-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "ference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part VII, pp. 499–", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 114, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 114, + 504, + 128 + ], + "score": 1.0, + "content": "515, 2016. doi: 10.1007/978-3-319-46478-7 31. URL http://dx.doi.org/10.1007/", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 126, + 243, + 138 + ], + "spans": [ + { + "bbox": [ + 116, + 126, + 243, + 138 + ], + "score": 1.0, + "content": "978-3-319-46478-7_31.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Yandong Wen, Kaipeng Zhang, Zhifeng Li, and Yu Qiao. A discriminative feature learning ap-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "proach for deep face recognition. In Computer Vision - ECCV 2016 - 14th European Con-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "ference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part VII, pp. 499–", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 114, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 114, + 504, + 128 + ], + "score": 1.0, + "content": "515, 2016. doi: 10.1007/978-3-319-46478-7 31. URL http://dx.doi.org/10.1007/", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 126, + 243, + 138 + ], + "spans": [ + { + "bbox": [ + 116, + 126, + 243, + 138 + ], + "score": 1.0, + "content": "978-3-319-46478-7_31.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 81, + 505, + 138 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 247, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 247, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 247, + 95 + ], + "score": 1.0, + "content": "A EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 504, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "We scale down the image values to [0,1] and don’t perform any data augmentation for MNIST. For", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "score": 1.0, + "content": "CIFAR10, we scale down the image values to [0,1] and subtract per-pixel mean values. We perform", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 127, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 133, + 139 + ], + "score": 0.78, + "content": "2 4 \\times 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 127, + 263, + 142 + ], + "score": 1.0, + "content": "random crop and random flip on", + "type": "text" + }, + { + "bbox": [ + 263, + 128, + 290, + 139 + ], + "score": 0.78, + "content": "3 2 \\mathrm { x } 3 2 ", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 127, + 506, + 142 + ], + "score": 1.0, + "content": "original images. We generate adversarial images with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 278, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 278, + 151 + ], + "score": 1.0, + "content": "“step ll” after these steps otherwise noted.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 211 + ], + "lines": [ + { + "bbox": [ + 107, + 156, + 504, + 168 + ], + "spans": [ + { + "bbox": [ + 107, + 156, + 504, + 168 + ], + "score": 1.0, + "content": "We use stochastic gradient descent (SGD) optimizer with momentum of 0.9, weight decay of 0.0001", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 166, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 384, + 179 + ], + "score": 1.0, + "content": "and mini batch size of 128. For adversarial training, we generate", + "type": "text" + }, + { + "bbox": [ + 385, + 167, + 415, + 177 + ], + "score": 0.9, + "content": "k = 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 166, + 505, + 179 + ], + "score": 1.0, + "content": "adversarial examples", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 504, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 492, + 190 + ], + "score": 1.0, + "content": "among 128 images in one mini-batch. We start with a learning rate of 0.1, divide it by 10 at", + "type": "text" + }, + { + "bbox": [ + 492, + 178, + 504, + 189 + ], + "score": 0.43, + "content": "4 \\mathrm { k }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 394, + 201 + ], + "score": 1.0, + "content": "and 6k iterations, and terminate training at 8k iterations for MNIST, and", + "type": "text" + }, + { + "bbox": [ + 395, + 189, + 411, + 199 + ], + "score": 0.53, + "content": "4 8 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 189, + 428, + 201 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 429, + 189, + 446, + 199 + ], + "score": 0.51, + "content": "7 2 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "iterations, and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 312, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 312, + 211 + ], + "score": 1.0, + "content": "terminate training at 94k iterations for CIFAR10. 3", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "score": 1.0, + "content": "We also found that initialization affects the training results slightly as in (Kurakin et al., 2017), thus,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "we pre-train the networks 2 and 10 epochs for MNIST and CIFAR10, and use these as initial starting", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 287, + 250 + ], + "score": 1.0, + "content": "points for different configurations. We use", + "type": "text" + }, + { + "bbox": [ + 288, + 239, + 362, + 250 + ], + "score": 0.89, + "content": "m a x \\_ e = 0 . 3 ^ { * } 2 5 5", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 239, + 506, + 250 + ], + "score": 1.0, + "content": "and 16 for MNIST and CIFAR10", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 159, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 159, + 263 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 277, + 246, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 248, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 248, + 292 + ], + "score": 1.0, + "content": "B MODEL DESCRIPTIONS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 316 + ], + "score": 1.0, + "content": "We summarize the model names used in this paper in table 5. For ensemble adversarial training,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "pre-trained networks as in table 7 together with the network being trained are used to generate one-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "step adversarial examples during training. For cascade adversarial training, pre-trained defended", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "networks as in table 6 are used to generate iter FGSM images, and the network being trained is used", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 339, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 339, + 361 + ], + "score": 1.0, + "content": "to generate one-step adversarial examples during training.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 117, + 698, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 698, + 506, + 714 + ], + "score": 1.0, + "content": "3We found that the adversarial training requires longer training time than the standard training. Authors in", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 710, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 724 + ], + "score": 1.0, + "content": "the original paper (He et al., 2016) changed the learning rate at 32k and 48k iterations and terminated training", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 169, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 169, + 732 + ], + "score": 1.0, + "content": "at 64k iterations.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 247, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 247, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 247, + 95 + ], + "score": 1.0, + "content": "A EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 504, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "We scale down the image values to [0,1] and don’t perform any data augmentation for MNIST. For", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "score": 1.0, + "content": "CIFAR10, we scale down the image values to [0,1] and subtract per-pixel mean values. We perform", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 127, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 133, + 139 + ], + "score": 0.78, + "content": "2 4 \\times 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 127, + 263, + 142 + ], + "score": 1.0, + "content": "random crop and random flip on", + "type": "text" + }, + { + "bbox": [ + 263, + 128, + 290, + 139 + ], + "score": 0.78, + "content": "3 2 \\mathrm { x } 3 2 ", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 127, + 506, + 142 + ], + "score": 1.0, + "content": "original images. We generate adversarial images with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 278, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 278, + 151 + ], + "score": 1.0, + "content": "“step ll” after these steps otherwise noted.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 106, + 506, + 151 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 211 + ], + "lines": [ + { + "bbox": [ + 107, + 156, + 504, + 168 + ], + "spans": [ + { + "bbox": [ + 107, + 156, + 504, + 168 + ], + "score": 1.0, + "content": "We use stochastic gradient descent (SGD) optimizer with momentum of 0.9, weight decay of 0.0001", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 166, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 384, + 179 + ], + "score": 1.0, + "content": "and mini batch size of 128. For adversarial training, we generate", + "type": "text" + }, + { + "bbox": [ + 385, + 167, + 415, + 177 + ], + "score": 0.9, + "content": "k = 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 166, + 505, + 179 + ], + "score": 1.0, + "content": "adversarial examples", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 504, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 492, + 190 + ], + "score": 1.0, + "content": "among 128 images in one mini-batch. We start with a learning rate of 0.1, divide it by 10 at", + "type": "text" + }, + { + "bbox": [ + 492, + 178, + 504, + 189 + ], + "score": 0.43, + "content": "4 \\mathrm { k }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 394, + 201 + ], + "score": 1.0, + "content": "and 6k iterations, and terminate training at 8k iterations for MNIST, and", + "type": "text" + }, + { + "bbox": [ + 395, + 189, + 411, + 199 + ], + "score": 0.53, + "content": "4 8 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 189, + 428, + 201 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 429, + 189, + 446, + 199 + ], + "score": 0.51, + "content": "7 2 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "iterations, and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 312, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 312, + 211 + ], + "score": 1.0, + "content": "terminate training at 94k iterations for CIFAR10. 3", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 156, + 505, + 211 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "score": 1.0, + "content": "We also found that initialization affects the training results slightly as in (Kurakin et al., 2017), thus,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "we pre-train the networks 2 and 10 epochs for MNIST and CIFAR10, and use these as initial starting", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 287, + 250 + ], + "score": 1.0, + "content": "points for different configurations. We use", + "type": "text" + }, + { + "bbox": [ + 288, + 239, + 362, + 250 + ], + "score": 0.89, + "content": "m a x \\_ e = 0 . 3 ^ { * } 2 5 5", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 239, + 506, + 250 + ], + "score": 1.0, + "content": "and 16 for MNIST and CIFAR10", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 159, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 159, + 263 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 216, + 506, + 263 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 277, + 246, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 276, + 248, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 248, + 292 + ], + "score": 1.0, + "content": "B MODEL DESCRIPTIONS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 316 + ], + "score": 1.0, + "content": "We summarize the model names used in this paper in table 5. For ensemble adversarial training,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "pre-trained networks as in table 7 together with the network being trained are used to generate one-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "step adversarial examples during training. For cascade adversarial training, pre-trained defended", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "networks as in table 6 are used to generate iter FGSM images, and the network being trained is used", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 339, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 339, + 361 + ], + "score": 1.0, + "content": "to generate one-step adversarial examples during training.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 300, + 505, + 361 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 128, + 103, + 483, + 583 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 249, + 81, + 362, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 248, + 79, + 362, + 93 + ], + "spans": [ + { + "bbox": [ + 248, + 79, + 362, + 93 + ], + "score": 1.0, + "content": "Table 5: Model descriptions", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 128, + 103, + 483, + 583 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 103, + 483, + 583 + ], + "spans": [ + { + "bbox": [ + 128, + 103, + 483, + 583 + ], + "score": 0.98, + "html": "
Initialization
DatasetResNetGroupTrainingModel
MNIST20-layerAstandard training Kurakin'sR20M R20MK
Bidirection lossR20MB
20-layerPivot lossR20Mp
standard trainingR20
Kurakin'sR20K
Ensemble trainingR20E
BBidirection loss Pivot lossR20B R20p
Kurakin's & Cascade trainingR20K,C
Pivot loss & Ensemble trainingR20p,E
Pivot loss & Cascade trainingR20p,C
standard trainingR202
CIFAR10 56-layerCKurakin'sR20K2
DPivot loss standard trainingR20p2 R203
E standard trainingR204
FKurakin'sR56K R56p
Pivot loss
GKurakin'sR56K2
110-layerH standard trainingR110
Kurakin'sR110K
Pivot loss Ensemble trainingR110p R110E
Kurakin's & Cascade training
R110K,C
Pivot loss & Ensemble trainingR110p,E
Pivot loss & Cascade trainingR110p,C
Istandard training Kurakin'sR1102
R110k2
Ensemble trainingR110E2
Pivot lossR110p2
Kurakin's & Cascade training Pivot loss & Ensemble trainingR110k,C2 R110p,E2
JPivot loss & Cascade trainingR110p,C2
standard trainingR1103
Kstandard trainingR1104
", + "type": "table", + "image_path": "6563234a98d2b1b419bf55c8773833ffa6f401037be1b161549906d5475fba30.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 128, + 103, + 483, + 263.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 263.0, + 483, + 423.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 128, + 423.0, + 483, + 583.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 230, + 588, + 381, + 600 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 229, + 587, + 381, + 601 + ], + "spans": [ + { + "bbox": [ + 229, + 587, + 381, + 601 + ], + "score": 1.0, + "content": "Table 6: Ensemble model description", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 187, + 609, + 424, + 650 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 187, + 609, + 424, + 650 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 187, + 609, + 424, + 650 + ], + "spans": [ + { + "bbox": [ + 187, + 609, + 424, + 650 + ], + "score": 0.748, + "html": "
Ensemble modelsPre-trained models
R20E,R20p,E,R110E,R110P,E R110E2,R110P,E2R203,R110g R204,R1104
", + "type": "table", + "image_path": "61ea47e7a72ef68e291fac78da5b31bedcb666f76f13ac434011d7fd2ae6f1fe.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 609, + 424, + 629.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 187, + 629.5, + 424, + 650.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 234, + 657, + 378, + 669 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 232, + 655, + 378, + 670 + ], + "spans": [ + { + "bbox": [ + 232, + 655, + 378, + 670 + ], + "score": 1.0, + "content": "Table 7: Cascade model description", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.25 + }, + { + "type": "table", + "bbox": [ + 211, + 677, + 399, + 730 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 211, + 677, + 399, + 730 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 211, + 677, + 399, + 730 + ], + "spans": [ + { + "bbox": [ + 211, + 677, + 399, + 730 + ], + "score": 0.93, + "html": "
Cascade modelsPre-trained model
R20K,c,R20p,CR20p
R110K,c,R110p,CR110p
R110K,c2,R110P,C2R110p2
", + "type": "table", + "image_path": "4d5bc4d9e93eb2629ea11b02196b809f6a3f4f5abfad465b7319e8a39cae28f2.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 211, + 677, + 399, + 694.6666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 211, + 694.6666666666666, + 399, + 712.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 211, + 712.3333333333333, + 399, + 729.9999999999999 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 9 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 128, + 103, + 483, + 583 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 249, + 81, + 362, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 248, + 79, + 362, + 93 + ], + "spans": [ + { + "bbox": [ + 248, + 79, + 362, + 93 + ], + "score": 1.0, + "content": "Table 5: Model descriptions", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 128, + 103, + 483, + 583 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 103, + 483, + 583 + ], + "spans": [ + { + "bbox": [ + 128, + 103, + 483, + 583 + ], + "score": 0.98, + "html": "
Initialization
DatasetResNetGroupTrainingModel
MNIST20-layerAstandard training Kurakin'sR20M R20MK
Bidirection lossR20MB
20-layerPivot lossR20Mp
standard trainingR20
Kurakin'sR20K
Ensemble trainingR20E
BBidirection loss Pivot lossR20B R20p
Kurakin's & Cascade trainingR20K,C
Pivot loss & Ensemble trainingR20p,E
Pivot loss & Cascade trainingR20p,C
standard trainingR202
CIFAR10 56-layerCKurakin'sR20K2
DPivot loss standard trainingR20p2 R203
E standard trainingR204
FKurakin'sR56K R56p
Pivot loss
GKurakin'sR56K2
110-layerH standard trainingR110
Kurakin'sR110K
Pivot loss Ensemble trainingR110p R110E
Kurakin's & Cascade training
R110K,C
Pivot loss & Ensemble trainingR110p,E
Pivot loss & Cascade trainingR110p,C
Istandard training Kurakin'sR1102
R110k2
Ensemble trainingR110E2
Pivot lossR110p2
Kurakin's & Cascade training Pivot loss & Ensemble trainingR110k,C2 R110p,E2
JPivot loss & Cascade trainingR110p,C2
standard trainingR1103
Kstandard trainingR1104
", + "type": "table", + "image_path": "6563234a98d2b1b419bf55c8773833ffa6f401037be1b161549906d5475fba30.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 128, + 103, + 483, + 263.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 263.0, + 483, + 423.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 128, + 423.0, + 483, + 583.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 230, + 588, + 381, + 600 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 229, + 587, + 381, + 601 + ], + "spans": [ + { + "bbox": [ + 229, + 587, + 381, + 601 + ], + "score": 1.0, + "content": "Table 6: Ensemble model description", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 187, + 609, + 424, + 650 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 187, + 609, + 424, + 650 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 187, + 609, + 424, + 650 + ], + "spans": [ + { + "bbox": [ + 187, + 609, + 424, + 650 + ], + "score": 0.748, + "html": "
Ensemble modelsPre-trained models
R20E,R20p,E,R110E,R110P,E R110E2,R110P,E2R203,R110g R204,R1104
", + "type": "table", + "image_path": "61ea47e7a72ef68e291fac78da5b31bedcb666f76f13ac434011d7fd2ae6f1fe.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 609, + 424, + 629.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 187, + 629.5, + 424, + 650.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 234, + 657, + 378, + 669 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 232, + 655, + 378, + 670 + ], + "spans": [ + { + "bbox": [ + 232, + 655, + 378, + 670 + ], + "score": 1.0, + "content": "Table 7: Cascade model description", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.25 + }, + { + "type": "table", + "bbox": [ + 211, + 677, + 399, + 730 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 211, + 677, + 399, + 730 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 211, + 677, + 399, + 730 + ], + "spans": [ + { + "bbox": [ + 211, + 677, + 399, + 730 + ], + "score": 0.93, + "html": "
Cascade modelsPre-trained model
R20K,c,R20p,CR20p
R110K,c,R110p,CR110p
R110K,c2,R110P,C2R110p2
", + "type": "table", + "image_path": "4d5bc4d9e93eb2629ea11b02196b809f6a3f4f5abfad465b7319e8a39cae28f2.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 211, + 677, + 399, + 694.6666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 211, + 694.6666666666666, + 399, + 712.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 211, + 712.3333333333333, + 399, + 729.9999999999999 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 9 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 115, + 506, + 452 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 115, + 506, + 452 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 115, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 452 + ], + "score": 0.976, + "type": "image", + "image_path": "a63d4cd60c68a6ff53d587a7bfc58f89eb11f682c0bbc103d1fd3a001a954254.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 115, + 506, + 227.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 227.33333333333331, + 506, + 339.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 339.66666666666663, + 506, + 451.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 461, + 505, + 517 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 268, + 474 + ], + "score": 1.0, + "content": "Figure 7: Argument to the softmax vs.", + "type": "text" + }, + { + "bbox": [ + 268, + 464, + 274, + 471 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "in test time. “step ll”, “step FGSM” and ”random sign”", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 472, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 485 + ], + "score": 1.0, + "content": "methods were used to generate test-time adversarial images. Arguments to the softmax were mea-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 185, + 496 + ], + "score": 1.0, + "content": "sured by changing", + "type": "text" + }, + { + "bbox": [ + 185, + 486, + 191, + 493 + ], + "score": 0.55, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "for each test method and averaged over randomly chosen 128 images from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 107, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "CIFAR10 test-set. Blue line represents true class and the red line represents mean of the false", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 505, + 371, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 226, + 518 + ], + "score": 1.0, + "content": "classes. Shaded region shows", + "type": "text" + }, + { + "bbox": [ + 226, + 506, + 243, + 516 + ], + "score": 0.81, + "content": "\\pm \\nobreakspace 1 \\nobreakspace", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 505, + 371, + 518 + ], + "score": 1.0, + "content": "standard deviation of each line.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 529, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "We draw average value of the argument to the softmax layer for the true class and the false classes", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "to visualize how the adversarial training works as in figure 7. Standard training, as expected, shows", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 346, + 564 + ], + "score": 1.0, + "content": "dramatic drop in the values for the true class as we increase", + "type": "text" + }, + { + "bbox": [ + 346, + 554, + 352, + 561 + ], + "score": 0.64, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "in “step ll” or “step FGSM direction.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 411, + 575 + ], + "score": 1.0, + "content": "With adversarial training, we observe that the value drop is limited at small", + "type": "text" + }, + { + "bbox": [ + 411, + 564, + 417, + 573 + ], + "score": 0.48, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 561, + 505, + 575 + ], + "score": 1.0, + "content": "and our method even", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 276, + 586 + ], + "score": 1.0, + "content": "increases the value in certain range upto", + "type": "text" + }, + { + "bbox": [ + 276, + 574, + 297, + 584 + ], + "score": 0.87, + "content": "{ \\epsilon } { = } 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 574, + 506, + 586 + ], + "score": 1.0, + "content": ". Note that adversarial training is not the same as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 583, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 597 + ], + "score": 1.0, + "content": "the gradient masking.As illustrated in figure 7, it exposes gradient information, however, quickly", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "distort gradients along the sign of the gradient (“step ll” or “step FGSM) direction. We also observe", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "improved results (broader margins than baseline) for “random sign” added images even though", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "we didn’t inject random sign added images during training. Overall shape of the argument to the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "softmax layer in our case becomes smoother than Kurakin’s method, suggesting our method is good", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 640, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 505, + 651 + ], + "score": 1.0, + "content": "for pixel level regularization. Even though actual value of the embeddings for the true class in our", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "case is smaller than that in Kurakin’s, the standard deviation of our case is less than Kurakin’s,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 662, + 356, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 356, + 673 + ], + "score": 1.0, + "content": "making better margin between the true class and false classes.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 82, + 377, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 378, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 378, + 96 + ], + "score": 1.0, + "content": "C ALTERNATIVE VISUALIZATION ON EMBEDDINGS", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 115, + 506, + 452 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 115, + 506, + 452 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 115, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 452 + ], + "score": 0.976, + "type": "image", + "image_path": "a63d4cd60c68a6ff53d587a7bfc58f89eb11f682c0bbc103d1fd3a001a954254.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 115, + 506, + 227.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 227.33333333333331, + 506, + 339.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 339.66666666666663, + 506, + 451.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 461, + 505, + 517 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 268, + 474 + ], + "score": 1.0, + "content": "Figure 7: Argument to the softmax vs.", + "type": "text" + }, + { + "bbox": [ + 268, + 464, + 274, + 471 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "in test time. “step ll”, “step FGSM” and ”random sign”", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 472, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 485 + ], + "score": 1.0, + "content": "methods were used to generate test-time adversarial images. Arguments to the softmax were mea-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 185, + 496 + ], + "score": 1.0, + "content": "sured by changing", + "type": "text" + }, + { + "bbox": [ + 185, + 486, + 191, + 493 + ], + "score": 0.55, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "for each test method and averaged over randomly chosen 128 images from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 107, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "CIFAR10 test-set. Blue line represents true class and the red line represents mean of the false", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 505, + 371, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 226, + 518 + ], + "score": 1.0, + "content": "classes. Shaded region shows", + "type": "text" + }, + { + "bbox": [ + 226, + 506, + 243, + 516 + ], + "score": 0.81, + "content": "\\pm \\nobreakspace 1 \\nobreakspace", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 505, + 371, + 518 + ], + "score": 1.0, + "content": "standard deviation of each line.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 529, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "We draw average value of the argument to the softmax layer for the true class and the false classes", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "to visualize how the adversarial training works as in figure 7. Standard training, as expected, shows", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 346, + 564 + ], + "score": 1.0, + "content": "dramatic drop in the values for the true class as we increase", + "type": "text" + }, + { + "bbox": [ + 346, + 554, + 352, + 561 + ], + "score": 0.64, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "in “step ll” or “step FGSM direction.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 411, + 575 + ], + "score": 1.0, + "content": "With adversarial training, we observe that the value drop is limited at small", + "type": "text" + }, + { + "bbox": [ + 411, + 564, + 417, + 573 + ], + "score": 0.48, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 561, + 505, + 575 + ], + "score": 1.0, + "content": "and our method even", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 276, + 586 + ], + "score": 1.0, + "content": "increases the value in certain range upto", + "type": "text" + }, + { + "bbox": [ + 276, + 574, + 297, + 584 + ], + "score": 0.87, + "content": "{ \\epsilon } { = } 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 574, + 506, + 586 + ], + "score": 1.0, + "content": ". Note that adversarial training is not the same as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 583, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 597 + ], + "score": 1.0, + "content": "the gradient masking.As illustrated in figure 7, it exposes gradient information, however, quickly", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "distort gradients along the sign of the gradient (“step ll” or “step FGSM) direction. We also observe", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "improved results (broader margins than baseline) for “random sign” added images even though", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "we didn’t inject random sign added images during training. Overall shape of the argument to the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "softmax layer in our case becomes smoother than Kurakin’s method, suggesting our method is good", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 640, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 505, + 651 + ], + "score": 1.0, + "content": "for pixel level regularization. Even though actual value of the embeddings for the true class in our", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "case is smaller than that in Kurakin’s, the standard deviation of our case is less than Kurakin’s,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 662, + 356, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 356, + 673 + ], + "score": 1.0, + "content": "making better margin between the true class and false classes.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 529, + 506, + 673 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 134, + 505, + 241 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 134, + 505, + 241 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 134, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 505, + 241 + ], + "score": 0.963, + "type": "image", + "image_path": "bb0f617516f1c753274ff6e6c797bcd0df9ac1a88e8bee55ff5efc872dab5a74.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 134, + 505, + 169.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 169.66666666666666, + 505, + 205.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 205.33333333333331, + 505, + 240.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 250, + 504, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "Figure 8: Averaged Pearson’s correlation coefficient between the gradients w.r.t. two images. Corre-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 260, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 245, + 275 + ], + "score": 1.0, + "content": "lation were measured by changing", + "type": "text" + }, + { + "bbox": [ + 245, + 263, + 251, + 271 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 260, + 506, + 275 + ], + "score": 1.0, + "content": "for each adversarial image and averaged over randomly chosen", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 353, + 285 + ], + "score": 1.0, + "content": "128 images from CIFAR10 test-set. Shaded region represents", + "type": "text" + }, + { + "bbox": [ + 353, + 272, + 378, + 283 + ], + "score": 0.83, + "content": "\\pm \\ : 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "standard deviation of each line.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "We observe accuracies for the “step FGSM” adversarial images become higher than those for the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 306, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 320 + ], + "score": 1.0, + "content": "clean images (“label leaking” phenomenon) by training with “step FGSM” examples as in (Kurakin", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 316, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 104, + 316, + 506, + 333 + ], + "score": 1.0, + "content": "et al., 2017). Interestingly, we also observe “label leaking” phenomenon even without providing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "true labels for adversarial images generation. We argue that “label leaking” is a natural result of the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 338, + 189, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 189, + 354 + ], + "score": 1.0, + "content": "adversarial training.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 505, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "To understand the nature of adversarial training, we measure correlation between gradients w.r.t.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "score": 1.0, + "content": "different images (i.e. clean vs. adversarial) as a measure of error surface similarity. We measure", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 376, + 507, + 394 + ], + "spans": [ + { + "bbox": [ + 104, + 376, + 507, + 394 + ], + "score": 1.0, + "content": "correlation between gradients w.r.t. (1) clean vs. “step ll” image, (2) clean vs. “step FGSM” image,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "(3) clean vs. “random sign” added image, and (4) “step ll” image vs. “step FGSM” image for three", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 226, + 413 + ], + "score": 1.0, + "content": "trained networks (a) R20, (b)", + "type": "text" + }, + { + "bbox": [ + 226, + 401, + 253, + 412 + ], + "score": 0.88, + "content": "\\mathsf { R } 2 0 _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 401, + 285, + 413 + ], + "score": 1.0, + "content": "and (c)", + "type": "text" + }, + { + "bbox": [ + 285, + 401, + 310, + 412 + ], + "score": 0.88, + "content": "{ \\mathrm { R } } 2 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "(Ours) in table 5. Figure 8 draws average value", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 411, + 224, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 224, + 424 + ], + "score": 1.0, + "content": "of correlations for each case.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "Meaning of the correlation: In order to make strong adversarial images with “step FGSM” method,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 453 + ], + "score": 1.0, + "content": "correlation between the gradient w.r.t. the clean image and the gradient w.r.t. its corresponding", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 449, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 464 + ], + "score": 1.0, + "content": "adversarial image should remain high since the “step FGSM” method only use the gradient w.r.t.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 173, + 474 + ], + "score": 1.0, + "content": "the clean image", + "type": "text" + }, + { + "bbox": [ + 173, + 462, + 193, + 473 + ], + "score": 0.57, + "content": "( \\epsilon { = } 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 462, + 443, + 474 + ], + "score": 1.0, + "content": ". Lower correlation means perturbing the adversarial image at", + "type": "text" + }, + { + "bbox": [ + 443, + 464, + 449, + 471 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "further to the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 472, + 380, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 380, + 485 + ], + "score": 1.0, + "content": "gradient (seen from the clean image) direction is no longer efficient.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "score": 1.0, + "content": "Results of adversarial training: We observe that (1) and (2) become quickly lower than (3) as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 112, + 510 + ], + "score": 0.57, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "increases. This means that, when we move toward the steepest (gradient) direction on the error", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "surface, gradient is more quickly uncorrelated with the gradient w.r.t. the clean image than when", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 523, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 534 + ], + "score": 1.0, + "content": "we move to random direction. As a result of adversarial training, this uncorrelation is observed at a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 131, + 545 + ], + "score": 1.0, + "content": "lower", + "type": "text" + }, + { + "bbox": [ + 132, + 536, + 138, + 543 + ], + "score": 0.44, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "making one-step attack less efficient even with small perturbation. (1), (2) and (3) for our", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 545, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 342, + 556 + ], + "score": 1.0, + "content": "case are slightly lower than Kurakin’s method at the same", + "type": "text" + }, + { + "bbox": [ + 342, + 546, + 348, + 554 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 545, + 506, + 556 + ], + "score": 1.0, + "content": "which means that our method is better", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 556, + 289, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 289, + 567 + ], + "score": 1.0, + "content": "at defending one-step attacks than Kurakin’s.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "Error surface similarity between “step ll” and “step FGSM” images: We also observe (4) re-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 203, + 595 + ], + "score": 1.0, + "content": "mains high with higher", + "type": "text" + }, + { + "bbox": [ + 204, + 585, + 210, + 593 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "for all trained networks. This means that the error surface (gradient) of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "the “step ll” image and that of its corresponding “step FGSM” image resemble each other. That is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "the reason why we get the robustness against “step FGSM” method only by training with “step ll”", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 498, + 628 + ], + "score": 1.0, + "content": "method and vice versa. (4) for our case is slightly higher than Kurakin’s method at the same", + "type": "text" + }, + { + "bbox": [ + 498, + 618, + 504, + 626 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "and that means our similarity learning tends to make error surfaces of the adversarial images with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 638, + 328, + 650 + ], + "spans": [ + { + "bbox": [ + 107, + 638, + 328, + 650 + ], + "score": 1.0, + "content": "“step ll” and “step FGSM” method to be more similar.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Analysis of label leaking phenomenon: Interestingly, (2) becomes slightly negative in certain", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 135, + 678 + ], + "score": 1.0, + "content": "range", + "type": "text" + }, + { + "bbox": [ + 135, + 666, + 180, + 676 + ], + "score": 0.88, + "content": "1 < \\epsilon < 3", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 665, + 259, + 678 + ], + "score": 1.0, + "content": "for Kurakin’s, and", + "type": "text" + }, + { + "bbox": [ + 259, + 666, + 304, + 676 + ], + "score": 0.9, + "content": "1 < \\epsilon < 4", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "for Pivot (Ours) ) and this could be the possible", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 675, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 675, + 506, + 691 + ], + "score": 1.0, + "content": "reason for “label leaking” phenomenon. For example, let’s assume that we have a perturbed image", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 225, + 700 + ], + "score": 1.0, + "content": "(by “step FGSM” method) at", + "type": "text" + }, + { + "bbox": [ + 225, + 690, + 231, + 698 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "where the correlation between the gradients w.r.t. that image and the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 338, + 712 + ], + "score": 1.0, + "content": "corresponding clean image is negative. Further increase of", + "type": "text" + }, + { + "bbox": [ + 338, + 701, + 343, + 709 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "with the gradient (w.r.t. the clean image)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "direction actually decreases the loss resulting in increased accuracy (label leaking phenomenon).", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "Due to the error surface similarity between “step ll” and “step FGSM” images and this negative", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 82, + 271, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 272, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 272, + 95 + ], + "score": 1.0, + "content": "D LABEL LEAKING ANALYSIS", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 134, + 505, + 241 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 134, + 505, + 241 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 134, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 505, + 241 + ], + "score": 0.963, + "type": "image", + "image_path": "bb0f617516f1c753274ff6e6c797bcd0df9ac1a88e8bee55ff5efc872dab5a74.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 134, + 505, + 169.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 169.66666666666666, + 505, + 205.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 205.33333333333331, + 505, + 240.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 250, + 504, + 284 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "Figure 8: Averaged Pearson’s correlation coefficient between the gradients w.r.t. two images. Corre-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 260, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 245, + 275 + ], + "score": 1.0, + "content": "lation were measured by changing", + "type": "text" + }, + { + "bbox": [ + 245, + 263, + 251, + 271 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 260, + 506, + 275 + ], + "score": 1.0, + "content": "for each adversarial image and averaged over randomly chosen", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 353, + 285 + ], + "score": 1.0, + "content": "128 images from CIFAR10 test-set. Shaded region represents", + "type": "text" + }, + { + "bbox": [ + 353, + 272, + 378, + 283 + ], + "score": 0.83, + "content": "\\pm \\ : 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "standard deviation of each line.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "We observe accuracies for the “step FGSM” adversarial images become higher than those for the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 306, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 320 + ], + "score": 1.0, + "content": "clean images (“label leaking” phenomenon) by training with “step FGSM” examples as in (Kurakin", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 316, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 104, + 316, + 506, + 333 + ], + "score": 1.0, + "content": "et al., 2017). Interestingly, we also observe “label leaking” phenomenon even without providing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "true labels for adversarial images generation. We argue that “label leaking” is a natural result of the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 338, + 189, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 189, + 354 + ], + "score": 1.0, + "content": "adversarial training.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 296, + 506, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 505, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "To understand the nature of adversarial training, we measure correlation between gradients w.r.t.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 381 + ], + "score": 1.0, + "content": "different images (i.e. clean vs. adversarial) as a measure of error surface similarity. We measure", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 376, + 507, + 394 + ], + "spans": [ + { + "bbox": [ + 104, + 376, + 507, + 394 + ], + "score": 1.0, + "content": "correlation between gradients w.r.t. (1) clean vs. “step ll” image, (2) clean vs. “step FGSM” image,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "(3) clean vs. “random sign” added image, and (4) “step ll” image vs. “step FGSM” image for three", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 226, + 413 + ], + "score": 1.0, + "content": "trained networks (a) R20, (b)", + "type": "text" + }, + { + "bbox": [ + 226, + 401, + 253, + 412 + ], + "score": 0.88, + "content": "\\mathsf { R } 2 0 _ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 401, + 285, + 413 + ], + "score": 1.0, + "content": "and (c)", + "type": "text" + }, + { + "bbox": [ + 285, + 401, + 310, + 412 + ], + "score": 0.88, + "content": "{ \\mathrm { R } } 2 0 _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "(Ours) in table 5. Figure 8 draws average value", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 411, + 224, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 224, + 424 + ], + "score": 1.0, + "content": "of correlations for each case.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 356, + 507, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 429, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "Meaning of the correlation: In order to make strong adversarial images with “step FGSM” method,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 453 + ], + "score": 1.0, + "content": "correlation between the gradient w.r.t. the clean image and the gradient w.r.t. its corresponding", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 449, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 464 + ], + "score": 1.0, + "content": "adversarial image should remain high since the “step FGSM” method only use the gradient w.r.t.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 173, + 474 + ], + "score": 1.0, + "content": "the clean image", + "type": "text" + }, + { + "bbox": [ + 173, + 462, + 193, + 473 + ], + "score": 0.57, + "content": "( \\epsilon { = } 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 462, + 443, + 474 + ], + "score": 1.0, + "content": ". Lower correlation means perturbing the adversarial image at", + "type": "text" + }, + { + "bbox": [ + 443, + 464, + 449, + 471 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "further to the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 472, + 380, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 380, + 485 + ], + "score": 1.0, + "content": "gradient (seen from the clean image) direction is no longer efficient.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 428, + 505, + 485 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 502 + ], + "score": 1.0, + "content": "Results of adversarial training: We observe that (1) and (2) become quickly lower than (3) as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 112, + 510 + ], + "score": 0.57, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "increases. This means that, when we move toward the steepest (gradient) direction on the error", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "surface, gradient is more quickly uncorrelated with the gradient w.r.t. the clean image than when", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 523, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 534 + ], + "score": 1.0, + "content": "we move to random direction. As a result of adversarial training, this uncorrelation is observed at a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 131, + 545 + ], + "score": 1.0, + "content": "lower", + "type": "text" + }, + { + "bbox": [ + 132, + 536, + 138, + 543 + ], + "score": 0.44, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "making one-step attack less efficient even with small perturbation. (1), (2) and (3) for our", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 545, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 342, + 556 + ], + "score": 1.0, + "content": "case are slightly lower than Kurakin’s method at the same", + "type": "text" + }, + { + "bbox": [ + 342, + 546, + 348, + 554 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 545, + 506, + 556 + ], + "score": 1.0, + "content": "which means that our method is better", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 556, + 289, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 289, + 567 + ], + "score": 1.0, + "content": "at defending one-step attacks than Kurakin’s.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 488, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "Error surface similarity between “step ll” and “step FGSM” images: We also observe (4) re-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 203, + 595 + ], + "score": 1.0, + "content": "mains high with higher", + "type": "text" + }, + { + "bbox": [ + 204, + 585, + 210, + 593 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "for all trained networks. This means that the error surface (gradient) of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "the “step ll” image and that of its corresponding “step FGSM” image resemble each other. That is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "the reason why we get the robustness against “step FGSM” method only by training with “step ll”", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 615, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 498, + 628 + ], + "score": 1.0, + "content": "method and vice versa. (4) for our case is slightly higher than Kurakin’s method at the same", + "type": "text" + }, + { + "bbox": [ + 498, + 618, + 504, + 626 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "and that means our similarity learning tends to make error surfaces of the adversarial images with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 638, + 328, + 650 + ], + "spans": [ + { + "bbox": [ + 107, + 638, + 328, + 650 + ], + "score": 1.0, + "content": "“step ll” and “step FGSM” method to be more similar.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 571, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "Analysis of label leaking phenomenon: Interestingly, (2) becomes slightly negative in certain", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 135, + 678 + ], + "score": 1.0, + "content": "range", + "type": "text" + }, + { + "bbox": [ + 135, + 666, + 180, + 676 + ], + "score": 0.88, + "content": "1 < \\epsilon < 3", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 665, + 259, + 678 + ], + "score": 1.0, + "content": "for Kurakin’s, and", + "type": "text" + }, + { + "bbox": [ + 259, + 666, + 304, + 676 + ], + "score": 0.9, + "content": "1 < \\epsilon < 4", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "for Pivot (Ours) ) and this could be the possible", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 675, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 675, + 506, + 691 + ], + "score": 1.0, + "content": "reason for “label leaking” phenomenon. For example, let’s assume that we have a perturbed image", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 225, + 700 + ], + "score": 1.0, + "content": "(by “step FGSM” method) at", + "type": "text" + }, + { + "bbox": [ + 225, + 690, + 231, + 698 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "where the correlation between the gradients w.r.t. that image and the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 338, + 712 + ], + "score": 1.0, + "content": "corresponding clean image is negative. Further increase of", + "type": "text" + }, + { + "bbox": [ + 338, + 701, + 343, + 709 + ], + "score": 0.74, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "with the gradient (w.r.t. the clean image)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "direction actually decreases the loss resulting in increased accuracy (label leaking phenomenon).", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "Due to the error surface similarity between “step ll” and “step FGSM” images and this negative", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "correlation effect, however, label leaking phenomenon can always happen for the networks trained", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 94, + 251, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 251, + 106 + ], + "score": 1.0, + "content": "with one-step adversarial examples.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 655, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "correlation effect, however, label leaking phenomenon can always happen for the networks trained", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 94, + 251, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 251, + 106 + ], + "score": 1.0, + "content": "with one-step adversarial examples.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 106, + 120, + 354, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 355, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 355, + 136 + ], + "score": 1.0, + "content": "E ADDITIONAL BLACK BOX ATTACK RESULTS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 183, + 182, + 428, + 252 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 146, + 504, + 170 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 235, + 159 + ], + "score": 1.0, + "content": "Table 8: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 236, + 147, + 250, + 158 + ], + "score": 0.65, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "under black box attacks between the network with the same", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 157, + 191, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 160, + 171 + ], + "score": 1.0, + "content": "initialization", + "type": "text" + }, + { + "bbox": [ + 160, + 158, + 191, + 170 + ], + "score": 0.78, + "content": "\\scriptstyle \\left( \\epsilon = 1 6 \\right) \\}", + "type": "inline_equation" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "table_body", + "bbox": [ + 183, + 182, + 428, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 182, + 428, + 252 + ], + "spans": [ + { + "bbox": [ + 183, + 182, + 428, + 252 + ], + "score": 0.888, + "html": "
TargetSource: step_FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R2012.227.427.50.045.944.7
R20K65.781.581.851.50.018.2
R20p58.189.391.748.913.40.0
", + "type": "table", + "image_path": "b57587db05d54f989662ee35c8d48e2d69d44fda8d60a095327d85851b575a1a.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 183, + 182, + 428, + 205.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 183, + 205.33333333333334, + 428, + 228.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 183, + 228.66666666666669, + 428, + 252.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "Table 8 shows that black box attack between trained networks with the same initialization tends to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "be more successful than that between networks with different initialization as explained in (Kurakin", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 159, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 159, + 302 + ], + "score": 1.0, + "content": "et al., 2017).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "table", + "bbox": [ + 181, + 345, + 430, + 413 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 103, + 308, + 504, + 332 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 307, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 230, + 321 + ], + "score": 1.0, + "content": "Table 9: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 230, + 309, + 245, + 320 + ], + "score": 0.76, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 307, + 359, + 321 + ], + "score": 1.0, + "content": "under black box attacks for", + "type": "text" + }, + { + "bbox": [ + 360, + 309, + 381, + 320 + ], + "score": 0.85, + "content": "{ \\epsilon } { = } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 307, + 505, + 321 + ], + "score": 1.0, + "content": ". {Target and Source networks", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 319, + 230, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 230, + 332 + ], + "score": 1.0, + "content": "are switched from the table 1}", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "table_body", + "bbox": [ + 181, + 345, + 430, + 413 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 181, + 345, + 430, + 413 + ], + "spans": [ + { + "bbox": [ + 181, + 345, + 430, + 413 + ], + "score": 0.974, + "html": "
TargetSource: step-FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R20217.933.934.54.154.854.3
R20K265.084.684.561.225.330.4
R20p266.488.287.261.627.736.1
", + "type": "table", + "image_path": "fe92bfdf334b84af237151b801dbe6b25b9ef4b200fd5ece97ae0d14392d78bc.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 181, + 345, + 430, + 367.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 181, + 367.6666666666667, + 430, + 390.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 181, + 390.33333333333337, + 430, + 413.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 12.75 + }, + { + "type": "text", + "bbox": [ + 109, + 428, + 503, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 427, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 204, + 441 + ], + "score": 1.0, + "content": "In table 9, our method", + "type": "text" + }, + { + "bbox": [ + 204, + 428, + 238, + 439 + ], + "score": 0.89, + "content": "( \\mathsf { R } 2 0 _ { P 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 427, + 505, + 441 + ], + "score": 1.0, + "content": "is always better at one-step and iterative black box attack from", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 438, + 504, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 183, + 451 + ], + "score": 1.0, + "content": "defended networks", + "type": "text" + }, + { + "bbox": [ + 183, + 439, + 245, + 450 + ], + "score": 0.28, + "content": "( \\mathsf { R } 2 0 _ { K } , \\mathsf { R } 2 0 _ { P } )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 438, + 465, + 451 + ], + "score": 1.0, + "content": "and undefended network (R20) than Kurakin’s method", + "type": "text" + }, + { + "bbox": [ + 466, + 439, + 500, + 450 + ], + "score": 0.88, + "content": "( { \\bf R } 2 0 _ { B { \\bf 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 438, + 504, + 451 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 448, + 504, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 504, + 463 + ], + "score": 1.0, + "content": "However, it is hard to tell which method is better than the other one as explained in the main paper.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "table", + "bbox": [ + 129, + 506, + 482, + 607 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 469, + 504, + 493 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 232, + 482 + ], + "score": 1.0, + "content": "Table 10: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 233, + 470, + 249, + 480 + ], + "score": 0.75, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 468, + 447, + 482 + ], + "score": 1.0, + "content": "for cascade networks under black box attacks for", + "type": "text" + }, + { + "bbox": [ + 447, + 470, + 469, + 480 + ], + "score": 0.83, + "content": "{ \\epsilon } { = } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 468, + 505, + 482 + ], + "score": 1.0, + "content": ". {Target", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 480, + 361, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 361, + 493 + ], + "score": 1.0, + "content": "and Source: Please see the model descriptions in Appendix B.}", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "table_body", + "bbox": [ + 129, + 506, + 482, + 607 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 129, + 506, + 482, + 607 + ], + "spans": [ + { + "bbox": [ + 129, + 506, + 482, + 607 + ], + "score": 0.983, + "html": "
TargetSource: iter_FGSM
R110R110KR110ER110pR110K,CR110p,ER110p,C
R110K280.572.749.368.049.641.067.9
R110E282.759.139.559.651.540.369.6
R110p2 (Ours)80.375.954.272.254.944.372.4
R110k,C2 (Ours)62.174.761.572.346.539.067.9
R110p,E2 (Ours)81.579.050.077.356.945.575.2
R110p,c2 (Ours)72.276.460.673.851.040.972.0
", + "type": "table", + "image_path": "19b43217da7077fd6e2e2eff14dc27cd85d13f61c08c35e6d2732ef97907066a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 129, + 506, + 482, + 539.6666666666666 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 129, + 539.6666666666666, + 482, + 573.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 129, + 573.3333333333333, + 482, + 606.9999999999999 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "index": 20.75 + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 505, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "In table 10, we show black box attack accuracies with the source and the target networks switched", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "score": 1.0, + "content": "from the table 4. We also observe that networks trained with both low-level similarity learning and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 643, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 261, + 655 + ], + "score": 1.0, + "content": "cascade/ensemble adversarial training", + "type": "text" + }, + { + "bbox": [ + 261, + 643, + 306, + 655 + ], + "score": 0.87, + "content": "( \\mathrm { R } 1 1 0 _ { P , C 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 643, + 310, + 655 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 310, + 643, + 356, + 655 + ], + "score": 0.86, + "content": "\\mathbf { R } 1 1 0 _ { P , E 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 643, + 505, + 655 + ], + "score": 1.0, + "content": "show better worst-case performance", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 651, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 469, + 668 + ], + "score": 1.0, + "content": "than other networks. Overall, iter FGSM images crafted from ensemble model families", + "type": "text" + }, + { + "bbox": [ + 469, + 654, + 501, + 666 + ], + "score": 0.88, + "content": "( \\mathrm { R } 1 1 0 _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 651, + 506, + 668 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 665, + 314, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 147, + 677 + ], + "score": 0.87, + "content": "\\operatorname { R 1 1 0 } _ { P , E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 666, + 314, + 677 + ], + "score": 1.0, + "content": "remain strong on the defended networks.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 106, + 120, + 354, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 355, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 355, + 136 + ], + "score": 1.0, + "content": "E ADDITIONAL BLACK BOX ATTACK RESULTS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 183, + 182, + 428, + 252 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 146, + 504, + 170 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 235, + 159 + ], + "score": 1.0, + "content": "Table 8: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 236, + 147, + 250, + 158 + ], + "score": 0.65, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "under black box attacks between the network with the same", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 157, + 191, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 157, + 160, + 171 + ], + "score": 1.0, + "content": "initialization", + "type": "text" + }, + { + "bbox": [ + 160, + 158, + 191, + 170 + ], + "score": 0.78, + "content": "\\scriptstyle \\left( \\epsilon = 1 6 \\right) \\}", + "type": "inline_equation" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "table_body", + "bbox": [ + 183, + 182, + 428, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 182, + 428, + 252 + ], + "spans": [ + { + "bbox": [ + 183, + 182, + 428, + 252 + ], + "score": 0.888, + "html": "
TargetSource: step_FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R2012.227.427.50.045.944.7
R20K65.781.581.851.50.018.2
R20p58.189.391.748.913.40.0
", + "type": "table", + "image_path": "b57587db05d54f989662ee35c8d48e2d69d44fda8d60a095327d85851b575a1a.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 183, + 182, + 428, + 205.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 183, + 205.33333333333334, + 428, + 228.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 183, + 228.66666666666669, + 428, + 252.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 504, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "Table 8 shows that black box attack between trained networks with the same initialization tends to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "be more successful than that between networks with different initialization as explained in (Kurakin", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 289, + 159, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 159, + 302 + ], + "score": 1.0, + "content": "et al., 2017).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 267, + 505, + 302 + ] + }, + { + "type": "table", + "bbox": [ + 181, + 345, + 430, + 413 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 103, + 308, + 504, + 332 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 307, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 230, + 321 + ], + "score": 1.0, + "content": "Table 9: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 230, + 309, + 245, + 320 + ], + "score": 0.76, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 307, + 359, + 321 + ], + "score": 1.0, + "content": "under black box attacks for", + "type": "text" + }, + { + "bbox": [ + 360, + 309, + 381, + 320 + ], + "score": 0.85, + "content": "{ \\epsilon } { = } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 307, + 505, + 321 + ], + "score": 1.0, + "content": ". {Target and Source networks", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 319, + 230, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 230, + 332 + ], + "score": 1.0, + "content": "are switched from the table 1}", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "table_body", + "bbox": [ + 181, + 345, + 430, + 413 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 181, + 345, + 430, + 413 + ], + "spans": [ + { + "bbox": [ + 181, + 345, + 430, + 413 + ], + "score": 0.974, + "html": "
TargetSource: step-FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R20217.933.934.54.154.854.3
R20K265.084.684.561.225.330.4
R20p266.488.287.261.627.736.1
", + "type": "table", + "image_path": "fe92bfdf334b84af237151b801dbe6b25b9ef4b200fd5ece97ae0d14392d78bc.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 181, + 345, + 430, + 367.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 181, + 367.6666666666667, + 430, + 390.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 181, + 390.33333333333337, + 430, + 413.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 12.75 + }, + { + "type": "text", + "bbox": [ + 109, + 428, + 503, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 427, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 204, + 441 + ], + "score": 1.0, + "content": "In table 9, our method", + "type": "text" + }, + { + "bbox": [ + 204, + 428, + 238, + 439 + ], + "score": 0.89, + "content": "( \\mathsf { R } 2 0 _ { P 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 427, + 505, + 441 + ], + "score": 1.0, + "content": "is always better at one-step and iterative black box attack from", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 438, + 504, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 183, + 451 + ], + "score": 1.0, + "content": "defended networks", + "type": "text" + }, + { + "bbox": [ + 183, + 439, + 245, + 450 + ], + "score": 0.28, + "content": "( \\mathsf { R } 2 0 _ { K } , \\mathsf { R } 2 0 _ { P } )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 438, + 465, + 451 + ], + "score": 1.0, + "content": "and undefended network (R20) than Kurakin’s method", + "type": "text" + }, + { + "bbox": [ + 466, + 439, + 500, + 450 + ], + "score": 0.88, + "content": "( { \\bf R } 2 0 _ { B { \\bf 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 438, + 504, + 451 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 448, + 504, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 504, + 463 + ], + "score": 1.0, + "content": "However, it is hard to tell which method is better than the other one as explained in the main paper.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 427, + 505, + 463 + ] + }, + { + "type": "table", + "bbox": [ + 129, + 506, + 482, + 607 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 469, + 504, + 493 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 468, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 232, + 482 + ], + "score": 1.0, + "content": "Table 10: CIFAR10 test results", + "type": "text" + }, + { + "bbox": [ + 233, + 470, + 249, + 480 + ], + "score": 0.75, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 468, + 447, + 482 + ], + "score": 1.0, + "content": "for cascade networks under black box attacks for", + "type": "text" + }, + { + "bbox": [ + 447, + 470, + 469, + 480 + ], + "score": 0.83, + "content": "{ \\epsilon } { = } 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 468, + 505, + 482 + ], + "score": 1.0, + "content": ". {Target", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 480, + 361, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 361, + 493 + ], + "score": 1.0, + "content": "and Source: Please see the model descriptions in Appendix B.}", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "table_body", + "bbox": [ + 129, + 506, + 482, + 607 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 129, + 506, + 482, + 607 + ], + "spans": [ + { + "bbox": [ + 129, + 506, + 482, + 607 + ], + "score": 0.983, + "html": "
TargetSource: iter_FGSM
R110R110KR110ER110pR110K,CR110p,ER110p,C
R110K280.572.749.368.049.641.067.9
R110E282.759.139.559.651.540.369.6
R110p2 (Ours)80.375.954.272.254.944.372.4
R110k,C2 (Ours)62.174.761.572.346.539.067.9
R110p,E2 (Ours)81.579.050.077.356.945.575.2
R110p,c2 (Ours)72.276.460.673.851.040.972.0
", + "type": "table", + "image_path": "19b43217da7077fd6e2e2eff14dc27cd85d13f61c08c35e6d2732ef97907066a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 129, + 506, + 482, + 539.6666666666666 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 129, + 539.6666666666666, + 482, + 573.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 129, + 573.3333333333333, + 482, + 606.9999999999999 + ], + "spans": [], + "index": 23 + } + ] + } + ], + "index": 20.75 + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 505, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "In table 10, we show black box attack accuracies with the source and the target networks switched", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 644 + ], + "score": 1.0, + "content": "from the table 4. We also observe that networks trained with both low-level similarity learning and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 643, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 261, + 655 + ], + "score": 1.0, + "content": "cascade/ensemble adversarial training", + "type": "text" + }, + { + "bbox": [ + 261, + 643, + 306, + 655 + ], + "score": 0.87, + "content": "( \\mathrm { R } 1 1 0 _ { P , C 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 643, + 310, + 655 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 310, + 643, + 356, + 655 + ], + "score": 0.86, + "content": "\\mathbf { R } 1 1 0 _ { P , E 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 643, + 505, + 655 + ], + "score": 1.0, + "content": "show better worst-case performance", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 651, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 469, + 668 + ], + "score": 1.0, + "content": "than other networks. Overall, iter FGSM images crafted from ensemble model families", + "type": "text" + }, + { + "bbox": [ + 469, + 654, + 501, + 666 + ], + "score": 0.88, + "content": "( \\mathrm { R } 1 1 0 _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 651, + 506, + 668 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 665, + 314, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 147, + 677 + ], + "score": 0.87, + "content": "\\operatorname { R 1 1 0 } _ { P , E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 666, + 314, + 677 + ], + "score": 1.0, + "content": "remain strong on the defended networks.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 620, + 506, + 677 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 117, + 505, + 230 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 117, + 505, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 117, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 505, + 230 + ], + "score": 0.971, + "type": "image", + "image_path": "ab53c2fe8209182e38731b9aaaef260818586606f8ae3b9ef8464c393141354e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 117, + 505, + 154.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 154.66666666666666, + 505, + 192.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 192.33333333333331, + 505, + 229.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 239, + 504, + 262 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 239, + 504, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 292, + 252 + ], + "score": 1.0, + "content": "Figure 9: Cumulative distribution function vs.", + "type": "text" + }, + { + "bbox": [ + 293, + 241, + 298, + 249 + ], + "score": 0.58, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 239, + 504, + 252 + ], + "score": 1.0, + "content": "for 100 test adversarial examples generated by CW", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 249, + 381, + 263 + ], + "spans": [ + { + "bbox": [ + 107, + 251, + 123, + 261 + ], + "score": 0.88, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 249, + 270, + 262 + ], + "score": 1.0, + "content": "attack. Lower CDF value for a fixed", + "type": "text" + }, + { + "bbox": [ + 271, + 252, + 277, + 260 + ], + "score": 0.68, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 250, + 381, + 263 + ], + "score": 1.0, + "content": "means the better defense.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 502, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 500, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 212, + 286 + ], + "score": 1.0, + "content": "Carlini and Wagner (CW)", + "type": "text" + }, + { + "bbox": [ + 212, + 273, + 228, + 284 + ], + "score": 0.89, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 272, + 489, + 286 + ], + "score": 1.0, + "content": "attack solves the following optimization problem for every input", + "type": "text" + }, + { + "bbox": [ + 489, + 273, + 500, + 282 + ], + "score": 0.83, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 289, + 399, + 316 + ], + "lines": [ + { + "bbox": [ + 212, + 289, + 399, + 316 + ], + "spans": [ + { + "bbox": [ + 212, + 289, + 399, + 316 + ], + "score": 0.86, + "content": "m i n i m i z e \\quad c \\cdot f ( X + \\pmb { \\delta } ) + \\sum _ { i } [ ( | \\delta _ { i } | - \\tau ) ^ { + } ]", + "type": "interline_equation", + "image_path": "74e24b878b8dc6c29f71fb22a4989b093871e569b0819a2be05ce3a62d8f184a.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 289, + 399, + 302.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 212, + 302.5, + 399, + 316.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 336, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 187, + 349 + ], + "score": 1.0, + "content": "where, the function", + "type": "text" + }, + { + "bbox": [ + 188, + 337, + 195, + 348 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 335, + 404, + 349 + ], + "score": 1.0, + "content": "is defined such that attack is success if and only if", + "type": "text" + }, + { + "bbox": [ + 404, + 336, + 475, + 348 + ], + "score": 0.9, + "content": "f ( X + \\delta ) < 0 , \\mathfrak { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "δ is the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 345, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 104, + 345, + 224, + 361 + ], + "score": 1.0, + "content": "target perturbation defined as", + "type": "text" + }, + { + "bbox": [ + 224, + 347, + 268, + 358 + ], + "score": 0.9, + "content": "X ^ { a d v } - X", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 345, + 271, + 361 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 272, + 349, + 278, + 357 + ], + "score": 0.64, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 345, + 506, + 361 + ], + "score": 1.0, + "content": "is the parameter to control the relative weight of function", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 357, + 503, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 114, + 370 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 357, + 233, + 371 + ], + "score": 1.0, + "content": "in the total cost function, and", + "type": "text" + }, + { + "bbox": [ + 234, + 360, + 241, + 368 + ], + "score": 0.78, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 357, + 491, + 371 + ], + "score": 1.0, + "content": "is the control threshold used to penalize any terms that exceed", + "type": "text" + }, + { + "bbox": [ + 491, + 360, + 498, + 368 + ], + "score": 0.75, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 357, + 503, + 371 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 106, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 153, + 387 + ], + "score": 1.0, + "content": "Since CW", + "type": "text" + }, + { + "bbox": [ + 153, + 375, + 169, + 386 + ], + "score": 0.88, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 375, + 505, + 387 + ], + "score": 1.0, + "content": "attack is computationally expensive, we only use 100 test examples (10 exam-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 384, + 504, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 322, + 399 + ], + "score": 1.0, + "content": "ples per each class). We search adversarial example", + "type": "text" + }, + { + "bbox": [ + 322, + 385, + 346, + 396 + ], + "score": 0.89, + "content": "X ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 384, + 369, + 399 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 370, + 386, + 504, + 397 + ], + "score": 0.89, + "content": "c \\in \\{ 0 . 1 , 0 . 2 , 0 . 5 , 1 , 2 , 5 , 1 0 , 2 0 \\}", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 397, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 397, + 126, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 126, + 397, + 239, + 409 + ], + "score": 0.88, + "content": "\\tau \\in \\ \\{ 0 . 0 2 , 0 . 0 4 , . . . , 0 . 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 397, + 318, + 410 + ], + "score": 1.0, + "content": "for MNIST and", + "type": "text" + }, + { + "bbox": [ + 318, + 398, + 456, + 408 + ], + "score": 0.85, + "content": "c ~ \\in ~ \\{ 0 . 1 , 0 . 3 , 1 , 3 , 1 0 , 3 0 , 1 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 397, + 480, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 481, + 398, + 504, + 408 + ], + "score": 0.8, + "content": "\\tau \\_ { \\in }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 108, + 407, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 108, + 408, + 389, + 420 + ], + "score": 0.45, + "content": "\\{ 0 . 0 0 1 , 0 . 0 0 \\dot { 2 } , . . . , 0 . 0 1 , 0 . 0 1 2 , . . . , 0 . 0 2 , 0 . 0 2 4 , . . . , 0 . 0 4 , 0 . 0 4 8 , . . . , 0 . 0 8 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 407, + 506, + 421 + ], + "score": 1.0, + "content": "for CIFAR10. We use Adam", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 277, + 432 + ], + "score": 1.0, + "content": "optimizer with an initial learning rate of", + "type": "text" + }, + { + "bbox": [ + 277, + 420, + 303, + 430 + ], + "score": 0.8, + "content": "0 . 0 1 / c", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "since we found constant initial learning rate for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 107, + 430, + 161, + 442 + ], + "score": 0.92, + "content": "c \\cdot f ( \\pmb { X } + \\pmb { \\delta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "term is critical for successful adversarial images generation. We terminate the search", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 228, + 454 + ], + "score": 1.0, + "content": "after 2,000 iterations for each", + "type": "text" + }, + { + "bbox": [ + 228, + 441, + 239, + 451 + ], + "score": 0.73, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 441, + 243, + 454 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 443, + 250, + 451 + ], + "score": 0.63, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 441, + 267, + 454 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 268, + 443, + 275, + 451 + ], + "score": 0.77, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 441, + 289, + 454 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 289, + 441, + 352, + 453 + ], + "score": 0.92, + "content": "f ( X + \\delta ) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 441, + 423, + 454 + ], + "score": 1.0, + "content": "and the resulting", + "type": "text" + }, + { + "bbox": [ + 423, + 441, + 449, + 453 + ], + "score": 0.93, + "content": "| | \\delta | | _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "is lower than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 451, + 279, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 251, + 464 + ], + "score": 1.0, + "content": "the current best distance, we update", + "type": "text" + }, + { + "bbox": [ + 252, + 452, + 275, + 462 + ], + "score": 0.9, + "content": "X ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 451, + 279, + 464 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 317, + 482 + ], + "score": 1.0, + "content": "Figure 9 shows cumulative distribution function of", + "type": "text" + }, + { + "bbox": [ + 317, + 471, + 323, + 479 + ], + "score": 0.69, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 468, + 506, + 482 + ], + "score": 1.0, + "content": "for 100 successful adversarial examples per", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 383, + 491 + ], + "score": 1.0, + "content": "each network. We report the number of adversarial examples with", + "type": "text" + }, + { + "bbox": [ + 383, + 480, + 437, + 491 + ], + "score": 0.9, + "content": "\\epsilon > 0 . 3 ^ { * } 2 5 5", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "for MNIST and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 490, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 144, + 503 + ], + "score": 1.0, + "content": "that with", + "type": "text" + }, + { + "bbox": [ + 144, + 491, + 168, + 501 + ], + "score": 0.89, + "content": "\\epsilon > 2", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 490, + 505, + 503 + ], + "score": 1.0, + "content": "or 4 for CIFAR10. As seen from this figure, our approaches provide robust defense", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 502, + 325, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 155, + 514 + ], + "score": 1.0, + "content": "against CW", + "type": "text" + }, + { + "bbox": [ + 156, + 502, + 172, + 513 + ], + "score": 0.88, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 502, + 325, + 514 + ], + "score": 1.0, + "content": "attack compared to other approaches.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 81, + 453, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 456, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 390, + 97 + ], + "score": 1.0, + "content": "F IMPLEMENTATION DETAILS FOR CARLINI-WAGNER", + "type": "text" + }, + { + "bbox": [ + 391, + 82, + 408, + 94 + ], + "score": 0.82, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 79, + 456, + 97 + ], + "score": 1.0, + "content": "ATTACK", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 117, + 505, + 230 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 117, + 505, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 117, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 505, + 230 + ], + "score": 0.971, + "type": "image", + "image_path": "ab53c2fe8209182e38731b9aaaef260818586606f8ae3b9ef8464c393141354e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 117, + 505, + 154.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 154.66666666666666, + 505, + 192.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 192.33333333333331, + 505, + 229.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 239, + 504, + 262 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 239, + 504, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 292, + 252 + ], + "score": 1.0, + "content": "Figure 9: Cumulative distribution function vs.", + "type": "text" + }, + { + "bbox": [ + 293, + 241, + 298, + 249 + ], + "score": 0.58, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 239, + 504, + 252 + ], + "score": 1.0, + "content": "for 100 test adversarial examples generated by CW", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 249, + 381, + 263 + ], + "spans": [ + { + "bbox": [ + 107, + 251, + 123, + 261 + ], + "score": 0.88, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 249, + 270, + 262 + ], + "score": 1.0, + "content": "attack. Lower CDF value for a fixed", + "type": "text" + }, + { + "bbox": [ + 271, + 252, + 277, + 260 + ], + "score": 0.68, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 250, + 381, + 263 + ], + "score": 1.0, + "content": "means the better defense.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 502, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 500, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 212, + 286 + ], + "score": 1.0, + "content": "Carlini and Wagner (CW)", + "type": "text" + }, + { + "bbox": [ + 212, + 273, + 228, + 284 + ], + "score": 0.89, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 272, + 489, + 286 + ], + "score": 1.0, + "content": "attack solves the following optimization problem for every input", + "type": "text" + }, + { + "bbox": [ + 489, + 273, + 500, + 282 + ], + "score": 0.83, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 272, + 500, + 286 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 289, + 399, + 316 + ], + "lines": [ + { + "bbox": [ + 212, + 289, + 399, + 316 + ], + "spans": [ + { + "bbox": [ + 212, + 289, + 399, + 316 + ], + "score": 0.86, + "content": "m i n i m i z e \\quad c \\cdot f ( X + \\pmb { \\delta } ) + \\sum _ { i } [ ( | \\delta _ { i } | - \\tau ) ^ { + } ]", + "type": "interline_equation", + "image_path": "74e24b878b8dc6c29f71fb22a4989b093871e569b0819a2be05ce3a62d8f184a.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 289, + 399, + 302.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 212, + 302.5, + 399, + 316.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 336, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 187, + 349 + ], + "score": 1.0, + "content": "where, the function", + "type": "text" + }, + { + "bbox": [ + 188, + 337, + 195, + 348 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 335, + 404, + 349 + ], + "score": 1.0, + "content": "is defined such that attack is success if and only if", + "type": "text" + }, + { + "bbox": [ + 404, + 336, + 475, + 348 + ], + "score": 0.9, + "content": "f ( X + \\delta ) < 0 , \\mathfrak { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "δ is the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 345, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 104, + 345, + 224, + 361 + ], + "score": 1.0, + "content": "target perturbation defined as", + "type": "text" + }, + { + "bbox": [ + 224, + 347, + 268, + 358 + ], + "score": 0.9, + "content": "X ^ { a d v } - X", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 345, + 271, + 361 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 272, + 349, + 278, + 357 + ], + "score": 0.64, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 345, + 506, + 361 + ], + "score": 1.0, + "content": "is the parameter to control the relative weight of function", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 357, + 503, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 114, + 370 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 357, + 233, + 371 + ], + "score": 1.0, + "content": "in the total cost function, and", + "type": "text" + }, + { + "bbox": [ + 234, + 360, + 241, + 368 + ], + "score": 0.78, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 357, + 491, + 371 + ], + "score": 1.0, + "content": "is the control threshold used to penalize any terms that exceed", + "type": "text" + }, + { + "bbox": [ + 491, + 360, + 498, + 368 + ], + "score": 0.75, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 357, + 503, + 371 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 335, + 506, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 106, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 153, + 387 + ], + "score": 1.0, + "content": "Since CW", + "type": "text" + }, + { + "bbox": [ + 153, + 375, + 169, + 386 + ], + "score": 0.88, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 375, + 505, + 387 + ], + "score": 1.0, + "content": "attack is computationally expensive, we only use 100 test examples (10 exam-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 384, + 504, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 322, + 399 + ], + "score": 1.0, + "content": "ples per each class). We search adversarial example", + "type": "text" + }, + { + "bbox": [ + 322, + 385, + 346, + 396 + ], + "score": 0.89, + "content": "X ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 384, + 369, + 399 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 370, + 386, + 504, + 397 + ], + "score": 0.89, + "content": "c \\in \\{ 0 . 1 , 0 . 2 , 0 . 5 , 1 , 2 , 5 , 1 0 , 2 0 \\}", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 397, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 397, + 126, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 126, + 397, + 239, + 409 + ], + "score": 0.88, + "content": "\\tau \\in \\ \\{ 0 . 0 2 , 0 . 0 4 , . . . , 0 . 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 397, + 318, + 410 + ], + "score": 1.0, + "content": "for MNIST and", + "type": "text" + }, + { + "bbox": [ + 318, + 398, + 456, + 408 + ], + "score": 0.85, + "content": "c ~ \\in ~ \\{ 0 . 1 , 0 . 3 , 1 , 3 , 1 0 , 3 0 , 1 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 397, + 480, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 481, + 398, + 504, + 408 + ], + "score": 0.8, + "content": "\\tau \\_ { \\in }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 108, + 407, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 108, + 408, + 389, + 420 + ], + "score": 0.45, + "content": "\\{ 0 . 0 0 1 , 0 . 0 0 \\dot { 2 } , . . . , 0 . 0 1 , 0 . 0 1 2 , . . . , 0 . 0 2 , 0 . 0 2 4 , . . . , 0 . 0 4 , 0 . 0 4 8 , . . . , 0 . 0 8 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 407, + 506, + 421 + ], + "score": 1.0, + "content": "for CIFAR10. We use Adam", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 277, + 432 + ], + "score": 1.0, + "content": "optimizer with an initial learning rate of", + "type": "text" + }, + { + "bbox": [ + 277, + 420, + 303, + 430 + ], + "score": 0.8, + "content": "0 . 0 1 / c", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "since we found constant initial learning rate for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 107, + 430, + 161, + 442 + ], + "score": 0.92, + "content": "c \\cdot f ( \\pmb { X } + \\pmb { \\delta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "term is critical for successful adversarial images generation. We terminate the search", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 228, + 454 + ], + "score": 1.0, + "content": "after 2,000 iterations for each", + "type": "text" + }, + { + "bbox": [ + 228, + 441, + 239, + 451 + ], + "score": 0.73, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 441, + 243, + 454 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 443, + 250, + 451 + ], + "score": 0.63, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 441, + 267, + 454 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 268, + 443, + 275, + 451 + ], + "score": 0.77, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 441, + 289, + 454 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 289, + 441, + 352, + 453 + ], + "score": 0.92, + "content": "f ( X + \\delta ) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 441, + 423, + 454 + ], + "score": 1.0, + "content": "and the resulting", + "type": "text" + }, + { + "bbox": [ + 423, + 441, + 449, + 453 + ], + "score": 0.93, + "content": "| | \\delta | | _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "is lower than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 451, + 279, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 251, + 464 + ], + "score": 1.0, + "content": "the current best distance, we update", + "type": "text" + }, + { + "bbox": [ + 252, + 452, + 275, + 462 + ], + "score": 0.9, + "content": "X ^ { a d v }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 451, + 279, + 464 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5, + "bbox_fs": [ + 104, + 375, + 506, + 464 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 317, + 482 + ], + "score": 1.0, + "content": "Figure 9 shows cumulative distribution function of", + "type": "text" + }, + { + "bbox": [ + 317, + 471, + 323, + 479 + ], + "score": 0.69, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 468, + 506, + 482 + ], + "score": 1.0, + "content": "for 100 successful adversarial examples per", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 383, + 491 + ], + "score": 1.0, + "content": "each network. We report the number of adversarial examples with", + "type": "text" + }, + { + "bbox": [ + 383, + 480, + 437, + 491 + ], + "score": 0.9, + "content": "\\epsilon > 0 . 3 ^ { * } 2 5 5", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "for MNIST and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 490, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 144, + 503 + ], + "score": 1.0, + "content": "that with", + "type": "text" + }, + { + "bbox": [ + 144, + 491, + 168, + 501 + ], + "score": 0.89, + "content": "\\epsilon > 2", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 490, + 505, + 503 + ], + "score": 1.0, + "content": "or 4 for CIFAR10. As seen from this figure, our approaches provide robust defense", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 502, + 325, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 155, + 514 + ], + "score": 1.0, + "content": "against CW", + "type": "text" + }, + { + "bbox": [ + 156, + 502, + 172, + 513 + ], + "score": 0.88, + "content": "L _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 502, + 325, + 514 + ], + "score": 1.0, + "content": "attack compared to other approaches.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 468, + 506, + 514 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/HyRVBzap-/HyRVBzap-_model.json b/parse/train/HyRVBzap-/HyRVBzap-_model.json new file mode 100644 index 0000000000000000000000000000000000000000..864f2131c67ffd17d4cc0bc7a96bdaac9e2ae964 --- /dev/null +++ b/parse/train/HyRVBzap-/HyRVBzap-_model.json @@ -0,0 +1,23082 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 681, + 1302, + 681, + 1302, + 1199, + 398, + 1199 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1499, + 1403, + 1499, + 1403, + 1805, + 298, + 1805 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1402, + 1820, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1329, + 1402, + 1329, + 1402, + 1483, + 299, + 1483 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 300, + 220, + 1396, + 220, + 1396, + 324, + 300, + 324 + ], + "score": 0.961 + }, + { + "category_id": 0, + "poly": [ + 302, + 1260, + 573, + 1260, + 573, + 1295, + 302, + 1295 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 773, + 611, + 927, + 611, + 927, + 644, + 773, + 644 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2112, + 841, + 2112 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 314, + 376, + 929, + 376, + 929, + 409, + 314, + 409 + ], + "score": 0.635 + }, + { + "category_id": 1, + "poly": [ + 315, + 412, + 1160, + 412, + 1160, + 530, + 315, + 530 + ], + "score": 0.567 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 217.0, + 1402.0, + 217.0, + 1402.0, + 271.0, + 295.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 278.0, + 1132.0, + 278.0, + 1132.0, + 327.0, + 296.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1257.0, + 579.0, + 1257.0, + 579.0, + 1304.0, + 294.0, + 1304.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, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 681.0, + 1306.0, + 681.0, + 1306.0, + 718.0, + 395.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 714.0, + 1305.0, + 714.0, + 1305.0, + 745.0, + 393.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 742.0, + 1306.0, + 742.0, + 1306.0, + 778.0, + 393.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 774.0, + 1306.0, + 774.0, + 1306.0, + 806.0, + 393.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 803.0, + 1307.0, + 803.0, + 1307.0, + 839.0, + 394.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 835.0, + 1306.0, + 835.0, + 1306.0, + 868.0, + 394.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 865.0, + 1305.0, + 865.0, + 1305.0, + 898.0, + 394.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 894.0, + 1305.0, + 894.0, + 1305.0, + 929.0, + 394.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 924.0, + 1306.0, + 924.0, + 1306.0, + 960.0, + 393.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 955.0, + 1303.0, + 955.0, + 1303.0, + 990.0, + 394.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 985.0, + 1306.0, + 985.0, + 1306.0, + 1022.0, + 394.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1017.0, + 1307.0, + 1017.0, + 1307.0, + 1050.0, + 393.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1046.0, + 1306.0, + 1046.0, + 1306.0, + 1083.0, + 394.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1076.0, + 1306.0, + 1076.0, + 1306.0, + 1113.0, + 392.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1108.0, + 1302.0, + 1108.0, + 1302.0, + 1142.0, + 394.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1137.0, + 1304.0, + 1137.0, + 1304.0, + 1173.0, + 393.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1170.0, + 1243.0, + 1170.0, + 1243.0, + 1202.0, + 394.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1534.0, + 297.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1567.0, + 293.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1596.0, + 293.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1587.0, + 1407.0, + 1587.0, + 1407.0, + 1629.0, + 292.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1405.0, + 1620.0, + 1405.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1688.0, + 293.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 1405.0, + 1681.0, + 1405.0, + 1717.0, + 294.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1710.0, + 1405.0, + 1710.0, + 1405.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1776.0, + 292.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1774.0, + 1122.0, + 1774.0, + 1122.0, + 1808.0, + 293.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1403.0, + 1820.0, + 1403.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 1404.0, + 1850.0, + 1404.0, + 1887.0, + 293.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1938.0, + 1407.0, + 1938.0, + 1407.0, + 1981.0, + 292.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1969.0, + 1407.0, + 1969.0, + 1407.0, + 2009.0, + 292.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1999.0, + 1406.0, + 1999.0, + 1406.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 1404.0, + 1329.0, + 1404.0, + 1366.0, + 295.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1361.0, + 1403.0, + 1361.0, + 1403.0, + 1394.0, + 295.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1390.0, + 1404.0, + 1390.0, + 1404.0, + 1426.0, + 294.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1417.0, + 1407.0, + 1417.0, + 1407.0, + 1462.0, + 293.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1454.0, + 775.0, + 1454.0, + 775.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 371.0, + 931.0, + 371.0, + 931.0, + 419.0, + 310.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 402.0, + 848.0, + 402.0, + 848.0, + 444.0, + 311.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 433.0, + 676.0, + 433.0, + 676.0, + 474.0, + 311.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 468.0, + 602.0, + 468.0, + 602.0, + 499.0, + 314.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 497.0, + 1161.0, + 497.0, + 1161.0, + 534.0, + 314.0, + 534.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 337, + 1403, + 337, + 1403, + 523, + 298, + 523 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1662, + 1404, + 1662, + 1404, + 1785, + 298, + 1785 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1880, + 1402, + 1880, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1553, + 1404, + 1553, + 1404, + 1649, + 298, + 1649 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 830, + 1406, + 830, + 1406, + 923, + 297, + 923 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 537, + 1404, + 537, + 1404, + 661, + 298, + 661 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 301, + 228, + 1399, + 228, + 1399, + 322, + 301, + 322 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 291, + 1003, + 1403, + 1003, + 1403, + 1066, + 291, + 1066 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 1322, + 1400, + 1322, + 1400, + 1388, + 297, + 1388 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 295, + 1400, + 1402, + 1400, + 1402, + 1464, + 295, + 1464 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 622, + 1081, + 1079, + 1081, + 1079, + 1124, + 622, + 1124 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 632, + 936, + 1068, + 936, + 1068, + 977, + 632, + 977 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 298, + 1150, + 1181, + 1150, + 1181, + 1184, + 298, + 1184 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 415, + 1477, + 1280, + 1477, + 1280, + 1525, + 415, + 1525 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 411, + 1244, + 1286, + 1244, + 1286, + 1291, + 411, + 1291 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 300, + 773, + 593, + 773, + 593, + 805, + 300, + 805 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1823, + 606, + 1823, + 606, + 1856, + 300, + 1856 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 298, + 706, + 966, + 706, + 966, + 741, + 298, + 741 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 290, + 1195, + 1374, + 1195, + 1374, + 1232, + 290, + 1232 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.719 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.159 + }, + { + "category_id": 13, + "poly": [ + 1237, + 861, + 1369, + 861, + 1369, + 895, + 1237, + 895 + ], + "score": 0.91, + "latex": "\\epsilon \\in [ 0 , 2 5 5 ]" + }, + { + "category_id": 14, + "poly": [ + 628, + 934, + 1070, + 934, + 1070, + 976, + 628, + 976 + ], + "score": 0.91, + "latex": "X ^ { a d v } = X + \\epsilon \\mathrm { s i g n } ( \\nabla _ { X } J ( X , y _ { t r u e } ) )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1615, + 461, + 1615, + 461, + 1651, + 298, + 1651 + ], + "score": 0.9, + "latex": "\\stackrel { \\bullet } { f } ( X ^ { a d v } ) < 0 )" + }, + { + "category_id": 13, + "poly": [ + 388, + 1326, + 457, + 1326, + 457, + 1353, + 388, + 1353 + ], + "score": 0.9, + "latex": "\\alpha = 1" + }, + { + "category_id": 14, + "poly": [ + 619, + 1080, + 1080, + 1080, + 1080, + 1122, + 619, + 1122 + ], + "score": 0.9, + "latex": "X ^ { a d v } = X - \\epsilon \\mathrm { s i g n } ( \\nabla _ { X } J ( X , y _ { t a r g e t } ) )" + }, + { + "category_id": 13, + "poly": [ + 761, + 1004, + 827, + 1004, + 827, + 1034, + 761, + 1034 + ], + "score": 0.9, + "latex": "X ^ { a d v }" + }, + { + "category_id": 14, + "poly": [ + 417, + 1476, + 1282, + 1476, + 1282, + 1527, + 417, + 1527 + ], + "score": 0.9, + "latex": "X _ { 0 } ^ { a d v } = X , \\quad X _ { N } ^ { a d v } = C l i p _ { X , \\epsilon } \\{ X _ { N - 1 } ^ { a d v } - \\alpha \\ \\mathrm { s i g n } ( \\nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { L L } ) ) \\}" + }, + { + "category_id": 13, + "poly": [ + 830, + 1616, + 897, + 1616, + 897, + 1644, + 830, + 1644 + ], + "score": 0.89, + "latex": "X ^ { a d v }" + }, + { + "category_id": 14, + "poly": [ + 411, + 1242, + 1288, + 1242, + 1288, + 1293, + 411, + 1293 + ], + "score": 0.89, + "latex": "X _ { 0 } ^ { a d v } = X , \\quad X _ { N } ^ { a d v } = C l i p _ { X , \\epsilon } \\{ X _ { N - 1 } ^ { a d v } + \\alpha \\ \\mathrm { s i g n } ( \\nabla _ { X _ { N - 1 } ^ { a d v } } J ( X _ { N - 1 } ^ { a d v } , y _ { t r u e } ) ) \\}" + }, + { + "category_id": 13, + "poly": [ + 827, + 1356, + 1220, + 1356, + 1220, + 1388, + 827, + 1388 + ], + "score": 0.88, + "latex": "[ \\mathrm { m a x } ( 0 , X - \\epsilon ) , \\mathrm { m i n } ( 2 5 5 , X + \\epsilon ) ]" + }, + { + "category_id": 13, + "poly": [ + 373, + 861, + 439, + 861, + 439, + 890, + 373, + 890 + ], + "score": 0.88, + "latex": "\\bar { X } ^ { a d v }" + }, + { + "category_id": 13, + "poly": [ + 572, + 1158, + 621, + 1158, + 621, + 1184, + 572, + 1184 + ], + "score": 0.87, + "latex": "y _ { L L }" + }, + { + "category_id": 13, + "poly": [ + 905, + 1588, + 926, + 1588, + 926, + 1618, + 905, + 1618 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 708, + 1325, + 738, + 1325, + 738, + 1352, + 708, + 1352 + ], + "score": 0.84, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 949, + 1618, + 979, + 1618, + 979, + 1644, + 949, + 1644 + ], + "score": 0.83, + "latex": "\\boldsymbol { X }" + }, + { + "category_id": 13, + "poly": [ + 901, + 1913, + 919, + 1913, + 919, + 1939, + 901, + 1939 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1045, + 863, + 1075, + 863, + 1075, + 889, + 1045, + 889 + ], + "score": 0.8, + "latex": "\\boldsymbol { X }" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1944, + 1273, + 1944, + 1273, + 1970, + 1253, + 1970 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1205, + 1201, + 1205, + 1201, + 1226, + 1179, + 1226 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1375, + 1912, + 1401, + 1912, + 1401, + 1939, + 1375, + 1939 + ], + "score": 0.78, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1407, + 1326, + 1407, + 1326, + 1429, + 1305, + 1429 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 388, + 1947, + 416, + 1947, + 416, + 1971, + 388, + 1971 + ], + "score": 0.72, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 810, + 1324, + 1128, + 1324, + 1128, + 1356, + 810, + 1356 + ], + "score": 0.66, + "latex": "\\operatorname* { m i n } ( \\epsilon + 4 , 1 . 2 5 \\epsilon ) . ~ C l i p _ { X , \\epsilon }" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1325, + 1126, + 1325, + 1126, + 1357, + 1034, + 1357 + ], + "score": 0.62, + "latex": "C l i p _ { X , \\epsilon }" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1556, + 1148, + 1556, + 1148, + 1584, + 1076, + 1584 + ], + "score": 0.26, + "latex": "\\mathbf { \\tilde { \\Sigma } } ^ { 6 6 } \\mathbf { C } \\mathbf { W } ^ { \\prime } " + }, + { + "category_id": 15, + "poly": [ + 295.0, + 773.0, + 595.0, + 773.0, + 595.0, + 809.0, + 295.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 610.0, + 1821.0, + 610.0, + 1860.0, + 294.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 702.0, + 969.0, + 702.0, + 969.0, + 746.0, + 292.0, + 746.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, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 336.0, + 1405.0, + 336.0, + 1405.0, + 373.0, + 293.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 364.0, + 1405.0, + 364.0, + 1405.0, + 407.0, + 292.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 397.0, + 1405.0, + 397.0, + 1405.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 431.0, + 1404.0, + 431.0, + 1404.0, + 463.0, + 296.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 461.0, + 1403.0, + 461.0, + 1403.0, + 493.0, + 296.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 489.0, + 857.0, + 489.0, + 857.0, + 526.0, + 293.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1661.0, + 1404.0, + 1661.0, + 1404.0, + 1698.0, + 293.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1693.0, + 1406.0, + 1693.0, + 1406.0, + 1729.0, + 293.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1725.0, + 1404.0, + 1725.0, + 1404.0, + 1757.0, + 294.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1756.0, + 525.0, + 1756.0, + 525.0, + 1784.0, + 294.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 296.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 900.0, + 1909.0, + 900.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1909.0, + 1374.0, + 1909.0, + 1374.0, + 1945.0, + 920.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 387.0, + 1941.0, + 387.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1941.0, + 1252.0, + 1941.0, + 1252.0, + 1978.0, + 417.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1978.0, + 1274.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2007.0, + 292.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 784.0, + 2003.0, + 784.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1554.0, + 1075.0, + 1554.0, + 1075.0, + 1589.0, + 297.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1554.0, + 1404.0, + 1554.0, + 1404.0, + 1589.0, + 1149.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1584.0, + 904.0, + 1584.0, + 904.0, + 1622.0, + 293.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1584.0, + 1408.0, + 1584.0, + 1408.0, + 1622.0, + 927.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1612.0, + 297.0, + 1612.0, + 297.0, + 1651.0, + 292.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 1612.0, + 829.0, + 1612.0, + 829.0, + 1651.0, + 462.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1612.0, + 948.0, + 1612.0, + 948.0, + 1651.0, + 898.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1612.0, + 995.0, + 1612.0, + 995.0, + 1651.0, + 980.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 829.0, + 1406.0, + 829.0, + 1406.0, + 867.0, + 296.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 856.0, + 372.0, + 856.0, + 372.0, + 901.0, + 292.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 856.0, + 1044.0, + 856.0, + 1044.0, + 901.0, + 440.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 856.0, + 1236.0, + 856.0, + 1236.0, + 901.0, + 1076.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 856.0, + 1407.0, + 856.0, + 1407.0, + 901.0, + 1370.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 892.0, + 744.0, + 892.0, + 744.0, + 926.0, + 295.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 534.0, + 1404.0, + 534.0, + 1404.0, + 575.0, + 293.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 566.0, + 1405.0, + 566.0, + 1405.0, + 605.0, + 292.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 598.0, + 1404.0, + 598.0, + 1404.0, + 633.0, + 293.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 629.0, + 837.0, + 629.0, + 837.0, + 662.0, + 296.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 260.0, + 1402.0, + 260.0, + 1402.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 293.0, + 473.0, + 293.0, + 473.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 998.0, + 760.0, + 998.0, + 760.0, + 1043.0, + 293.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 998.0, + 1409.0, + 998.0, + 1409.0, + 1043.0, + 828.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1035.0, + 613.0, + 1035.0, + 613.0, + 1070.0, + 295.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 387.0, + 1317.0, + 387.0, + 1363.0, + 295.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1317.0, + 707.0, + 1317.0, + 707.0, + 1363.0, + 458.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1317.0, + 809.0, + 1317.0, + 809.0, + 1363.0, + 739.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1363.0, + 1129.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1354.0, + 826.0, + 1354.0, + 826.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1354.0, + 1229.0, + 1354.0, + 1229.0, + 1390.0, + 1221.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 1304.0, + 1397.0, + 1304.0, + 1437.0, + 294.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1397.0, + 1404.0, + 1397.0, + 1404.0, + 1437.0, + 1327.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1431.0, + 413.0, + 1431.0, + 413.0, + 1469.0, + 293.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1148.0, + 571.0, + 1148.0, + 571.0, + 1187.0, + 295.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1148.0, + 1185.0, + 1148.0, + 1185.0, + 1187.0, + 622.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1195.0, + 1178.0, + 1195.0, + 1178.0, + 1235.0, + 296.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1195.0, + 1377.0, + 1195.0, + 1377.0, + 1235.0, + 1202.0, + 1235.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 926, + 1404, + 926, + 1404, + 1141, + 298, + 1141 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1295, + 1402, + 1295, + 1402, + 1448, + 298, + 1448 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1633, + 1403, + 1633, + 1403, + 1787, + 298, + 1787 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1464, + 1403, + 1464, + 1403, + 1618, + 298, + 1618 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1404, + 1880, + 1404, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1157, + 1402, + 1157, + 1402, + 1279, + 298, + 1279 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 941, + 230, + 1395, + 230, + 1395, + 450, + 941, + 450 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 934, + 482, + 1401, + 482, + 1401, + 606, + 934, + 606 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 664, + 1404, + 664, + 1404, + 756, + 297, + 756 + ], + "score": 0.963 + }, + { + "category_id": 6, + "poly": [ + 295, + 241, + 907, + 241, + 907, + 398, + 295, + 398 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 302, + 870, + 720, + 870, + 720, + 902, + 302, + 902 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 302, + 1823, + 792, + 1823, + 792, + 1855, + 302, + 1855 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 301, + 801, + 670, + 801, + 670, + 836, + 301, + 836 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.604 + }, + { + "category_id": 6, + "poly": [ + 300, + 452, + 894, + 452, + 894, + 486, + 300, + 486 + ], + "score": 0.505 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.41 + }, + { + "category_id": 13, + "poly": [ + 519, + 1188, + 729, + 1188, + 729, + 1219, + 519, + 1219 + ], + "score": 0.89, + "latex": "( \\mathsf { R } 2 0 _ { K 2 } \\ldots \\mathsf { R } 2 0 _ { K } )" + }, + { + "category_id": 13, + "poly": [ + 604, + 1524, + 721, + 1524, + 721, + 1557, + 604, + 1557 + ], + "score": 0.89, + "latex": "( X ^ { a d v } – X )" + }, + { + "category_id": 13, + "poly": [ + 470, + 334, + 543, + 334, + 543, + 364, + 470, + 364 + ], + "score": 0.87, + "latex": "\\mathsf { R } 2 0 _ { K }" + }, + { + "category_id": 13, + "poly": [ + 998, + 1327, + 1095, + 1327, + 1095, + 1358, + 998, + 1358 + ], + "score": 0.87, + "latex": "( \\mathsf { R } 2 0 _ { K { \\bf 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 406, + 273, + 465, + 273, + 465, + 302, + 406, + 302 + ], + "score": 0.87, + "latex": "{ \\epsilon } { = } 1 6" + }, + { + "category_id": 13, + "poly": [ + 371, + 365, + 456, + 365, + 456, + 396, + 371, + 396 + ], + "score": 0.87, + "latex": "\\mathbf { R } 2 0 _ { K 2 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 366, + 360, + 366, + 360, + 396, + 296, + 396 + ], + "score": 0.86, + "latex": "\\mathbf { R } 2 0 \\mathbf { _ 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1327, + 378, + 1327, + 378, + 1358, + 298, + 1358 + ], + "score": 0.85, + "latex": "( \\mathsf { R } 2 0 _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 768, + 1587, + 864, + 1587, + 864, + 1619, + 768, + 1619 + ], + "score": 0.84, + "latex": "( \\mathsf { R } 2 0 _ { K { \\bf 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 1173, + 544, + 1239, + 544, + 1239, + 574, + 1173, + 574 + ], + "score": 0.84, + "latex": "\\pm 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 1311, + 1556, + 1397, + 1556, + 1397, + 1587, + 1311, + 1587 + ], + "score": 0.83, + "latex": "( \\mathsf { R } 2 0 \\kappa )" + }, + { + "category_id": 13, + "poly": [ + 294, + 1218, + 381, + 1218, + 381, + 1249, + 294, + 1249 + ], + "score": 0.79, + "latex": "> { \\textrm R } 2 0 \\AA ," + }, + { + "category_id": 13, + "poly": [ + 1315, + 1188, + 1385, + 1188, + 1385, + 1219, + 1315, + 1219 + ], + "score": 0.67, + "latex": "( \\mathsf { R 2 0 _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 641, + 244, + 678, + 244, + 678, + 273, + 641, + 273 + ], + "score": 0.62, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 1379, + 519, + 1394, + 519, + 1394, + 541, + 1379, + 541 + ], + "score": 0.57, + "latex": "\\epsilon" + }, + { + "category_id": 5, + "poly": [ + 297, + 450, + 907, + 450, + 907, + 610, + 297, + 610 + ], + "score": 0.839, + "html": "
TargetSource: step-FGSMSource: iter_FGSM
R202R20K2R202R20K2
R2016.231.62.760.1
R20K66.782.755.828.5
" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 232.0, + 1189.0, + 232.0, + 1189.0, + 259.0, + 957.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 250.0, + 1183.0, + 250.0, + 1183.0, + 275.0, + 1017.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 256.0, + 1023.0, + 256.0, + 1023.0, + 272.0, + 1005.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 261.0, + 1003.0, + 261.0, + 1003.0, + 286.0, + 957.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 268.0, + 1195.0, + 268.0, + 1195.0, + 293.0, + 1015.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 272.0, + 1025.0, + 272.0, + 1025.0, + 287.0, + 1005.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 276.0, + 963.0, + 276.0, + 963.0, + 329.0, + 940.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 285.0, + 1190.0, + 285.0, + 1190.0, + 308.0, + 999.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 289.0, + 1002.0, + 289.0, + 1002.0, + 314.0, + 957.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 316.0, + 967.0, + 316.0, + 967.0, + 371.0, + 940.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 319.0, + 1002.0, + 319.0, + 1002.0, + 343.0, + 956.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 348.0, + 1002.0, + 348.0, + 1002.0, + 373.0, + 955.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 377.0, + 1003.0, + 377.0, + 1003.0, + 402.0, + 957.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 410.0, + 1026.0, + 410.0, + 1026.0, + 429.0, + 1011.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 411.0, + 1078.0, + 411.0, + 1078.0, + 428.0, + 1062.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 409.0, + 1131.0, + 409.0, + 1131.0, + 430.0, + 1111.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 409.0, + 1182.0, + 409.0, + 1182.0, + 430.0, + 1161.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 407.0, + 1389.0, + 407.0, + 1389.0, + 432.0, + 1204.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 430.0, + 1207.0, + 430.0, + 1207.0, + 452.0, + 1185.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 482.0, + 1403.0, + 482.0, + 1403.0, + 513.0, + 933.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 514.0, + 1378.0, + 514.0, + 1378.0, + 545.0, + 933.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 514.0, + 1404.0, + 514.0, + 1404.0, + 545.0, + 1395.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 544.0, + 1172.0, + 544.0, + 1172.0, + 575.0, + 935.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 544.0, + 1402.0, + 544.0, + 1402.0, + 575.0, + 1240.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 576.0, + 1140.0, + 576.0, + 1140.0, + 605.0, + 935.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 240.0, + 640.0, + 240.0, + 640.0, + 273.0, + 296.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 240.0, + 908.0, + 240.0, + 908.0, + 273.0, + 679.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 272.0, + 405.0, + 272.0, + 405.0, + 303.0, + 296.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 272.0, + 908.0, + 272.0, + 908.0, + 303.0, + 466.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 301.0, + 907.0, + 301.0, + 907.0, + 335.0, + 295.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 333.0, + 469.0, + 333.0, + 469.0, + 367.0, + 298.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 333.0, + 909.0, + 333.0, + 909.0, + 367.0, + 544.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 362.0, + 370.0, + 362.0, + 370.0, + 399.0, + 361.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 362.0, + 721.0, + 362.0, + 721.0, + 399.0, + 457.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 867.0, + 725.0, + 867.0, + 725.0, + 905.0, + 296.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1823.0, + 797.0, + 1823.0, + 797.0, + 1859.0, + 295.0, + 1859.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": [ + 292.0, + 798.0, + 673.0, + 798.0, + 673.0, + 842.0, + 292.0, + 842.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": [ + 310.0, + 459.0, + 396.0, + 459.0, + 396.0, + 498.0, + 310.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 447.0, + 897.0, + 447.0, + 897.0, + 489.0, + 408.0, + 489.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, + 925.0, + 1405.0, + 925.0, + 1405.0, + 961.0, + 295.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 958.0, + 1404.0, + 958.0, + 1404.0, + 989.0, + 296.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 990.0, + 1402.0, + 990.0, + 1402.0, + 1021.0, + 296.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1019.0, + 1405.0, + 1019.0, + 1405.0, + 1053.0, + 294.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1048.0, + 1405.0, + 1048.0, + 1405.0, + 1084.0, + 293.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1081.0, + 1404.0, + 1081.0, + 1404.0, + 1112.0, + 296.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1111.0, + 960.0, + 1111.0, + 960.0, + 1145.0, + 294.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1294.0, + 1406.0, + 1294.0, + 1406.0, + 1329.0, + 291.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1325.0, + 297.0, + 1325.0, + 297.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1325.0, + 997.0, + 1325.0, + 997.0, + 1362.0, + 379.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1325.0, + 1406.0, + 1325.0, + 1406.0, + 1362.0, + 1096.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1354.0, + 1404.0, + 1354.0, + 1404.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1385.0, + 1406.0, + 1385.0, + 1406.0, + 1423.0, + 293.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1418.0, + 1113.0, + 1418.0, + 1113.0, + 1451.0, + 296.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1629.0, + 1405.0, + 1629.0, + 1405.0, + 1669.0, + 293.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1662.0, + 1404.0, + 1662.0, + 1404.0, + 1697.0, + 293.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1693.0, + 1404.0, + 1693.0, + 1404.0, + 1729.0, + 294.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1723.0, + 1404.0, + 1723.0, + 1404.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1751.0, + 814.0, + 1751.0, + 814.0, + 1793.0, + 293.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1464.0, + 1404.0, + 1464.0, + 1404.0, + 1497.0, + 297.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1495.0, + 1405.0, + 1495.0, + 1405.0, + 1528.0, + 296.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1519.0, + 603.0, + 1519.0, + 603.0, + 1560.0, + 292.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1519.0, + 1407.0, + 1519.0, + 1407.0, + 1560.0, + 722.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1553.0, + 1310.0, + 1553.0, + 1310.0, + 1591.0, + 293.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1591.0, + 1398.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1583.0, + 767.0, + 1583.0, + 767.0, + 1623.0, + 293.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1583.0, + 881.0, + 1583.0, + 881.0, + 1623.0, + 865.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 297.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1998.0, + 1408.0, + 1998.0, + 1408.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1157.0, + 1404.0, + 1157.0, + 1404.0, + 1191.0, + 294.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 518.0, + 1187.0, + 518.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1187.0, + 1314.0, + 1187.0, + 1314.0, + 1223.0, + 730.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 1187.0, + 1404.0, + 1187.0, + 1404.0, + 1223.0, + 1386.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1217.0, + 1404.0, + 1217.0, + 1404.0, + 1254.0, + 382.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1248.0, + 1223.0, + 1248.0, + 1223.0, + 1283.0, + 293.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 663.0, + 1405.0, + 663.0, + 1405.0, + 700.0, + 295.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 696.0, + 1404.0, + 696.0, + 1404.0, + 729.0, + 296.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 726.0, + 1112.0, + 726.0, + 1112.0, + 759.0, + 295.0, + 759.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1262, + 1404, + 1262, + 1404, + 1571, + 297, + 1571 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 1062, + 1404, + 1062, + 1404, + 1247, + 298, + 1247 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1782, + 1402, + 1782, + 1402, + 1908, + 299, + 1908 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 877, + 1405, + 877, + 1405, + 970, + 299, + 970 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 382, + 219, + 1337, + 219, + 1337, + 524, + 382, + 524 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 500, + 604, + 1206, + 604, + 1206, + 765, + 500, + 765 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 295, + 1583, + 1401, + 1583, + 1401, + 1646, + 295, + 1646 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 1922, + 1399, + 1922, + 1399, + 1986, + 295, + 1986 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 340, + 1659, + 1352, + 1659, + 1352, + 1754, + 340, + 1754 + ], + "score": 0.952 + }, + { + "category_id": 4, + "poly": [ + 546, + 787, + 1152, + 787, + 1152, + 821, + 546, + 821 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 486, + 1997, + 1211, + 1997, + 1211, + 2039, + 486, + 2039 + ], + "score": 0.927 + }, + { + "category_id": 4, + "poly": [ + 421, + 544, + 1276, + 544, + 1276, + 578, + 421, + 578 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 298, + 1006, + 940, + 1006, + 940, + 1039, + 298, + 1039 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.782 + }, + { + "category_id": 14, + "poly": [ + 342, + 1657, + 1355, + 1657, + 1355, + 1754, + 342, + 1754 + ], + "score": 0.94, + "latex": "L o s s = \\frac { 1 } { ( m - k ) + \\lambda k } \\Bigg ( \\sum _ { i = 1 } ^ { m - k } L ( { \\bf X } _ { i } | y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { k } L ( { \\bf X } _ { i } ^ { a d v } | y _ { i } ) \\Bigg ) + \\lambda _ { 2 } \\sum _ { i = 1 } ^ { k } L _ { d i s t } ( E _ { i } ^ { a d v } , E _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 852, + 1785, + 890, + 1785, + 890, + 1815, + 852, + 1815 + ], + "score": 0.92, + "latex": "X _ { i }" + }, + { + "category_id": 13, + "poly": [ + 387, + 1782, + 449, + 1782, + 449, + 1817, + 387, + 1817 + ], + "score": 0.92, + "latex": "E _ { i } ^ { a d v }" + }, + { + "category_id": 13, + "poly": [ + 945, + 1782, + 1011, + 1782, + 1011, + 1818, + 945, + 1818 + ], + "score": 0.92, + "latex": "X _ { i } ^ { a d v }" + }, + { + "category_id": 13, + "poly": [ + 883, + 1877, + 944, + 1877, + 944, + 1906, + 883, + 1906 + ], + "score": 0.9, + "latex": "L _ { d i s t }" + }, + { + "category_id": 14, + "poly": [ + 487, + 1996, + 1212, + 1996, + 1212, + 2037, + 487, + 2037 + ], + "score": 0.9, + "latex": "L _ { d i s t } ( \\pmb { { E } } _ { i } ^ { a d v } , \\pmb { { E } } _ { i } ) = | | \\pmb { { E } } _ { i } ^ { a d v } - \\pmb { { E } } _ { i } | | _ { N } ^ { N } , \\quad N \\in { 1 , 2 \\quad i = 1 , 2 , . . . , k }" + }, + { + "category_id": 13, + "poly": [ + 433, + 1815, + 562, + 1815, + 562, + 1847, + 433, + 1847 + ], + "score": 0.9, + "latex": "k \\left( \\leq m / 2 \\right)" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1846, + 1179, + 1846, + 1179, + 1876, + 1146, + 1876 + ], + "score": 0.88, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1785, + 332, + 1785, + 332, + 1815, + 298, + 1815 + ], + "score": 0.86, + "latex": "\\mathbf { \\mathcal { E } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1817, + 1212, + 1817, + 1212, + 1842, + 1192, + 1842 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1177, + 1790, + 1205, + 1790, + 1205, + 1812, + 1177, + 1812 + ], + "score": 0.73, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 234.0, + 700.0, + 234.0, + 700.0, + 292.0, + 629.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 274.0, + 787.0, + 274.0, + 787.0, + 306.0, + 744.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 263.0, + 1088.0, + 263.0, + 1088.0, + 295.0, + 997.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 247.0, + 1240.0, + 247.0, + 1240.0, + 280.0, + 1153.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 303.0, + 780.0, + 303.0, + 780.0, + 402.0, + 607.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 318.0, + 903.0, + 318.0, + 903.0, + 344.0, + 851.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 292.0, + 1054.0, + 292.0, + 1054.0, + 329.0, + 992.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 320.0, + 1338.0, + 320.0, + 1338.0, + 350.0, + 1185.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 339.0, + 459.0, + 339.0, + 459.0, + 368.0, + 401.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 362.0, + 464.0, + 362.0, + 464.0, + 395.0, + 395.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 353.0, + 693.0, + 353.0, + 693.0, + 385.0, + 623.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 356.0, + 1064.0, + 356.0, + 1064.0, + 378.0, + 1011.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 406.0, + 688.0, + 406.0, + 688.0, + 437.0, + 595.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 389.0, + 1047.0, + 389.0, + 1047.0, + 417.0, + 958.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 409.0, + 1066.0, + 409.0, + 1066.0, + 422.0, + 1053.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 379.0, + 1243.0, + 379.0, + 1243.0, + 431.0, + 1150.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 427.0, + 471.0, + 427.0, + 471.0, + 458.0, + 386.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 434.0, + 679.0, + 434.0, + 679.0, + 461.0, + 600.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 452.0, + 477.0, + 452.0, + 477.0, + 479.0, + 377.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 476.0, + 462.0, + 476.0, + 462.0, + 507.0, + 392.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 472.0, + 958.0, + 472.0, + 958.0, + 498.0, + 729.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 497.0, + 952.0, + 497.0, + 952.0, + 521.0, + 736.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 225.0, + 1065.0, + 225.0, + 1065.0, + 263.0, + 953.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.25, + 274.0, + 1258.25, + 274.0, + 1258.25, + 304.5, + 1135.25, + 304.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.25, + 370.0, + 1081.25, + 370.0, + 1081.25, + 402.5, + 1030.25, + 402.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 415.5, + 778.0, + 415.5, + 778.0, + 457.5, + 739.0, + 457.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 405.5, + 1055.0, + 405.5, + 1055.0, + 436.5, + 1017.0, + 436.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 613.0, + 682.0, + 613.0, + 682.0, + 635.0, + 649.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 614.0, + 1176.0, + 614.0, + 1176.0, + 634.0, + 1157.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 637.0, + 594.0, + 637.0, + 594.0, + 673.0, + 528.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 638.0, + 941.0, + 638.0, + 941.0, + 670.0, + 822.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 638.0, + 1082.0, + 638.0, + 1082.0, + 650.0, + 1070.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 651.0, + 821.0, + 651.0, + 821.0, + 668.0, + 802.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 654.0, + 1203.0, + 654.0, + 1203.0, + 670.0, + 1184.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 665.0, + 624.0, + 665.0, + 624.0, + 698.0, + 498.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 665.0, + 751.0, + 665.0, + 751.0, + 680.0, + 715.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 665.0, + 772.0, + 665.0, + 772.0, + 680.0, + 752.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 663.0, + 942.0, + 663.0, + 942.0, + 700.0, + 820.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 671.0, + 1007.0, + 671.0, + 1007.0, + 676.0, + 1002.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 667.0, + 1062.0, + 667.0, + 1062.0, + 679.0, + 1046.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 662.0, + 1155.0, + 662.0, + 1155.0, + 682.0, + 1134.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 675.0, + 807.0, + 675.0, + 807.0, + 696.0, + 784.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 675.0, + 1186.0, + 675.0, + 1186.0, + 696.0, + 1165.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 687.0, + 740.0, + 687.0, + 740.0, + 702.0, + 721.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 700.0, + 631.0, + 700.0, + 631.0, + 721.0, + 609.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 700.0, + 666.0, + 700.0, + 666.0, + 708.0, + 654.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 697.0, + 687.0, + 697.0, + 687.0, + 708.0, + 670.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 694.0, + 1071.0, + 694.0, + 1071.0, + 711.0, + 1051.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 698.0, + 1180.0, + 698.0, + 1180.0, + 737.0, + 1082.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 708.0, + 756.0, + 708.0, + 756.0, + 742.0, + 660.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 733.0, + 799.0, + 733.0, + 799.0, + 766.0, + 617.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 724.0, + 1165.0, + 724.0, + 1165.0, + 769.0, + 966.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 660.0, + 683.0, + 660.0, + 683.0, + 684.5, + 610.0, + 684.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 784.0, + 1154.0, + 784.0, + 1154.0, + 824.0, + 545.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 539.0, + 1278.0, + 539.0, + 1278.0, + 584.0, + 419.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1006.0, + 943.0, + 1006.0, + 943.0, + 1041.0, + 294.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1261.0, + 1405.0, + 1261.0, + 1405.0, + 1299.0, + 294.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1294.0, + 1406.0, + 1294.0, + 1406.0, + 1330.0, + 295.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 1406.0, + 1324.0, + 1406.0, + 1360.0, + 294.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1354.0, + 1407.0, + 1354.0, + 1407.0, + 1391.0, + 291.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1386.0, + 1406.0, + 1386.0, + 1406.0, + 1422.0, + 294.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1418.0, + 1405.0, + 1418.0, + 1405.0, + 1450.0, + 295.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1445.0, + 1404.0, + 1445.0, + 1404.0, + 1482.0, + 292.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1475.0, + 1405.0, + 1475.0, + 1405.0, + 1512.0, + 292.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1506.0, + 1405.0, + 1506.0, + 1405.0, + 1546.0, + 292.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1538.0, + 1172.0, + 1538.0, + 1172.0, + 1572.0, + 294.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1102.0, + 295.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1092.0, + 1404.0, + 1092.0, + 1404.0, + 1130.0, + 293.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1158.0, + 293.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1153.0, + 1405.0, + 1153.0, + 1405.0, + 1190.0, + 293.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1185.0, + 1405.0, + 1185.0, + 1405.0, + 1219.0, + 295.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1217.0, + 707.0, + 1217.0, + 707.0, + 1249.0, + 296.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1778.0, + 297.0, + 1778.0, + 297.0, + 1821.0, + 293.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1778.0, + 386.0, + 1778.0, + 386.0, + 1821.0, + 333.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1778.0, + 851.0, + 1778.0, + 851.0, + 1821.0, + 450.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1778.0, + 944.0, + 1778.0, + 944.0, + 1821.0, + 891.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1778.0, + 1176.0, + 1778.0, + 1176.0, + 1821.0, + 1012.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1778.0, + 1408.0, + 1778.0, + 1408.0, + 1821.0, + 1206.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1814.0, + 432.0, + 1814.0, + 432.0, + 1847.0, + 295.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1814.0, + 1191.0, + 1814.0, + 1191.0, + 1847.0, + 563.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1814.0, + 1406.0, + 1814.0, + 1406.0, + 1847.0, + 1213.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1846.0, + 1145.0, + 1846.0, + 1145.0, + 1879.0, + 294.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1846.0, + 1406.0, + 1846.0, + 1406.0, + 1879.0, + 1180.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1876.0, + 882.0, + 1876.0, + 882.0, + 1909.0, + 294.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1876.0, + 1130.0, + 1876.0, + 1130.0, + 1909.0, + 945.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 875.0, + 1405.0, + 875.0, + 1405.0, + 913.0, + 294.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 908.0, + 1405.0, + 908.0, + 1405.0, + 942.0, + 295.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 938.0, + 655.0, + 938.0, + 655.0, + 972.0, + 295.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1579.0, + 1406.0, + 1579.0, + 1406.0, + 1622.0, + 293.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1613.0, + 922.0, + 1613.0, + 922.0, + 1649.0, + 294.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1921.0, + 1404.0, + 1921.0, + 1404.0, + 1957.0, + 295.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1953.0, + 1010.0, + 1953.0, + 1010.0, + 1987.0, + 294.0, + 1987.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 399, + 414, + 1299, + 414, + 1299, + 592, + 399, + 592 + ], + "score": 0.98, + "html": "
Modelcleanstep_llstep_FGSMiter_lliter_FGSMCW
R20M99.69.710.30.00.00
R20MK99.696.794.589.060.246
R20Mb (Ours)99.597.396.297.288.581
R20Mp (Ours)99.597.195.796.988.982
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1281, + 1404, + 1281, + 1404, + 1496, + 298, + 1496 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1590, + 1405, + 1590, + 1405, + 1927, + 298, + 1927 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 880, + 1405, + 880, + 1405, + 1005, + 298, + 1005 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1173, + 1404, + 1173, + 1404, + 1266, + 299, + 1266 + ], + "score": 0.975 + }, + { + "category_id": 6, + "poly": [ + 295, + 223, + 1405, + 223, + 1405, + 378, + 295, + 378 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 298, + 660, + 1400, + 660, + 1400, + 722, + 298, + 722 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 737, + 1398, + 737, + 1398, + 800, + 296, + 800 + ], + "score": 0.947 + }, + { + "category_id": 2, + "poly": [ + 298, + 1949, + 1402, + 1949, + 1402, + 2033, + 298, + 2033 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 489, + 811, + 1209, + 811, + 1209, + 855, + 489, + 855 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 298, + 1048, + 1024, + 1048, + 1024, + 1084, + 298, + 1084 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 302, + 1533, + 794, + 1533, + 794, + 1565, + 302, + 1565 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 301, + 1116, + 808, + 1116, + 808, + 1148, + 301, + 1148 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.757 + }, + { + "category_id": 13, + "poly": [ + 999, + 225, + 1138, + 225, + 1138, + 254, + 999, + 254 + ], + "score": 0.92, + "latex": "\\prime { \\epsilon } = 0 . 3 { ^ { * } } 2 5 5" + }, + { + "category_id": 13, + "poly": [ + 714, + 316, + 855, + 316, + 855, + 345, + 714, + 345 + ], + "score": 0.9, + "latex": "\\epsilon > 0 . 3 ^ { * } 2 5 5" + }, + { + "category_id": 13, + "poly": [ + 969, + 256, + 1064, + 256, + 1064, + 286, + 969, + 286 + ], + "score": 0.89, + "latex": "{ \\bf R } 2 0 { \\bf M } _ { B }" + }, + { + "category_id": 14, + "poly": [ + 489, + 811, + 1210, + 811, + 1210, + 854, + 489, + 854 + ], + "score": 0.89, + "latex": "L _ { d i s t } ( \\pmb { { E } } _ { i } ^ { a d v } | \\pmb { { E } } _ { i } ) = | | \\pmb { { E } } _ { i } ^ { a d v } - \\pmb { { E } } _ { i } | | _ { N } ^ { N } , \\quad N \\in { 1 , 2 \\quad i = 1 , 2 , . . . , k }" + }, + { + "category_id": 13, + "poly": [ + 500, + 255, + 597, + 255, + 597, + 285, + 500, + 285 + ], + "score": 0.89, + "latex": "{ \\mathrm { R } } 2 0 { \\mathrm { M } } _ { K }" + }, + { + "category_id": 13, + "poly": [ + 817, + 1406, + 862, + 1406, + 862, + 1435, + 817, + 1435 + ], + "score": 0.89, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 492, + 287, + 537, + 287, + 537, + 316, + 492, + 316 + ], + "score": 0.88, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 931, + 691, + 992, + 691, + 992, + 722, + 931, + 722 + ], + "score": 0.87, + "latex": "L _ { d i s t }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 257, + 1392, + 257, + 1392, + 286, + 1298, + 286 + ], + "score": 0.87, + "latex": "{ \\bf R } 2 0 { \\bf M } _ { P }" + }, + { + "category_id": 13, + "poly": [ + 848, + 691, + 920, + 691, + 920, + 720, + 848, + 720 + ], + "score": 0.86, + "latex": "N = 2" + }, + { + "category_id": 13, + "poly": [ + 585, + 1837, + 618, + 1837, + 618, + 1866, + 585, + 1866 + ], + "score": 0.86, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 399, + 661, + 471, + 661, + 471, + 690, + 399, + 690 + ], + "score": 0.84, + "latex": "N = 1" + }, + { + "category_id": 13, + "poly": [ + 1349, + 661, + 1404, + 661, + 1404, + 689, + 1349, + 689 + ], + "score": 0.84, + "latex": "N =" + }, + { + "category_id": 13, + "poly": [ + 623, + 226, + 666, + 226, + 666, + 255, + 623, + 255 + ], + "score": 0.82, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 1296, + 223, + 1394, + 223, + 1394, + 256, + 1296, + 256 + ], + "score": 0.67, + "latex": "\\{ { \\bf R } 2 0 { \\bf M }" + }, + { + "category_id": 13, + "poly": [ + 422, + 285, + 438, + 285, + 438, + 319, + 422, + 319 + ], + "score": 0.64, + "latex": "\\}" + }, + { + "category_id": 13, + "poly": [ + 1269, + 1720, + 1285, + 1720, + 1285, + 1741, + 1269, + 1741 + ], + "score": 0.63, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 422, + 1685, + 455, + 1685, + 455, + 1711, + 422, + 1711 + ], + "score": 0.61, + "latex": "^ { 1 = 2 }" + }, + { + "category_id": 13, + "poly": [ + 668, + 883, + 703, + 883, + 703, + 912, + 668, + 912 + ], + "score": 0.51, + "latex": "\\mathbf { \\mathcal { E } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 918, + 1622, + 978, + 1622, + 978, + 1651, + 918, + 1651 + ], + "score": 0.33, + "latex": "6 4 \\mathrm { x } 2" + }, + { + "category_id": 13, + "poly": [ + 362, + 1622, + 449, + 1622, + 449, + 1653, + 362, + 1653 + ], + "score": 0.32, + "latex": "\\left( 6 4 \\mathbf { x } 1 0 \\right)" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 222.0, + 622.0, + 222.0, + 622.0, + 258.0, + 293.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 222.0, + 998.0, + 222.0, + 998.0, + 258.0, + 667.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 222.0, + 1295.0, + 222.0, + 1295.0, + 258.0, + 1139.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 222.0, + 1405.0, + 222.0, + 1405.0, + 258.0, + 1395.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 250.0, + 499.0, + 250.0, + 499.0, + 293.0, + 293.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 250.0, + 968.0, + 250.0, + 968.0, + 293.0, + 598.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 250.0, + 1297.0, + 250.0, + 1297.0, + 293.0, + 1065.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 250.0, + 1405.0, + 250.0, + 1405.0, + 293.0, + 1393.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 285.0, + 421.0, + 285.0, + 421.0, + 318.0, + 297.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 285.0, + 491.0, + 285.0, + 491.0, + 318.0, + 439.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 285.0, + 1402.0, + 285.0, + 1402.0, + 318.0, + 538.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 314.0, + 713.0, + 314.0, + 713.0, + 351.0, + 293.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 314.0, + 1405.0, + 314.0, + 1405.0, + 351.0, + 856.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 344.0, + 571.0, + 344.0, + 571.0, + 382.0, + 294.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1945.0, + 1404.0, + 1945.0, + 1404.0, + 1982.0, + 331.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1978.0, + 1404.0, + 1978.0, + 1404.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2006.0, + 825.0, + 2006.0, + 825.0, + 2035.0, + 296.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1047.0, + 1024.0, + 1047.0, + 1024.0, + 1087.0, + 294.0, + 1087.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, + 1529.0, + 800.0, + 1529.0, + 800.0, + 1571.0, + 293.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1116.0, + 812.0, + 1116.0, + 812.0, + 1152.0, + 295.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1281.0, + 1404.0, + 1281.0, + 1404.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1312.0, + 1404.0, + 1312.0, + 1404.0, + 1348.0, + 295.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1343.0, + 1405.0, + 1343.0, + 1405.0, + 1376.0, + 293.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1374.0, + 1406.0, + 1374.0, + 1406.0, + 1409.0, + 293.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1401.0, + 816.0, + 1401.0, + 816.0, + 1439.0, + 294.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1401.0, + 1402.0, + 1401.0, + 1402.0, + 1439.0, + 863.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1433.0, + 1404.0, + 1433.0, + 1404.0, + 1472.0, + 292.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 670.0, + 1466.0, + 670.0, + 1498.0, + 293.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1626.0, + 295.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1622.0, + 361.0, + 1622.0, + 361.0, + 1657.0, + 295.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1622.0, + 917.0, + 1622.0, + 917.0, + 1657.0, + 450.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1622.0, + 1405.0, + 1622.0, + 1405.0, + 1657.0, + 979.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1648.0, + 1405.0, + 1648.0, + 1405.0, + 1690.0, + 292.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1682.0, + 421.0, + 1682.0, + 421.0, + 1719.0, + 293.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1682.0, + 1403.0, + 1682.0, + 1403.0, + 1719.0, + 456.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1711.0, + 1268.0, + 1711.0, + 1268.0, + 1749.0, + 293.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1749.0, + 1286.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 1405.0, + 1741.0, + 1405.0, + 1780.0, + 293.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1775.0, + 1405.0, + 1775.0, + 1405.0, + 1809.0, + 295.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1804.0, + 1405.0, + 1804.0, + 1405.0, + 1839.0, + 295.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1835.0, + 584.0, + 1835.0, + 584.0, + 1870.0, + 295.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1835.0, + 1403.0, + 1835.0, + 1403.0, + 1870.0, + 619.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1896.0, + 1162.0, + 1896.0, + 1162.0, + 1931.0, + 295.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 882.0, + 667.0, + 882.0, + 667.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 882.0, + 1403.0, + 882.0, + 1403.0, + 914.0, + 704.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 913.0, + 1405.0, + 913.0, + 1405.0, + 946.0, + 296.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 940.0, + 1406.0, + 940.0, + 1406.0, + 978.0, + 293.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 969.0, + 495.0, + 969.0, + 495.0, + 1011.0, + 293.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1174.0, + 1404.0, + 1174.0, + 1404.0, + 1207.0, + 297.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1205.0, + 1404.0, + 1205.0, + 1404.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1236.0, + 1288.0, + 1236.0, + 1288.0, + 1270.0, + 295.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 657.0, + 398.0, + 657.0, + 398.0, + 694.0, + 294.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 657.0, + 1348.0, + 657.0, + 1348.0, + 694.0, + 472.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 690.0, + 847.0, + 690.0, + 847.0, + 725.0, + 294.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 690.0, + 930.0, + 690.0, + 930.0, + 725.0, + 921.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 690.0, + 1195.0, + 690.0, + 1195.0, + 725.0, + 993.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 737.0, + 1403.0, + 737.0, + 1403.0, + 772.0, + 295.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 769.0, + 896.0, + 769.0, + 896.0, + 800.0, + 296.0, + 800.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 890, + 1003, + 890, + 1003, + 1285, + 299, + 1285 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1468, + 715, + 1468, + 715, + 1833, + 298, + 1833 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 296, + 254, + 1405, + 254, + 1405, + 555, + 296, + 555 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 295, + 580, + 1406, + 580, + 1406, + 765, + 295, + 765 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 737, + 1484, + 1401, + 1484, + 1401, + 1878, + 737, + 1878 + ], + "score": 0.954 + }, + { + "category_id": 4, + "poly": [ + 735, + 1904, + 1402, + 1904, + 1402, + 1998, + 735, + 1998 + ], + "score": 0.951 + }, + { + "category_id": 3, + "poly": [ + 1020, + 897, + 1390, + 897, + 1390, + 1171, + 1020, + 1171 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 301, + 829, + 695, + 829, + 695, + 860, + 301, + 860 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 298, + 1337, + 1018, + 1337, + 1018, + 1372, + 298, + 1372 + ], + "score": 0.9 + }, + { + "category_id": 4, + "poly": [ + 1059, + 1205, + 1355, + 1205, + 1355, + 1237, + 1059, + 1237 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 301, + 1409, + 739, + 1409, + 739, + 1440, + 301, + 1440 + ], + "score": 0.888 + }, + { + "category_id": 4, + "poly": [ + 297, + 1851, + 713, + 1851, + 713, + 2033, + 297, + 2033 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.785 + }, + { + "category_id": 1, + "poly": [ + 297, + 1851, + 713, + 1851, + 713, + 2033, + 297, + 2033 + ], + "score": 0.169 + }, + { + "category_id": 13, + "poly": [ + 375, + 981, + 407, + 981, + 407, + 1011, + 375, + 1011 + ], + "score": 0.88, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 665, + 1134, + 697, + 1134, + 697, + 1163, + 665, + 1163 + ], + "score": 0.88, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1342, + 672, + 1402, + 672, + 1402, + 700, + 1342, + 700 + ], + "score": 0.88, + "latex": "\\epsilon = 0" + }, + { + "category_id": 13, + "poly": [ + 326, + 703, + 401, + 703, + 401, + 732, + 326, + 732 + ], + "score": 0.87, + "latex": "\\epsilon = 7 6" + }, + { + "category_id": 13, + "poly": [ + 529, + 1042, + 561, + 1042, + 561, + 1072, + 529, + 1072 + ], + "score": 0.86, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 498, + 831, + 531, + 831, + 531, + 861, + 498, + 861 + ], + "score": 0.85, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 920, + 341, + 920, + 341, + 950, + 297, + 950 + ], + "score": 0.85, + "latex": "\\lambda _ { \\mathrm { 2 } } \\mathrm { s }" + }, + { + "category_id": 13, + "poly": [ + 970, + 1225, + 1002, + 1225, + 1002, + 1255, + 970, + 1255 + ], + "score": 0.85, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 410, + 703, + 539, + 703, + 539, + 733, + 410, + 733 + ], + "score": 0.82, + "latex": "( \\approx 0 . 3 ^ { * } 2 5 5 )" + }, + { + "category_id": 13, + "poly": [ + 1010, + 673, + 1075, + 673, + 1075, + 703, + 1010, + 703 + ], + "score": 0.81, + "latex": "( \\epsilon { + } 8 ) ," + }, + { + "category_id": 13, + "poly": [ + 1322, + 1205, + 1353, + 1205, + 1353, + 1235, + 1322, + 1235 + ], + "score": 0.8, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1329, + 585, + 1347, + 585, + 1347, + 609, + 1329, + 609 + ], + "score": 0.27, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 279.0, + 332.0, + 279.0, + 332.0, + 304.0, + 301.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 276.0, + 463.0, + 276.0, + 463.0, + 336.0, + 433.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 280.0, + 699.0, + 280.0, + 699.0, + 306.0, + 669.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 270.0, + 1068.0, + 270.0, + 1068.0, + 294.0, + 1038.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 265.0, + 1401.0, + 265.0, + 1401.0, + 487.0, + 1369.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 318.0, + 701.0, + 318.0, + 701.0, + 342.0, + 670.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 317.0, + 1067.0, + 317.0, + 1067.0, + 339.0, + 1048.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 323.0, + 1262.0, + 323.0, + 1262.0, + 338.0, + 1247.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 329.0, + 333.0, + 329.0, + 333.0, + 354.0, + 301.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 356.0, + 701.0, + 356.0, + 701.0, + 377.0, + 679.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 363.0, + 1067.0, + 363.0, + 1067.0, + 384.0, + 1048.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 374.0, + 1095.0, + 374.0, + 1095.0, + 384.0, + 1080.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 381.0, + 332.0, + 381.0, + 332.0, + 403.0, + 310.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 392.0, + 699.0, + 392.0, + 699.0, + 416.0, + 663.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 412.0, + 557.0, + 412.0, + 557.0, + 428.0, + 541.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 410.0, + 1066.0, + 410.0, + 1066.0, + 430.0, + 1041.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 426.0, + 701.0, + 426.0, + 701.0, + 453.0, + 662.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 423.0, + 834.0, + 423.0, + 834.0, + 491.0, + 809.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 428.0, + 1372.0, + 428.0, + 1372.0, + 435.0, + 1366.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 431.0, + 332.0, + 431.0, + 332.0, + 455.0, + 295.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 442.0, + 486.0, + 442.0, + 486.0, + 486.0, + 467.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 463.0, + 702.0, + 463.0, + 702.0, + 491.0, + 662.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 451.0, + 1070.0, + 451.0, + 1070.0, + 477.0, + 1029.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 457.0, + 1208.0, + 457.0, + 1208.0, + 480.0, + 1196.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 480.0, + 332.0, + 480.0, + 332.0, + 502.0, + 295.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 491.0, + 623.0, + 491.0, + 623.0, + 519.0, + 345.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 490.0, + 799.0, + 490.0, + 799.0, + 519.0, + 702.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 493.0, + 840.0, + 493.0, + 840.0, + 517.0, + 816.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 488.0, + 950.0, + 488.0, + 950.0, + 521.0, + 858.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 492.0, + 1114.0, + 492.0, + 1114.0, + 519.0, + 1070.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 491.0, + 1165.0, + 491.0, + 1165.0, + 519.0, + 1126.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 493.0, + 1213.0, + 493.0, + 1213.0, + 517.0, + 1189.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 493.0, + 1269.0, + 493.0, + 1269.0, + 515.0, + 1247.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 492.0, + 1330.0, + 492.0, + 1330.0, + 517.0, + 1300.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 523.0, + 550.0, + 523.0, + 550.0, + 556.0, + 412.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 520.0, + 921.0, + 520.0, + 921.0, + 560.0, + 779.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 521.0, + 1309.0, + 521.0, + 1309.0, + 561.0, + 1128.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.75, + 421.5, + 587.75, + 421.5, + 587.75, + 447.5, + 555.75, + 447.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 580.0, + 1328.0, + 580.0, + 1328.0, + 615.0, + 294.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 580.0, + 1406.0, + 580.0, + 1406.0, + 615.0, + 1348.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 613.0, + 1404.0, + 613.0, + 1404.0, + 645.0, + 297.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 641.0, + 1406.0, + 641.0, + 1406.0, + 676.0, + 297.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 672.0, + 1009.0, + 672.0, + 1009.0, + 704.0, + 297.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 672.0, + 1341.0, + 672.0, + 1341.0, + 704.0, + 1076.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 325.0, + 702.0, + 325.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 702.0, + 409.0, + 702.0, + 409.0, + 737.0, + 402.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 702.0, + 1406.0, + 702.0, + 1406.0, + 737.0, + 540.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 732.0, + 1380.0, + 732.0, + 1380.0, + 768.0, + 295.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1504.0, + 1311.0, + 1504.0, + 1311.0, + 1531.0, + 1133.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1518.0, + 801.0, + 1518.0, + 801.0, + 1548.0, + 752.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1518.0, + 1132.0, + 1518.0, + 1132.0, + 1547.0, + 1082.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1518.0, + 1307.0, + 1518.0, + 1307.0, + 1547.0, + 1138.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1538.0, + 1313.0, + 1538.0, + 1313.0, + 1565.0, + 1129.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1558.0, + 803.0, + 1558.0, + 803.0, + 1589.0, + 751.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1555.0, + 1311.0, + 1555.0, + 1311.0, + 1588.0, + 1082.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1569.0, + 1330.0, + 1569.0, + 1330.0, + 1601.0, + 1128.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1570.0, + 825.0, + 1570.0, + 825.0, + 1726.0, + 717.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 1597.0, + 1091.0, + 1597.0, + 1091.0, + 1697.0, + 1065.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1601.0, + 1132.0, + 1601.0, + 1132.0, + 1629.0, + 1081.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1640.0, + 800.0, + 1640.0, + 800.0, + 1667.0, + 749.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1651.0, + 819.0, + 1651.0, + 819.0, + 1664.0, + 807.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1642.0, + 1131.0, + 1642.0, + 1131.0, + 1668.0, + 1083.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1679.0, + 802.0, + 1679.0, + 802.0, + 1712.0, + 751.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1681.0, + 1132.0, + 1681.0, + 1132.0, + 1710.0, + 1082.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1720.0, + 803.0, + 1720.0, + 803.0, + 1753.0, + 751.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1728.0, + 1049.0, + 1728.0, + 1049.0, + 1752.0, + 861.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1720.0, + 1135.0, + 1720.0, + 1135.0, + 1752.0, + 1081.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1743.0, + 1050.0, + 1743.0, + 1050.0, + 1770.0, + 878.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1760.0, + 804.0, + 1760.0, + 804.0, + 1793.0, + 751.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1759.0, + 1069.0, + 1759.0, + 1069.0, + 1788.0, + 865.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1761.0, + 1134.0, + 1761.0, + 1134.0, + 1793.0, + 1080.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1789.0, + 823.0, + 1789.0, + 823.0, + 1812.0, + 801.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1789.0, + 859.0, + 1789.0, + 859.0, + 1812.0, + 825.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1789.0, + 893.0, + 1789.0, + 893.0, + 1811.0, + 871.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1788.0, + 928.0, + 1788.0, + 928.0, + 1811.0, + 907.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1786.0, + 1072.0, + 1786.0, + 1072.0, + 1813.0, + 934.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1785.0, + 1402.0, + 1785.0, + 1402.0, + 1815.0, + 1128.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1810.0, + 945.0, + 1810.0, + 945.0, + 1836.0, + 922.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1810.0, + 1275.0, + 1810.0, + 1275.0, + 1836.0, + 1252.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1849.0, + 1053.0, + 1849.0, + 1053.0, + 1879.0, + 761.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1848.0, + 1395.0, + 1848.0, + 1395.0, + 1880.0, + 1070.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1903.0, + 1405.0, + 1903.0, + 1405.0, + 1937.0, + 734.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1933.0, + 1405.0, + 1933.0, + 1405.0, + 1968.0, + 734.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1964.0, + 1391.0, + 1964.0, + 1391.0, + 2000.0, + 734.0, + 2000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 893.0, + 1087.0, + 893.0, + 1087.0, + 1093.0, + 1033.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 934.0, + 1051.0, + 934.0, + 1051.0, + 1087.0, + 1013.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1029.0, + 1230.0, + 1029.0, + 1230.0, + 1053.0, + 1174.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1038.0, + 1173.0, + 1038.0, + 1173.0, + 1049.0, + 1159.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1045.0, + 1279.0, + 1045.0, + 1279.0, + 1076.0, + 1171.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1059.0, + 1175.0, + 1059.0, + 1175.0, + 1069.0, + 1156.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1068.0, + 1316.0, + 1068.0, + 1316.0, + 1096.0, + 1172.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1081.0, + 1079.0, + 1081.0, + 1079.0, + 1112.0, + 1041.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1083.0, + 1172.0, + 1083.0, + 1172.0, + 1090.0, + 1160.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1090.0, + 1310.0, + 1090.0, + 1310.0, + 1118.0, + 1172.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1106.0, + 1079.0, + 1106.0, + 1079.0, + 1137.0, + 1041.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1120.0, + 1118.0, + 1120.0, + 1118.0, + 1149.0, + 1064.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1120.0, + 1349.0, + 1120.0, + 1349.0, + 1148.0, + 1286.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1142.0, + 1251.0, + 1142.0, + 1251.0, + 1177.0, + 1213.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1116.5, + 1240.0, + 1116.5, + 1240.0, + 1150.5, + 1172.0, + 1150.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 825.0, + 497.0, + 825.0, + 497.0, + 867.0, + 293.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 825.0, + 701.0, + 825.0, + 701.0, + 867.0, + 532.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1332.0, + 1021.0, + 1332.0, + 1021.0, + 1378.0, + 291.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1198.0, + 1321.0, + 1198.0, + 1321.0, + 1245.0, + 1056.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1198.0, + 1357.0, + 1198.0, + 1357.0, + 1245.0, + 1354.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 744.0, + 1406.0, + 744.0, + 1445.0, + 294.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1851.0, + 715.0, + 1851.0, + 715.0, + 1882.0, + 297.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 716.0, + 1881.0, + 716.0, + 1912.0, + 295.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 717.0, + 1910.0, + 717.0, + 1942.0, + 295.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 717.0, + 1942.0, + 717.0, + 1973.0, + 295.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 716.0, + 1972.0, + 716.0, + 2004.0, + 295.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 717.0, + 2000.0, + 717.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 888.0, + 1005.0, + 888.0, + 1005.0, + 923.0, + 296.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 917.0, + 1005.0, + 917.0, + 1005.0, + 955.0, + 342.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 948.0, + 1007.0, + 948.0, + 1007.0, + 985.0, + 294.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 979.0, + 374.0, + 979.0, + 374.0, + 1016.0, + 293.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 979.0, + 1006.0, + 979.0, + 1006.0, + 1016.0, + 408.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1012.0, + 1005.0, + 1012.0, + 1005.0, + 1044.0, + 294.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1043.0, + 528.0, + 1043.0, + 528.0, + 1074.0, + 294.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1043.0, + 1007.0, + 1043.0, + 1007.0, + 1074.0, + 562.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1072.0, + 1006.0, + 1072.0, + 1006.0, + 1104.0, + 295.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1103.0, + 1005.0, + 1103.0, + 1005.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1134.0, + 664.0, + 1134.0, + 664.0, + 1166.0, + 296.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1134.0, + 1006.0, + 1134.0, + 1006.0, + 1166.0, + 698.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1165.0, + 1005.0, + 1165.0, + 1005.0, + 1197.0, + 296.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1195.0, + 1005.0, + 1195.0, + 1005.0, + 1227.0, + 296.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 969.0, + 1222.0, + 969.0, + 1261.0, + 295.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1256.0, + 780.0, + 1256.0, + 780.0, + 1288.0, + 296.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1465.0, + 716.0, + 1465.0, + 716.0, + 1502.0, + 296.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1499.0, + 716.0, + 1499.0, + 716.0, + 1530.0, + 296.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1529.0, + 716.0, + 1529.0, + 716.0, + 1560.0, + 295.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1559.0, + 716.0, + 1559.0, + 716.0, + 1591.0, + 296.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1590.0, + 717.0, + 1590.0, + 717.0, + 1622.0, + 296.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1619.0, + 717.0, + 1619.0, + 717.0, + 1651.0, + 296.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1651.0, + 716.0, + 1651.0, + 716.0, + 1682.0, + 295.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1681.0, + 717.0, + 1681.0, + 717.0, + 1713.0, + 295.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1713.0, + 717.0, + 1713.0, + 717.0, + 1744.0, + 292.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 717.0, + 1742.0, + 717.0, + 1774.0, + 294.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1772.0, + 717.0, + 1772.0, + 717.0, + 1805.0, + 295.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1803.0, + 574.0, + 1803.0, + 574.0, + 1835.0, + 296.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1851.0, + 715.0, + 1851.0, + 715.0, + 1882.0, + 297.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 716.0, + 1881.0, + 716.0, + 1912.0, + 295.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 717.0, + 1910.0, + 717.0, + 1942.0, + 295.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 717.0, + 1942.0, + 717.0, + 1973.0, + 295.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 716.0, + 1972.0, + 716.0, + 2004.0, + 295.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 717.0, + 2000.0, + 717.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 368, + 414, + 1334, + 414, + 1334, + 710, + 368, + 710 + ], + "score": 0.982, + "html": "
Modelcleanstep_llstep_FGSMiter_FGSMCW
e=2∈=16e=2∈=16e=2∈=4∈=2e=4
R110K92.388.390.786.095.259.49.2254
R110p (Ours)92.386.089.481.691.664.120.9327
R110E92.386.374.384.172.963.521.1246
R110k,c (Ours)92.386.272.882.666.769.333.4205
R110p,ε (Ours)91.384.065.777.654.566.838.33816
R110p,c (Ours)91.585.776.482.469.173.542.52715
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1130, + 1404, + 1130, + 1404, + 1435, + 298, + 1435 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1452, + 1404, + 1452, + 1404, + 1666, + 298, + 1666 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 795, + 1404, + 795, + 1404, + 1010, + 298, + 1010 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1403, + 1850, + 1403, + 2033, + 298, + 2033 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1681, + 1402, + 1681, + 1402, + 1835, + 299, + 1835 + ], + "score": 0.977 + }, + { + "category_id": 6, + "poly": [ + 295, + 222, + 1405, + 222, + 1405, + 380, + 295, + 380 + ], + "score": 0.969 + }, + { + "category_id": 0, + "poly": [ + 302, + 1065, + 740, + 1065, + 740, + 1097, + 302, + 1097 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.634 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.239 + }, + { + "category_id": 13, + "poly": [ + 817, + 1483, + 901, + 1483, + 901, + 1513, + 817, + 1513 + ], + "score": 0.9, + "latex": "\\mathrm { R } 1 1 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 581, + 286, + 680, + 286, + 680, + 318, + 581, + 318 + ], + "score": 0.89, + "latex": "\\{ \\mathrm { R 1 1 0 } _ { K }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 225, + 1169, + 225, + 1169, + 255, + 1122, + 255 + ], + "score": 0.89, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 566, + 1514, + 649, + 1514, + 649, + 1544, + 566, + 1544 + ], + "score": 0.88, + "latex": "\\mathrm { R } 1 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1483, + 380, + 1483, + 380, + 1514, + 296, + 1514 + ], + "score": 0.88, + "latex": "\\mathrm { R } 1 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 297, + 286, + 371, + 286, + 371, + 314, + 297, + 314 + ], + "score": 0.88, + "latex": "\\epsilon > 2" + }, + { + "category_id": 13, + "poly": [ + 1075, + 286, + 1158, + 286, + 1158, + 316, + 1075, + 316 + ], + "score": 0.87, + "latex": "\\mathrm { R } 1 1 0 _ { E }" + }, + { + "category_id": 13, + "poly": [ + 835, + 286, + 918, + 286, + 918, + 316, + 835, + 316 + ], + "score": 0.86, + "latex": "\\mathrm { R } 1 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 761, + 1851, + 873, + 1851, + 873, + 1884, + 761, + 1884 + ], + "score": 0.85, + "latex": "( \\mathrm { R } 1 1 0 _ { P , E }" + }, + { + "category_id": 13, + "poly": [ + 942, + 1743, + 1039, + 1743, + 1039, + 1774, + 942, + 1774 + ], + "score": 0.85, + "latex": "( \\mathrm { R } 1 1 0 _ { K } )" + }, + { + "category_id": 13, + "poly": [ + 820, + 317, + 926, + 317, + 926, + 349, + 820, + 349 + ], + "score": 0.84, + "latex": "\\mathrm { R 1 1 0 } _ { P , E }" + }, + { + "category_id": 13, + "poly": [ + 297, + 348, + 404, + 348, + 404, + 381, + 297, + 381 + ], + "score": 0.84, + "latex": "\\mathrm { R 1 1 0 } _ { P , C }" + }, + { + "category_id": 13, + "poly": [ + 296, + 317, + 408, + 317, + 408, + 348, + 296, + 348 + ], + "score": 0.84, + "latex": "\\mathrm { R 1 1 0 } _ { K , C }" + }, + { + "category_id": 13, + "poly": [ + 1074, + 1883, + 1120, + 1883, + 1120, + 1911, + 1074, + 1911 + ], + "score": 0.83, + "latex": "\\epsilon { = } 4" + }, + { + "category_id": 13, + "poly": [ + 884, + 1851, + 996, + 1851, + 996, + 1884, + 884, + 1884 + ], + "score": 0.81, + "latex": "\\operatorname { R 1 1 0 } _ { P , C } )" + }, + { + "category_id": 13, + "poly": [ + 656, + 226, + 701, + 226, + 701, + 256, + 656, + 256 + ], + "score": 0.8, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 1038, + 1514, + 1185, + 1514, + 1185, + 1544, + 1038, + 1544 + ], + "score": 0.55, + "latex": "\\epsilon = 1 , 2 , . . . , 1 6" + }, + { + "category_id": 13, + "poly": [ + 607, + 318, + 634, + 318, + 634, + 344, + 607, + 344 + ], + "score": 0.38, + "latex": "C" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 224.0, + 655.0, + 224.0, + 655.0, + 258.0, + 295.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 224.0, + 1121.0, + 224.0, + 1121.0, + 258.0, + 702.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 224.0, + 1403.0, + 224.0, + 1403.0, + 258.0, + 1170.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 254.0, + 1403.0, + 254.0, + 1403.0, + 288.0, + 294.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 282.0, + 296.0, + 282.0, + 296.0, + 323.0, + 292.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 282.0, + 580.0, + 282.0, + 580.0, + 323.0, + 372.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 282.0, + 834.0, + 282.0, + 834.0, + 323.0, + 681.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 282.0, + 1074.0, + 282.0, + 1074.0, + 323.0, + 919.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 282.0, + 1405.0, + 282.0, + 1405.0, + 323.0, + 1159.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 313.0, + 606.0, + 313.0, + 606.0, + 351.0, + 409.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 313.0, + 819.0, + 313.0, + 819.0, + 351.0, + 635.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 313.0, + 1406.0, + 313.0, + 1406.0, + 351.0, + 927.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 343.0, + 296.0, + 343.0, + 296.0, + 383.0, + 293.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 343.0, + 797.0, + 343.0, + 797.0, + 383.0, + 405.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1064.0, + 745.0, + 1064.0, + 745.0, + 1101.0, + 295.0, + 1101.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, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1132.0, + 1402.0, + 1132.0, + 1402.0, + 1164.0, + 297.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 1404.0, + 1161.0, + 1404.0, + 1196.0, + 294.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1190.0, + 1406.0, + 1190.0, + 1406.0, + 1227.0, + 292.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 1406.0, + 1223.0, + 1406.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 1406.0, + 1252.0, + 1406.0, + 1288.0, + 294.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1285.0, + 1406.0, + 1285.0, + 1406.0, + 1317.0, + 296.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1313.0, + 1406.0, + 1313.0, + 1406.0, + 1347.0, + 293.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1345.0, + 1406.0, + 1345.0, + 1406.0, + 1380.0, + 294.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1376.0, + 1404.0, + 1376.0, + 1404.0, + 1408.0, + 296.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1407.0, + 446.0, + 1407.0, + 446.0, + 1438.0, + 294.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1454.0, + 1401.0, + 1454.0, + 1401.0, + 1484.0, + 296.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1480.0, + 295.0, + 1480.0, + 295.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1480.0, + 816.0, + 1480.0, + 816.0, + 1516.0, + 381.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1516.0, + 902.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 565.0, + 1514.0, + 565.0, + 1548.0, + 294.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1514.0, + 1037.0, + 1514.0, + 1037.0, + 1548.0, + 650.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1514.0, + 1405.0, + 1514.0, + 1405.0, + 1548.0, + 1186.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1546.0, + 1402.0, + 1546.0, + 1402.0, + 1576.0, + 296.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1575.0, + 1404.0, + 1575.0, + 1404.0, + 1606.0, + 296.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1604.0, + 1405.0, + 1604.0, + 1405.0, + 1639.0, + 294.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1635.0, + 625.0, + 1635.0, + 625.0, + 1669.0, + 294.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 1405.0, + 794.0, + 1405.0, + 830.0, + 293.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 827.0, + 1404.0, + 827.0, + 1404.0, + 859.0, + 295.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 857.0, + 1405.0, + 857.0, + 1405.0, + 890.0, + 293.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 885.0, + 1404.0, + 885.0, + 1404.0, + 925.0, + 293.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 916.0, + 1405.0, + 916.0, + 1405.0, + 953.0, + 293.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 950.0, + 1404.0, + 950.0, + 1404.0, + 981.0, + 296.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 538.0, + 980.0, + 538.0, + 1014.0, + 294.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 760.0, + 1848.0, + 760.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1848.0, + 883.0, + 1848.0, + 883.0, + 1886.0, + 874.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1886.0, + 997.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1073.0, + 1880.0, + 1073.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1918.0, + 1121.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2007.0, + 292.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 753.0, + 2003.0, + 753.0, + 2035.0, + 293.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1683.0, + 1403.0, + 1683.0, + 1403.0, + 1716.0, + 298.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1712.0, + 1404.0, + 1712.0, + 1404.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1741.0, + 941.0, + 1741.0, + 941.0, + 1778.0, + 292.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1778.0, + 1040.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1406.0, + 1773.0, + 1406.0, + 1810.0, + 294.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 742.0, + 1803.0, + 742.0, + 1841.0, + 294.0, + 1841.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1143, + 1404, + 1143, + 1404, + 1420, + 298, + 1420 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 323, + 385, + 1379, + 385, + 1379, + 667, + 323, + 667 + ], + "score": 0.982, + "html": "
TargetSource: iter_FGSM
R1102R110K2R110E2R110p2R110K,C2R110p,E2R110p,C2
R110K70.573.227.977.067.354.680.8
R110E77.979.555.879.068.254.782.7
R110p (Ours)75.975.639.678.568.361.383.3
R110k,c (Ours)56.480.261.179.567.462.682.1
R110p,E (Ours)78.282.167.781.773.468.483.8
R110p,C (Ours)71.980.463.980.171.164.283.0
" + }, + { + "category_id": 1, + "poly": [ + 297, + 750, + 1405, + 750, + 1405, + 1027, + 297, + 1027 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1435, + 1402, + 1435, + 1402, + 1561, + 299, + 1561 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1807, + 1402, + 1807, + 1402, + 1929, + 298, + 1929 + ], + "score": 0.971 + }, + { + "category_id": 6, + "poly": [ + 297, + 223, + 1403, + 223, + 1403, + 348, + 297, + 348 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1403, + 1977, + 1403, + 2033, + 296, + 2033 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 298, + 1576, + 1404, + 1576, + 1404, + 1793, + 298, + 1793 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 302, + 1081, + 741, + 1081, + 741, + 1112, + 302, + 1112 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.8 + }, + { + "category_id": 6, + "poly": [ + 844, + 387, + 1065, + 387, + 1065, + 418, + 844, + 418 + ], + "score": 0.108 + }, + { + "category_id": 13, + "poly": [ + 454, + 813, + 561, + 813, + 561, + 846, + 454, + 846 + ], + "score": 0.9, + "latex": "\\mathrm { R 1 1 0 } _ { P , C }" + }, + { + "category_id": 13, + "poly": [ + 296, + 813, + 404, + 813, + 404, + 846, + 296, + 846 + ], + "score": 0.9, + "latex": "\\mathrm { R 1 1 0 } _ { P , E }" + }, + { + "category_id": 13, + "poly": [ + 396, + 1669, + 524, + 1669, + 524, + 1702, + 396, + 1702 + ], + "score": 0.88, + "latex": "( \\mathrm { R } 1 1 0 _ { K , C } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 1838, + 412, + 1838, + 412, + 1871, + 296, + 1871 + ], + "score": 0.88, + "latex": "\\mathrm { R 1 1 0 } _ { P , C } )" + }, + { + "category_id": 13, + "poly": [ + 732, + 255, + 817, + 255, + 817, + 286, + 732, + 286 + ], + "score": 0.88, + "latex": "\\mathrm { R } 1 1 0 _ { K }" + }, + { + "category_id": 13, + "poly": [ + 1280, + 1808, + 1393, + 1808, + 1393, + 1841, + 1280, + 1841 + ], + "score": 0.86, + "latex": "( \\mathrm { R } 1 1 0 _ { P , E }" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1436, + 1108, + 1436, + 1108, + 1467, + 1008, + 1467 + ], + "score": 0.86, + "latex": "( \\mathrm { R } 1 1 0 _ { E 2 }" + }, + { + "category_id": 13, + "poly": [ + 698, + 1700, + 788, + 1700, + 788, + 1731, + 698, + 1731 + ], + "score": 0.84, + "latex": "\\mathbf { ( R 1 1 0 _ { 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 650, + 226, + 694, + 226, + 694, + 255, + 650, + 255 + ], + "score": 0.83, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1436, + 1247, + 1436, + 1247, + 1469, + 1119, + 1469 + ], + "score": 0.81, + "latex": "\\mathrm { R 1 1 0 } _ { P , E 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1320, + 225, + 1392, + 225, + 1392, + 255, + 1320, + 255 + ], + "score": 0.76, + "latex": "\\left( \\epsilon = 1 6 \\right)" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 222.0, + 649.0, + 222.0, + 649.0, + 257.0, + 294.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 222.0, + 1319.0, + 222.0, + 1319.0, + 257.0, + 695.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 222.0, + 1404.0, + 222.0, + 1404.0, + 257.0, + 1393.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 255.0, + 731.0, + 255.0, + 731.0, + 288.0, + 299.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 255.0, + 1405.0, + 255.0, + 1405.0, + 288.0, + 818.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 287.0, + 1405.0, + 287.0, + 1405.0, + 317.0, + 293.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 316.0, + 1368.0, + 316.0, + 1368.0, + 349.0, + 295.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2012.0, + 327.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 457.0, + 2001.0, + 457.0, + 2037.0, + 292.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1076.0, + 747.0, + 1076.0, + 747.0, + 1117.0, + 293.0, + 1117.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, + 2117.0, + 838.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 384.0, + 1067.0, + 384.0, + 1067.0, + 423.0, + 841.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1144.0, + 1405.0, + 1144.0, + 1405.0, + 1177.0, + 297.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1175.0, + 1404.0, + 1175.0, + 1404.0, + 1208.0, + 294.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1206.0, + 1405.0, + 1206.0, + 1405.0, + 1238.0, + 294.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1236.0, + 1405.0, + 1236.0, + 1405.0, + 1272.0, + 294.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 1406.0, + 1263.0, + 1406.0, + 1304.0, + 295.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 1405.0, + 1296.0, + 1405.0, + 1333.0, + 294.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1327.0, + 1402.0, + 1327.0, + 1402.0, + 1360.0, + 296.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1394.0, + 293.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1388.0, + 1023.0, + 1388.0, + 1023.0, + 1423.0, + 293.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 748.0, + 1406.0, + 748.0, + 1406.0, + 788.0, + 294.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 782.0, + 1402.0, + 782.0, + 1402.0, + 815.0, + 295.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 813.0, + 453.0, + 813.0, + 453.0, + 849.0, + 405.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 813.0, + 1405.0, + 813.0, + 1405.0, + 849.0, + 562.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 841.0, + 1406.0, + 841.0, + 1406.0, + 877.0, + 292.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 874.0, + 1403.0, + 874.0, + 1403.0, + 911.0, + 295.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 900.0, + 1405.0, + 900.0, + 1405.0, + 941.0, + 294.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 930.0, + 1405.0, + 930.0, + 1405.0, + 974.0, + 292.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 960.0, + 1406.0, + 960.0, + 1406.0, + 1002.0, + 292.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 993.0, + 1049.0, + 993.0, + 1049.0, + 1034.0, + 294.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1432.0, + 1007.0, + 1432.0, + 1007.0, + 1471.0, + 294.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1432.0, + 1118.0, + 1432.0, + 1118.0, + 1471.0, + 1109.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1432.0, + 1403.0, + 1432.0, + 1403.0, + 1471.0, + 1248.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1470.0, + 1406.0, + 1470.0, + 1406.0, + 1503.0, + 293.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1500.0, + 1406.0, + 1500.0, + 1406.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1531.0, + 1298.0, + 1531.0, + 1298.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1801.0, + 1279.0, + 1801.0, + 1279.0, + 1846.0, + 292.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1801.0, + 1408.0, + 1801.0, + 1408.0, + 1846.0, + 1394.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1834.0, + 295.0, + 1834.0, + 295.0, + 1873.0, + 291.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1834.0, + 1406.0, + 1834.0, + 1406.0, + 1873.0, + 413.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1868.0, + 1406.0, + 1868.0, + 1406.0, + 1904.0, + 293.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1897.0, + 378.0, + 1897.0, + 378.0, + 1932.0, + 292.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1576.0, + 1406.0, + 1576.0, + 1406.0, + 1611.0, + 293.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1609.0, + 1402.0, + 1609.0, + 1402.0, + 1640.0, + 294.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1640.0, + 1402.0, + 1640.0, + 1402.0, + 1671.0, + 296.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1668.0, + 395.0, + 1668.0, + 395.0, + 1703.0, + 293.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1668.0, + 1402.0, + 1668.0, + 1402.0, + 1703.0, + 525.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1697.0, + 697.0, + 1697.0, + 697.0, + 1735.0, + 293.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1697.0, + 1406.0, + 1697.0, + 1406.0, + 1735.0, + 789.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1729.0, + 1404.0, + 1729.0, + 1404.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1760.0, + 1152.0, + 1760.0, + 1152.0, + 1798.0, + 293.0, + 1798.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 556, + 1403, + 556, + 1403, + 740, + 299, + 740 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 835, + 1404, + 835, + 1404, + 989, + 299, + 989 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 296, + 1404, + 296, + 1404, + 540, + 298, + 540 + ], + "score": 0.968 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 299, + 226, + 543, + 226, + 543, + 261, + 299, + 261 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 301, + 781, + 557, + 781, + 557, + 810, + 301, + 810 + ], + "score": 0.872 + }, + { + "category_id": 0, + "poly": [ + 300, + 1037, + 488, + 1037, + 488, + 1069, + 300, + 1069 + ], + "score": 0.866 + }, + { + "category_id": 1, + "poly": [ + 298, + 1089, + 1402, + 1089, + 1402, + 1151, + 298, + 1151 + ], + "score": 0.792 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.768 + }, + { + "category_id": 1, + "poly": [ + 298, + 1172, + 1401, + 1172, + 1401, + 1265, + 298, + 1265 + ], + "score": 0.629 + }, + { + "category_id": 1, + "poly": [ + 294, + 1740, + 1403, + 1740, + 1403, + 1805, + 294, + 1805 + ], + "score": 0.605 + }, + { + "category_id": 1, + "poly": [ + 297, + 1824, + 1401, + 1824, + 1401, + 1919, + 297, + 1919 + ], + "score": 0.587 + }, + { + "category_id": 1, + "poly": [ + 295, + 1572, + 1400, + 1572, + 1400, + 1636, + 295, + 1636 + ], + "score": 0.568 + }, + { + "category_id": 1, + "poly": [ + 296, + 1655, + 1396, + 1655, + 1396, + 1721, + 296, + 1721 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 297, + 1517, + 1372, + 1517, + 1372, + 1553, + 297, + 1553 + ], + "score": 0.559 + }, + { + "category_id": 1, + "poly": [ + 297, + 1433, + 1395, + 1433, + 1395, + 1498, + 297, + 1498 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1401, + 1942, + 1401, + 2033, + 299, + 2033 + ], + "score": 0.407 + }, + { + "category_id": 1, + "poly": [ + 297, + 1287, + 1402, + 1287, + 1402, + 1412, + 297, + 1412 + ], + "score": 0.317 + }, + { + "category_id": 13, + "poly": [ + 1286, + 454, + 1309, + 454, + 1309, + 478, + 1286, + 478 + ], + "score": 0.76, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 222.0, + 548.0, + 222.0, + 548.0, + 270.0, + 292.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 782.0, + 558.0, + 782.0, + 558.0, + 812.0, + 299.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1037.0, + 490.0, + 1037.0, + 490.0, + 1073.0, + 296.0, + 1073.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, + 555.0, + 1405.0, + 555.0, + 1405.0, + 591.0, + 295.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 583.0, + 1407.0, + 583.0, + 1407.0, + 625.0, + 293.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 616.0, + 1405.0, + 616.0, + 1405.0, + 652.0, + 294.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 649.0, + 1405.0, + 649.0, + 1405.0, + 681.0, + 297.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 677.0, + 1405.0, + 677.0, + 1405.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 709.0, + 604.0, + 709.0, + 604.0, + 742.0, + 294.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 837.0, + 1404.0, + 837.0, + 1404.0, + 870.0, + 297.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 868.0, + 1404.0, + 868.0, + 1404.0, + 901.0, + 295.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 896.0, + 1405.0, + 896.0, + 1405.0, + 932.0, + 292.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 925.0, + 1405.0, + 925.0, + 1405.0, + 968.0, + 290.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 960.0, + 1158.0, + 960.0, + 1158.0, + 993.0, + 295.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 294.0, + 1405.0, + 294.0, + 1405.0, + 333.0, + 295.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 325.0, + 1405.0, + 325.0, + 1405.0, + 364.0, + 292.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 358.0, + 1402.0, + 358.0, + 1402.0, + 392.0, + 293.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 388.0, + 1402.0, + 388.0, + 1402.0, + 422.0, + 296.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 416.0, + 1405.0, + 416.0, + 1405.0, + 456.0, + 293.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 450.0, + 1285.0, + 450.0, + 1285.0, + 484.0, + 294.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 450.0, + 1404.0, + 450.0, + 1404.0, + 484.0, + 1310.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 482.0, + 1404.0, + 482.0, + 1404.0, + 512.0, + 296.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 510.0, + 727.0, + 510.0, + 727.0, + 540.0, + 296.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1088.0, + 1406.0, + 1088.0, + 1406.0, + 1124.0, + 294.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1119.0, + 808.0, + 1119.0, + 808.0, + 1153.0, + 323.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1171.0, + 1405.0, + 1171.0, + 1405.0, + 1209.0, + 293.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1202.0, + 1406.0, + 1202.0, + 1406.0, + 1241.0, + 321.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1229.0, + 401.0, + 1229.0, + 401.0, + 1270.0, + 321.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 1405.0, + 1742.0, + 1405.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1771.0, + 813.0, + 1771.0, + 813.0, + 1807.0, + 322.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1823.0, + 1405.0, + 1823.0, + 1405.0, + 1862.0, + 292.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1892.0, + 322.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1889.0, + 553.0, + 1889.0, + 553.0, + 1920.0, + 325.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1608.0, + 296.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1603.0, + 1314.0, + 1603.0, + 1314.0, + 1637.0, + 322.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1652.0, + 1400.0, + 1652.0, + 1400.0, + 1695.0, + 295.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1688.0, + 687.0, + 1688.0, + 687.0, + 1720.0, + 326.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1517.0, + 1371.0, + 1517.0, + 1371.0, + 1556.0, + 297.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1433.0, + 1400.0, + 1433.0, + 1400.0, + 1469.0, + 294.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1462.0, + 1323.0, + 1462.0, + 1323.0, + 1500.0, + 321.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1403.0, + 1942.0, + 1403.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1971.0, + 1401.0, + 1971.0, + 1401.0, + 2007.0, + 323.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 772.0, + 2003.0, + 772.0, + 2035.0, + 324.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1286.0, + 1406.0, + 1286.0, + 1406.0, + 1327.0, + 292.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1320.0, + 1403.0, + 1320.0, + 1403.0, + 1353.0, + 322.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1348.0, + 1407.0, + 1348.0, + 1407.0, + 1383.0, + 321.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1381.0, + 970.0, + 1381.0, + 970.0, + 1414.0, + 322.0, + 1414.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 300, + 229, + 1403, + 229, + 1403, + 384, + 300, + 384 + ], + "score": 0.957 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 865, + 2089, + 865, + 2112, + 836, + 2112 + ], + "score": 0.832 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.824 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 1403.0, + 227.0, + 1403.0, + 268.0, + 296.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 297.0, + 323.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 292.0, + 1404.0, + 292.0, + 1404.0, + 325.0, + 320.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 318.0, + 1402.0, + 318.0, + 1402.0, + 356.0, + 320.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 350.0, + 677.0, + 350.0, + 677.0, + 386.0, + 323.0, + 386.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 433, + 1403, + 433, + 1403, + 587, + 299, + 587 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 296, + 1402, + 296, + 1402, + 418, + 299, + 418 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 839, + 1403, + 839, + 1403, + 994, + 299, + 994 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 602, + 1404, + 602, + 1404, + 727, + 298, + 727 + ], + "score": 0.975 + }, + { + "category_id": 2, + "poly": [ + 297, + 1949, + 1404, + 1949, + 1404, + 2032, + 297, + 2032 + ], + "score": 0.953 + }, + { + "category_id": 0, + "poly": [ + 302, + 225, + 687, + 225, + 687, + 262, + 302, + 262 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.875 + }, + { + "category_id": 0, + "poly": [ + 302, + 771, + 686, + 771, + 686, + 807, + 302, + 807 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.846 + }, + { + "category_id": 13, + "poly": [ + 1070, + 466, + 1155, + 466, + 1155, + 494, + 1070, + 494 + ], + "score": 0.9, + "latex": "k = 6 4" + }, + { + "category_id": 13, + "poly": [ + 800, + 665, + 1007, + 665, + 1007, + 695, + 800, + 695 + ], + "score": 0.89, + "latex": "m a x \\_ e = 0 . 3 ^ { * } 2 5 5" + }, + { + "category_id": 13, + "poly": [ + 297, + 358, + 371, + 358, + 371, + 387, + 297, + 387 + ], + "score": 0.78, + "latex": "2 4 \\times 2 4" + }, + { + "category_id": 13, + "poly": [ + 732, + 358, + 806, + 358, + 806, + 387, + 732, + 387 + ], + "score": 0.78, + "latex": "3 2 \\mathrm { x } 3 2 " + }, + { + "category_id": 13, + "poly": [ + 1098, + 527, + 1144, + 527, + 1144, + 554, + 1098, + 554 + ], + "score": 0.53, + "latex": "4 8 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1192, + 526, + 1239, + 526, + 1239, + 554, + 1192, + 554 + ], + "score": 0.51, + "latex": "7 2 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1369, + 496, + 1402, + 496, + 1402, + 525, + 1369, + 525 + ], + "score": 0.43, + "latex": "4 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1941.0, + 1408.0, + 1941.0, + 1408.0, + 1986.0, + 326.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2012.0, + 292.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 472.0, + 2003.0, + 472.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 224.0, + 688.0, + 224.0, + 688.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 767.0, + 691.0, + 767.0, + 691.0, + 812.0, + 292.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 435.0, + 1402.0, + 435.0, + 1402.0, + 468.0, + 298.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 462.0, + 1069.0, + 462.0, + 1069.0, + 499.0, + 294.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 499.0, + 1156.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 494.0, + 1368.0, + 494.0, + 1368.0, + 530.0, + 293.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 526.0, + 1097.0, + 526.0, + 1097.0, + 559.0, + 297.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 526.0, + 1191.0, + 526.0, + 1191.0, + 559.0, + 1145.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 526.0, + 1404.0, + 526.0, + 1404.0, + 559.0, + 1240.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 555.0, + 868.0, + 555.0, + 868.0, + 588.0, + 293.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 296.0, + 1404.0, + 296.0, + 1404.0, + 332.0, + 295.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 326.0, + 1406.0, + 326.0, + 1406.0, + 362.0, + 294.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 354.0, + 296.0, + 354.0, + 296.0, + 395.0, + 292.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 354.0, + 731.0, + 354.0, + 731.0, + 395.0, + 372.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 354.0, + 1407.0, + 354.0, + 1407.0, + 395.0, + 807.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 388.0, + 773.0, + 388.0, + 773.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 835.0, + 1405.0, + 835.0, + 1405.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 873.0, + 1404.0, + 873.0, + 1404.0, + 906.0, + 295.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 902.0, + 1404.0, + 902.0, + 1404.0, + 935.0, + 294.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 934.0, + 1404.0, + 934.0, + 1404.0, + 967.0, + 295.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 944.0, + 959.0, + 944.0, + 1003.0, + 293.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 639.0, + 293.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 633.0, + 1405.0, + 633.0, + 1405.0, + 669.0, + 293.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 665.0, + 799.0, + 665.0, + 799.0, + 696.0, + 292.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 665.0, + 1406.0, + 665.0, + 1406.0, + 696.0, + 1008.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 693.0, + 443.0, + 693.0, + 443.0, + 731.0, + 292.0, + 731.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 357, + 287, + 1344, + 287, + 1344, + 1620, + 357, + 1620 + ], + "score": 0.98, + "html": "
Initialization
DatasetResNetGroupTrainingModel
MNIST20-layerAstandard training Kurakin'sR20M R20MK
Bidirection lossR20MB
20-layerPivot lossR20Mp
standard trainingR20
Kurakin'sR20K
Ensemble trainingR20E
BBidirection loss Pivot lossR20B R20p
Kurakin's & Cascade trainingR20K,C
Pivot loss & Ensemble trainingR20p,E
Pivot loss & Cascade trainingR20p,C
standard trainingR202
CIFAR10 56-layerCKurakin'sR20K2
DPivot loss standard trainingR20p2 R203
E standard trainingR204
FKurakin'sR56K R56p
Pivot loss
GKurakin'sR56K2
110-layerH standard trainingR110
Kurakin'sR110K
Pivot loss Ensemble trainingR110p R110E
Kurakin's & Cascade training
R110K,C
Pivot loss & Ensemble trainingR110p,E
Pivot loss & Cascade trainingR110p,C
Istandard training Kurakin'sR1102
R110k2
Ensemble trainingR110E2
Pivot lossR110p2
Kurakin's & Cascade training Pivot loss & Ensemble trainingR110k,C2 R110p,E2
JPivot loss & Cascade trainingR110p,C2
standard trainingR1103
Kstandard trainingR1104
" + }, + { + "category_id": 5, + "poly": [ + 588, + 1882, + 1110, + 1882, + 1110, + 2029, + 588, + 2029 + ], + "score": 0.93, + "html": "
Cascade modelsPre-trained model
R20K,c,R20p,CR20p
R110K,c,R110p,CR110p
R110K,c2,R110P,C2R110p2
" + }, + { + "category_id": 6, + "poly": [ + 641, + 1636, + 1059, + 1636, + 1059, + 1669, + 641, + 1669 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.899 + }, + { + "category_id": 6, + "poly": [ + 692, + 225, + 1008, + 225, + 1008, + 258, + 692, + 258 + ], + "score": 0.897 + }, + { + "category_id": 6, + "poly": [ + 650, + 1826, + 1051, + 1826, + 1051, + 1859, + 650, + 1859 + ], + "score": 0.784 + }, + { + "category_id": 5, + "poly": [ + 521, + 1692, + 1178, + 1692, + 1178, + 1808, + 521, + 1808 + ], + "score": 0.748, + "html": "
Ensemble modelsPre-trained models
R20E,R20p,E,R110E,R110P,E R110E2,R110P,E2R203,R110g R204,R1104
" + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 865, + 2087, + 865, + 2114, + 835, + 2114 + ], + "score": 0.72 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 865, + 2087, + 865, + 2114, + 835, + 2114 + ], + "score": 0.322 + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1633.0, + 1061.0, + 1633.0, + 1061.0, + 1672.0, + 638.0, + 1672.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": [ + 689.0, + 222.0, + 1008.0, + 222.0, + 1008.0, + 261.0, + 689.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1821.0, + 1052.0, + 1821.0, + 1052.0, + 1863.0, + 645.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1472, + 1405, + 1472, + 1405, + 1868, + 298, + 1868 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 296, + 322, + 1407, + 322, + 1407, + 1258, + 296, + 1258 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 296, + 1283, + 1404, + 1283, + 1404, + 1437, + 296, + 1437 + ], + "score": 0.968 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.848 + }, + { + "category_id": 2, + "poly": [ + 296, + 228, + 1048, + 228, + 1048, + 261, + 296, + 261 + ], + "score": 0.758 + }, + { + "category_id": 0, + "poly": [ + 296, + 228, + 1048, + 228, + 1048, + 261, + 296, + 261 + ], + "score": 0.093 + }, + { + "category_id": 13, + "poly": [ + 768, + 1595, + 827, + 1595, + 827, + 1623, + 768, + 1623 + ], + "score": 0.87, + "latex": "{ \\epsilon } { = } 1 0" + }, + { + "category_id": 13, + "poly": [ + 1117, + 909, + 1180, + 909, + 1180, + 936, + 1117, + 936 + ], + "score": 0.85, + "latex": "{ \\mathrm { R } } 2 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1113, + 1229, + 1176, + 1229, + 1176, + 1257, + 1113, + 1257 + ], + "score": 0.84, + "latex": "{ \\mathrm { R } } 2 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 589, + 1209, + 589, + 1209, + 617, + 1146, + 617 + ], + "score": 0.83, + "latex": "{ \\mathrm { R } } 2 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 630, + 1407, + 676, + 1407, + 676, + 1435, + 630, + 1435 + ], + "score": 0.81, + "latex": "\\pm \\nobreakspace 1 \\nobreakspace" + }, + { + "category_id": 13, + "poly": [ + 768, + 909, + 833, + 909, + 833, + 937, + 768, + 937 + ], + "score": 0.69, + "latex": "\\mathsf { R } 2 0 _ { K }" + }, + { + "category_id": 13, + "poly": [ + 765, + 1229, + 830, + 1229, + 830, + 1257, + 765, + 1257 + ], + "score": 0.69, + "latex": "\\mathsf { R } 2 0 _ { K }" + }, + { + "category_id": 13, + "poly": [ + 963, + 1540, + 980, + 1540, + 980, + 1561, + 963, + 1561 + ], + "score": 0.64, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 516, + 1351, + 533, + 1351, + 533, + 1372, + 516, + 1372 + ], + "score": 0.55, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 746, + 1290, + 762, + 1290, + 762, + 1311, + 746, + 1311 + ], + "score": 0.5, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1569, + 1161, + 1569, + 1161, + 1592, + 1144, + 1592 + ], + "score": 0.48, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 796, + 588, + 861, + 588, + 861, + 617, + 796, + 617 + ], + "score": 0.27, + "latex": "\\mathsf { R } 2 0 _ { K }" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 327.0, + 351.0, + 327.0, + 351.0, + 348.0, + 327.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 327.0, + 733.0, + 327.0, + 733.0, + 347.0, + 713.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 327.0, + 1120.0, + 327.0, + 1120.0, + 347.0, + 1097.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 339.0, + 616.0, + 339.0, + 616.0, + 360.0, + 547.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 318.0, + 352.0, + 318.0, + 517.0, + 294.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 348.0, + 354.0, + 348.0, + 354.0, + 409.0, + 324.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 354.0, + 617.0, + 354.0, + 617.0, + 375.0, + 545.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 351.0, + 705.0, + 351.0, + 705.0, + 518.0, + 677.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 354.0, + 729.0, + 354.0, + 729.0, + 374.0, + 714.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 352.0, + 1089.0, + 352.0, + 1089.0, + 516.0, + 1065.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 352.0, + 1123.0, + 352.0, + 1123.0, + 377.0, + 1095.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 379.0, + 1121.0, + 379.0, + 1121.0, + 403.0, + 1097.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 410.0, + 351.0, + 410.0, + 351.0, + 430.0, + 328.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 414.0, + 728.0, + 414.0, + 728.0, + 426.0, + 717.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 411.0, + 1121.0, + 411.0, + 1121.0, + 430.0, + 1097.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 537.0, + 457.0, + 537.0, + 457.0, + 550.0, + 436.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 537.0, + 491.0, + 537.0, + 491.0, + 550.0, + 479.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 535.0, + 544.0, + 535.0, + 544.0, + 552.0, + 518.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 533.0, + 589.0, + 533.0, + 589.0, + 552.0, + 564.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 533.0, + 635.0, + 533.0, + 635.0, + 552.0, + 609.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 538.0, + 748.0, + 538.0, + 748.0, + 547.0, + 737.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 536.0, + 797.0, + 536.0, + 797.0, + 550.0, + 773.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 536.0, + 843.0, + 536.0, + 843.0, + 550.0, + 822.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 536.0, + 878.0, + 536.0, + 878.0, + 551.0, + 863.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 533.0, + 930.0, + 533.0, + 930.0, + 552.0, + 903.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 533.0, + 974.0, + 533.0, + 974.0, + 552.0, + 947.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 533.0, + 1019.0, + 533.0, + 1019.0, + 552.0, + 994.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 536.0, + 1137.0, + 536.0, + 1137.0, + 550.0, + 1115.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 536.0, + 1183.0, + 536.0, + 1183.0, + 550.0, + 1154.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 533.0, + 1229.0, + 533.0, + 1229.0, + 551.0, + 1200.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 536.0, + 1263.0, + 536.0, + 1263.0, + 551.0, + 1248.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 533.0, + 1316.0, + 533.0, + 1316.0, + 552.0, + 1289.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 533.0, + 1361.0, + 533.0, + 1361.0, + 552.0, + 1333.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 533.0, + 1404.0, + 533.0, + 1404.0, + 552.0, + 1380.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 556.0, + 493.0, + 556.0, + 493.0, + 573.0, + 477.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 555.0, + 881.0, + 555.0, + 881.0, + 575.0, + 860.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 553.0, + 1264.0, + 553.0, + 1264.0, + 575.0, + 1245.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 583.0, + 547.0, + 583.0, + 547.0, + 624.0, + 383.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 582.0, + 795.0, + 582.0, + 795.0, + 626.0, + 756.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 582.0, + 945.0, + 582.0, + 945.0, + 626.0, + 862.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 582.0, + 1145.0, + 582.0, + 1145.0, + 623.0, + 1106.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 582.0, + 1362.0, + 582.0, + 1362.0, + 623.0, + 1210.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 644.0, + 352.0, + 644.0, + 352.0, + 669.0, + 325.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 647.0, + 733.0, + 647.0, + 733.0, + 667.0, + 713.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 646.0, + 1120.0, + 646.0, + 1120.0, + 667.0, + 1096.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 660.0, + 616.0, + 660.0, + 616.0, + 680.0, + 544.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 672.0, + 318.0, + 672.0, + 318.0, + 837.0, + 294.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 673.0, + 619.0, + 673.0, + 619.0, + 698.0, + 542.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 671.0, + 705.0, + 671.0, + 705.0, + 838.0, + 677.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 674.0, + 730.0, + 674.0, + 730.0, + 695.0, + 711.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 673.0, + 1090.0, + 673.0, + 1090.0, + 837.0, + 1066.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 674.0, + 1119.0, + 674.0, + 1119.0, + 695.0, + 1096.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 694.0, + 351.0, + 694.0, + 351.0, + 723.0, + 327.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 702.0, + 1119.0, + 702.0, + 1119.0, + 720.0, + 1096.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 733.0, + 346.0, + 733.0, + 346.0, + 749.0, + 329.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 733.0, + 1118.0, + 733.0, + 1118.0, + 748.0, + 1099.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 856.0, + 457.0, + 856.0, + 457.0, + 870.0, + 434.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 856.0, + 493.0, + 856.0, + 493.0, + 872.0, + 477.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 854.0, + 545.0, + 854.0, + 545.0, + 872.0, + 518.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 854.0, + 590.0, + 854.0, + 590.0, + 872.0, + 563.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 854.0, + 635.0, + 854.0, + 635.0, + 872.0, + 609.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 856.0, + 751.0, + 856.0, + 751.0, + 870.0, + 732.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 856.0, + 799.0, + 856.0, + 799.0, + 870.0, + 772.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 854.0, + 844.0, + 854.0, + 844.0, + 871.0, + 814.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 856.0, + 879.0, + 856.0, + 879.0, + 871.0, + 863.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 854.0, + 930.0, + 854.0, + 930.0, + 872.0, + 903.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 854.0, + 976.0, + 854.0, + 976.0, + 872.0, + 947.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 855.0, + 1137.0, + 855.0, + 1137.0, + 868.0, + 1114.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 854.0, + 1185.0, + 854.0, + 1185.0, + 871.0, + 1149.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 852.0, + 1230.0, + 852.0, + 1230.0, + 873.0, + 1193.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 856.0, + 1263.0, + 856.0, + 1263.0, + 872.0, + 1248.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 854.0, + 1316.0, + 854.0, + 1316.0, + 872.0, + 1288.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 854.0, + 1361.0, + 854.0, + 1361.0, + 872.0, + 1333.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1381.0, + 856.0, + 1403.0, + 856.0, + 1403.0, + 871.0, + 1381.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 875.0, + 495.0, + 875.0, + 495.0, + 895.0, + 474.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 875.0, + 881.0, + 875.0, + 881.0, + 895.0, + 860.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 875.0, + 1265.0, + 875.0, + 1265.0, + 895.0, + 1245.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 902.0, + 573.0, + 902.0, + 573.0, + 942.0, + 355.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 904.0, + 767.0, + 904.0, + 767.0, + 942.0, + 730.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 904.0, + 971.0, + 904.0, + 971.0, + 942.0, + 834.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 903.0, + 1116.0, + 903.0, + 1116.0, + 943.0, + 1085.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 903.0, + 1386.0, + 903.0, + 1386.0, + 943.0, + 1181.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 964.0, + 352.0, + 964.0, + 352.0, + 989.0, + 325.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 967.0, + 735.0, + 967.0, + 735.0, + 987.0, + 713.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 966.0, + 1120.0, + 966.0, + 1120.0, + 987.0, + 1096.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 993.0, + 318.0, + 993.0, + 318.0, + 1156.0, + 293.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 988.0, + 354.0, + 988.0, + 354.0, + 1048.0, + 324.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 981.0, + 619.0, + 981.0, + 619.0, + 1018.0, + 542.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 992.0, + 705.0, + 992.0, + 705.0, + 1158.0, + 677.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 995.0, + 729.0, + 995.0, + 729.0, + 1013.0, + 713.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 993.0, + 1089.0, + 993.0, + 1089.0, + 1156.0, + 1065.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 994.0, + 1119.0, + 994.0, + 1119.0, + 1014.0, + 1096.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1025.0, + 1118.0, + 1025.0, + 1118.0, + 1039.0, + 1099.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1051.0, + 346.0, + 1051.0, + 346.0, + 1068.0, + 329.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1056.0, + 1111.0, + 1056.0, + 1111.0, + 1065.0, + 1101.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1166.0, + 729.0, + 1166.0, + 729.0, + 1181.0, + 711.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1166.0, + 1115.0, + 1166.0, + 1115.0, + 1181.0, + 1095.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1176.0, + 366.0, + 1176.0, + 366.0, + 1190.0, + 348.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1176.0, + 411.0, + 1176.0, + 411.0, + 1190.0, + 389.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1175.0, + 459.0, + 1175.0, + 459.0, + 1192.0, + 428.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1176.0, + 495.0, + 1176.0, + 495.0, + 1191.0, + 477.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1174.0, + 545.0, + 1174.0, + 545.0, + 1192.0, + 518.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1174.0, + 592.0, + 1174.0, + 592.0, + 1192.0, + 561.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1174.0, + 635.0, + 1174.0, + 635.0, + 1192.0, + 608.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1174.0, + 754.0, + 1174.0, + 754.0, + 1191.0, + 728.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1176.0, + 800.0, + 1176.0, + 800.0, + 1190.0, + 772.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1175.0, + 844.0, + 1175.0, + 844.0, + 1191.0, + 811.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1176.0, + 879.0, + 1176.0, + 879.0, + 1191.0, + 863.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1172.0, + 932.0, + 1172.0, + 932.0, + 1195.0, + 902.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1174.0, + 978.0, + 1174.0, + 978.0, + 1192.0, + 947.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1174.0, + 1019.0, + 1174.0, + 1019.0, + 1192.0, + 993.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1174.0, + 1139.0, + 1174.0, + 1139.0, + 1191.0, + 1113.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1175.0, + 1186.0, + 1175.0, + 1186.0, + 1192.0, + 1144.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1172.0, + 1231.0, + 1172.0, + 1231.0, + 1193.0, + 1188.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1176.0, + 1264.0, + 1176.0, + 1264.0, + 1191.0, + 1246.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1174.0, + 1316.0, + 1174.0, + 1316.0, + 1192.0, + 1288.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1175.0, + 1361.0, + 1175.0, + 1361.0, + 1192.0, + 1332.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 1175.0, + 1404.0, + 1175.0, + 1404.0, + 1192.0, + 1379.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1196.0, + 493.0, + 1196.0, + 493.0, + 1212.0, + 477.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1196.0, + 879.0, + 1196.0, + 879.0, + 1212.0, + 862.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1193.0, + 1264.0, + 1193.0, + 1264.0, + 1215.0, + 1245.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1225.0, + 578.0, + 1225.0, + 578.0, + 1264.0, + 353.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1222.0, + 764.0, + 1222.0, + 764.0, + 1265.0, + 726.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1222.0, + 973.0, + 1222.0, + 973.0, + 1265.0, + 831.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1222.0, + 1112.0, + 1222.0, + 1112.0, + 1265.0, + 1080.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1222.0, + 1389.0, + 1222.0, + 1389.0, + 1265.0, + 1177.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.25, + 673.0, + 341.25, + 673.0, + 341.25, + 695.0, + 333.25, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 853.5, + 1020.0, + 853.5, + 1020.0, + 872.0, + 992.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1282.0, + 745.0, + 1282.0, + 745.0, + 1319.0, + 295.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1282.0, + 1404.0, + 1282.0, + 1404.0, + 1319.0, + 763.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1312.0, + 1404.0, + 1312.0, + 1404.0, + 1349.0, + 294.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1345.0, + 515.0, + 1345.0, + 515.0, + 1379.0, + 295.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1345.0, + 1404.0, + 1345.0, + 1404.0, + 1379.0, + 534.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1376.0, + 1405.0, + 1376.0, + 1405.0, + 1409.0, + 298.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1404.0, + 629.0, + 1404.0, + 629.0, + 1439.0, + 294.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1404.0, + 1032.0, + 1404.0, + 1032.0, + 1439.0, + 677.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 1051.0, + 223.0, + 1051.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 1051.0, + 223.0, + 1051.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1470.0, + 1405.0, + 1470.0, + 1405.0, + 1507.0, + 295.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1501.0, + 1405.0, + 1501.0, + 1405.0, + 1538.0, + 292.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1532.0, + 962.0, + 1532.0, + 962.0, + 1569.0, + 293.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1532.0, + 1405.0, + 1532.0, + 1405.0, + 1569.0, + 981.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1561.0, + 1143.0, + 1561.0, + 1143.0, + 1599.0, + 295.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1599.0, + 1162.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1596.0, + 767.0, + 1596.0, + 767.0, + 1629.0, + 296.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1596.0, + 1406.0, + 1596.0, + 1406.0, + 1629.0, + 828.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1622.0, + 1405.0, + 1622.0, + 1405.0, + 1661.0, + 295.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1653.0, + 1406.0, + 1653.0, + 1406.0, + 1691.0, + 293.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1686.0, + 1403.0, + 1686.0, + 1403.0, + 1722.0, + 295.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1714.0, + 1407.0, + 1714.0, + 1407.0, + 1754.0, + 293.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1745.0, + 1403.0, + 1745.0, + 1403.0, + 1781.0, + 295.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1778.0, + 1405.0, + 1778.0, + 1405.0, + 1811.0, + 296.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1806.0, + 1408.0, + 1806.0, + 1408.0, + 1844.0, + 292.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1839.0, + 990.0, + 1839.0, + 990.0, + 1872.0, + 296.0, + 1872.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1590, + 1404, + 1590, + 1404, + 1805, + 297, + 1805 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1360, + 1404, + 1360, + 1404, + 1575, + 297, + 1575 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 992, + 1404, + 992, + 1404, + 1177, + 297, + 1177 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1192, + 1403, + 1192, + 1403, + 1345, + 298, + 1345 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1820, + 1403, + 1820, + 1403, + 2035, + 297, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 821, + 1404, + 821, + 1404, + 978, + 298, + 978 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 297, + 374, + 1404, + 374, + 1404, + 671, + 297, + 671 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 296, + 696, + 1401, + 696, + 1401, + 791, + 296, + 791 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 298, + 228, + 754, + 228, + 754, + 260, + 298, + 260 + ], + "score": 0.792 + }, + { + "category_id": 13, + "poly": [ + 722, + 1851, + 845, + 1851, + 845, + 1880, + 722, + 1880 + ], + "score": 0.9, + "latex": "1 < \\epsilon < 4" + }, + { + "category_id": 13, + "poly": [ + 377, + 1852, + 500, + 1852, + 500, + 1880, + 377, + 1880 + ], + "score": 0.88, + "latex": "1 < \\epsilon < 3" + }, + { + "category_id": 13, + "poly": [ + 629, + 1115, + 703, + 1115, + 703, + 1146, + 629, + 1146 + ], + "score": 0.88, + "latex": "\\mathsf { R } 2 0 _ { K }" + }, + { + "category_id": 13, + "poly": [ + 793, + 1116, + 863, + 1116, + 863, + 1146, + 793, + 1146 + ], + "score": 0.88, + "latex": "{ \\mathrm { R } } 2 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 982, + 758, + 1050, + 758, + 1050, + 787, + 982, + 787 + ], + "score": 0.83, + "latex": "\\pm \\ : 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 940, + 1949, + 955, + 1949, + 955, + 1970, + 940, + 1970 + ], + "score": 0.74, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 627, + 1918, + 642, + 1918, + 642, + 1939, + 627, + 1939 + ], + "score": 0.71, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 951, + 1519, + 967, + 1519, + 967, + 1541, + 951, + 1541 + ], + "score": 0.71, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1289, + 1249, + 1289, + 1249, + 1311, + 1233, + 1311 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1150, + 641, + 1213, + 641, + 1213, + 669, + 1150, + 669 + ], + "score": 0.65, + "latex": "{ \\mathrm { R } } 2 0 _ { P }" + }, + { + "category_id": 13, + "poly": [ + 683, + 732, + 699, + 732, + 699, + 755, + 683, + 755 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 567, + 1626, + 584, + 1626, + 584, + 1649, + 567, + 1649 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 297, + 1397, + 313, + 1397, + 313, + 1419, + 297, + 1419 + ], + "score": 0.57, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 482, + 1285, + 538, + 1285, + 538, + 1314, + 482, + 1314 + ], + "score": 0.57, + "latex": "( \\epsilon { = } 0 )" + }, + { + "category_id": 13, + "poly": [ + 1386, + 1718, + 1402, + 1718, + 1402, + 1740, + 1386, + 1740 + ], + "score": 0.5, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 367, + 1489, + 384, + 1489, + 384, + 1510, + 367, + 1510 + ], + "score": 0.44, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 377.0, + 358.0, + 377.0, + 358.0, + 400.0, + 325.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 377.0, + 741.0, + 377.0, + 741.0, + 400.0, + 710.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 377.0, + 1127.0, + 377.0, + 1127.0, + 400.0, + 1096.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 407.0, + 359.0, + 407.0, + 359.0, + 434.0, + 322.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 407.0, + 744.0, + 407.0, + 744.0, + 434.0, + 707.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 403.0, + 975.0, + 403.0, + 975.0, + 429.0, + 933.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 407.0, + 1128.0, + 407.0, + 1128.0, + 434.0, + 1093.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 406.0, + 1360.0, + 406.0, + 1360.0, + 427.0, + 1321.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 442.0, + 320.0, + 442.0, + 320.0, + 529.0, + 296.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 442.0, + 358.0, + 442.0, + 358.0, + 464.0, + 324.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 442.0, + 705.0, + 442.0, + 705.0, + 530.0, + 681.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 442.0, + 741.0, + 442.0, + 741.0, + 464.0, + 708.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 438.0, + 974.0, + 438.0, + 974.0, + 459.0, + 936.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 442.0, + 1089.0, + 442.0, + 1089.0, + 530.0, + 1065.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 442.0, + 1126.0, + 442.0, + 1126.0, + 464.0, + 1093.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 439.0, + 1352.0, + 439.0, + 1352.0, + 458.0, + 1322.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 474.0, + 356.0, + 474.0, + 356.0, + 498.0, + 324.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 474.0, + 741.0, + 474.0, + 741.0, + 498.0, + 708.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 473.0, + 790.0, + 473.0, + 790.0, + 490.0, + 760.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 474.0, + 1126.0, + 474.0, + 1126.0, + 498.0, + 1093.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 473.0, + 1180.0, + 473.0, + 1180.0, + 490.0, + 1145.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 506.0, + 359.0, + 506.0, + 359.0, + 529.0, + 325.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 513.0, + 487.0, + 513.0, + 487.0, + 532.0, + 379.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 506.0, + 741.0, + 506.0, + 741.0, + 529.0, + 710.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 509.0, + 774.0, + 509.0, + 774.0, + 520.0, + 762.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 506.0, + 1126.0, + 506.0, + 1126.0, + 529.0, + 1094.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 503.0, + 1179.0, + 503.0, + 1179.0, + 524.0, + 1143.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 526.0, + 516.0, + 526.0, + 516.0, + 550.0, + 378.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 539.0, + 359.0, + 539.0, + 359.0, + 562.0, + 324.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 542.0, + 497.0, + 542.0, + 497.0, + 566.0, + 377.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 537.0, + 744.0, + 537.0, + 744.0, + 565.0, + 707.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 539.0, + 1127.0, + 539.0, + 1127.0, + 562.0, + 1093.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 560.0, + 521.0, + 560.0, + 521.0, + 580.0, + 379.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 573.0, + 356.0, + 573.0, + 356.0, + 602.0, + 322.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 580.0, + 459.0, + 580.0, + 459.0, + 608.0, + 419.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 580.0, + 545.0, + 580.0, + 545.0, + 607.0, + 510.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 585.0, + 628.0, + 585.0, + 628.0, + 603.0, + 600.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 583.0, + 837.0, + 583.0, + 837.0, + 606.0, + 806.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 582.0, + 926.0, + 582.0, + 926.0, + 606.0, + 896.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 573.0, + 1130.0, + 573.0, + 1130.0, + 603.0, + 1092.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 582.0, + 1224.0, + 582.0, + 1224.0, + 606.0, + 1191.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 582.0, + 1312.0, + 582.0, + 1312.0, + 606.0, + 1282.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 608.0, + 492.0, + 608.0, + 492.0, + 625.0, + 476.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 609.0, + 878.0, + 609.0, + 878.0, + 625.0, + 862.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 608.0, + 1263.0, + 608.0, + 1263.0, + 625.0, + 1247.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 638.0, + 558.0, + 638.0, + 558.0, + 670.0, + 370.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 638.0, + 961.0, + 638.0, + 961.0, + 674.0, + 741.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 638.0, + 1149.0, + 638.0, + 1149.0, + 674.0, + 1115.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 638.0, + 1356.0, + 638.0, + 1356.0, + 674.0, + 1214.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.25, + 407.5, + 866.25, + 407.5, + 866.25, + 447.5, + 798.25, + 447.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 415.0, + 1236.0, + 415.0, + 1236.0, + 446.0, + 1189.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.25, + 574.5, + 737.25, + 574.5, + 737.25, + 600.5, + 713.25, + 600.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 582.0, + 1020.0, + 582.0, + 1020.0, + 604.0, + 980.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.75, + 582.0, + 1403.75, + 582.0, + 1403.75, + 604.5, + 1364.75, + 604.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 696.0, + 1405.0, + 696.0, + 1405.0, + 734.0, + 294.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 723.0, + 682.0, + 723.0, + 682.0, + 765.0, + 292.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 723.0, + 1406.0, + 723.0, + 1406.0, + 765.0, + 700.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 758.0, + 981.0, + 758.0, + 981.0, + 792.0, + 297.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 758.0, + 1403.0, + 758.0, + 1403.0, + 792.0, + 1051.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 818.0, + 73.0, + 818.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 223.0, + 756.0, + 223.0, + 756.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1587.0, + 1404.0, + 1587.0, + 1404.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 566.0, + 1621.0, + 566.0, + 1654.0, + 294.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1654.0, + 585.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1685.0, + 295.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1716.0, + 295.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1711.0, + 1385.0, + 1711.0, + 1385.0, + 1747.0, + 294.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1711.0, + 1406.0, + 1711.0, + 1406.0, + 1747.0, + 1403.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1744.0, + 1404.0, + 1744.0, + 1404.0, + 1775.0, + 296.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1774.0, + 912.0, + 1774.0, + 912.0, + 1808.0, + 299.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1358.0, + 1405.0, + 1358.0, + 1405.0, + 1395.0, + 294.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1394.0, + 1405.0, + 1394.0, + 1405.0, + 1424.0, + 314.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1456.0, + 295.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1406.0, + 1453.0, + 1406.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1481.0, + 366.0, + 1481.0, + 366.0, + 1515.0, + 295.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 1481.0, + 1405.0, + 1481.0, + 1405.0, + 1515.0, + 385.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1514.0, + 950.0, + 1514.0, + 950.0, + 1546.0, + 293.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1514.0, + 1406.0, + 1514.0, + 1406.0, + 1546.0, + 968.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1546.0, + 804.0, + 1546.0, + 804.0, + 1577.0, + 296.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 990.0, + 1404.0, + 990.0, + 1404.0, + 1027.0, + 295.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 1405.0, + 1021.0, + 1405.0, + 1059.0, + 294.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1046.0, + 1409.0, + 1046.0, + 1409.0, + 1095.0, + 291.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1083.0, + 1405.0, + 1083.0, + 1405.0, + 1119.0, + 295.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1114.0, + 628.0, + 1114.0, + 628.0, + 1149.0, + 294.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1114.0, + 792.0, + 1114.0, + 792.0, + 1149.0, + 704.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1114.0, + 1404.0, + 1114.0, + 1404.0, + 1149.0, + 864.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1144.0, + 623.0, + 1144.0, + 623.0, + 1179.0, + 294.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1220.0, + 1404.0, + 1220.0, + 1404.0, + 1259.0, + 293.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1249.0, + 1405.0, + 1249.0, + 1405.0, + 1290.0, + 293.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1284.0, + 481.0, + 1284.0, + 481.0, + 1317.0, + 296.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1284.0, + 1232.0, + 1284.0, + 1232.0, + 1317.0, + 539.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1284.0, + 1404.0, + 1284.0, + 1404.0, + 1317.0, + 1250.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1313.0, + 1056.0, + 1313.0, + 1056.0, + 1349.0, + 293.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 376.0, + 1849.0, + 376.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1849.0, + 721.0, + 1849.0, + 721.0, + 1886.0, + 501.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1886.0, + 846.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1877.0, + 1407.0, + 1877.0, + 1407.0, + 1920.0, + 291.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 626.0, + 1910.0, + 626.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1947.0, + 643.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 939.0, + 1941.0, + 939.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1979.0, + 956.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1403.0, + 2000.0, + 1403.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 823.0, + 1405.0, + 823.0, + 1405.0, + 857.0, + 297.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 851.0, + 1405.0, + 851.0, + 1405.0, + 890.0, + 292.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 879.0, + 1406.0, + 879.0, + 1406.0, + 925.0, + 291.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 1405.0, + 914.0, + 1405.0, + 952.0, + 294.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 941.0, + 526.0, + 941.0, + 526.0, + 984.0, + 292.0, + 984.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 361, + 1406, + 1341, + 1406, + 1341, + 1687, + 361, + 1687 + ], + "score": 0.983, + "html": "
TargetSource: iter_FGSM
R110R110KR110ER110pR110K,CR110p,ER110p,C
R110K280.572.749.368.049.641.067.9
R110E282.759.139.559.651.540.369.6
R110p2 (Ours)80.375.954.272.254.944.372.4
R110k,C2 (Ours)62.174.761.572.346.539.067.9
R110p,E2 (Ours)81.579.050.077.356.945.575.2
R110p,c2 (Ours)72.276.460.673.851.040.972.0
" + }, + { + "category_id": 5, + "poly": [ + 505, + 959, + 1195, + 959, + 1195, + 1149, + 505, + 1149 + ], + "score": 0.974, + "html": "
TargetSource: step-FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R20217.933.934.54.154.854.3
R20K265.084.684.561.225.330.4
R20p266.488.287.261.627.736.1
" + }, + { + "category_id": 1, + "poly": [ + 296, + 1725, + 1405, + 1725, + 1405, + 1881, + 296, + 1881 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 303, + 1189, + 1398, + 1189, + 1398, + 1283, + 303, + 1283 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1403, + 228, + 1403, + 294, + 295, + 294 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 299, + 744, + 1402, + 744, + 1402, + 836, + 299, + 836 + ], + "score": 0.938 + }, + { + "category_id": 6, + "poly": [ + 295, + 408, + 1402, + 408, + 1402, + 474, + 295, + 474 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 815, + 74, + 815, + 105, + 299, + 105 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 297, + 336, + 986, + 336, + 986, + 375, + 297, + 375 + ], + "score": 0.909 + }, + { + "category_id": 6, + "poly": [ + 287, + 857, + 1402, + 857, + 1402, + 924, + 287, + 924 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.86 + }, + { + "category_id": 6, + "poly": [ + 295, + 1304, + 1402, + 1304, + 1402, + 1371, + 295, + 1371 + ], + "score": 0.785 + }, + { + "category_id": 6, + "poly": [ + 523, + 509, + 1164, + 509, + 1164, + 544, + 523, + 544 + ], + "score": 0.298 + }, + { + "category_id": 1, + "poly": [ + 295, + 1304, + 1402, + 1304, + 1402, + 1371, + 295, + 1371 + ], + "score": 0.144 + }, + { + "category_id": 13, + "poly": [ + 569, + 1190, + 663, + 1190, + 663, + 1220, + 569, + 1220 + ], + "score": 0.89, + "latex": "( \\mathsf { R } 2 0 _ { P 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1295, + 1221, + 1391, + 1221, + 1391, + 1252, + 1295, + 1252 + ], + "score": 0.88, + "latex": "( { \\bf R } 2 0 _ { B { \\bf 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1818, + 1393, + 1818, + 1393, + 1850, + 1305, + 1850 + ], + "score": 0.88, + "latex": "( \\mathrm { R } 1 1 0 _ { E }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1849, + 409, + 1849, + 409, + 1882, + 296, + 1882 + ], + "score": 0.87, + "latex": "\\operatorname { R 1 1 0 } _ { P , E } )" + }, + { + "category_id": 13, + "poly": [ + 726, + 1788, + 852, + 1788, + 852, + 1821, + 726, + 1821 + ], + "score": 0.87, + "latex": "( \\mathrm { R } 1 1 0 _ { P , C 2 }" + }, + { + "category_id": 13, + "poly": [ + 863, + 1788, + 989, + 1788, + 989, + 1820, + 863, + 1820 + ], + "score": 0.86, + "latex": "\\mathbf { R } 1 1 0 _ { P , E 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1000, + 860, + 1059, + 860, + 1059, + 889, + 1000, + 889 + ], + "score": 0.85, + "latex": "{ \\epsilon } { = } 1 6" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1306, + 1303, + 1306, + 1303, + 1335, + 1243, + 1335 + ], + "score": 0.83, + "latex": "{ \\epsilon } { = } 1 6" + }, + { + "category_id": 13, + "poly": [ + 446, + 440, + 533, + 440, + 533, + 473, + 446, + 473 + ], + "score": 0.78, + "latex": "\\scriptstyle \\left( \\epsilon = 1 6 \\right) \\}" + }, + { + "category_id": 13, + "poly": [ + 640, + 861, + 683, + 861, + 683, + 890, + 640, + 890 + ], + "score": 0.76, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 648, + 1307, + 692, + 1307, + 692, + 1336, + 648, + 1336 + ], + "score": 0.75, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 518, + 1222, + 593, + 1222, + 593, + 1252, + 518, + 1252 + ], + "score": 0.71, + "latex": "( \\mathsf { R } 2 0 _ { K }" + }, + { + "category_id": 13, + "poly": [ + 604, + 1223, + 678, + 1223, + 678, + 1252, + 604, + 1252 + ], + "score": 0.7, + "latex": "{ \\mathrm { R } } 2 0 _ { P } )" + }, + { + "category_id": 13, + "poly": [ + 656, + 411, + 697, + 411, + 697, + 440, + 656, + 440 + ], + "score": 0.65, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 510, + 1222, + 681, + 1222, + 681, + 1252, + 510, + 1252 + ], + "score": 0.28, + "latex": "( \\mathsf { R } 2 0 _ { K } , \\mathsf { R } 2 0 _ { P } )" + }, + { + "category_id": 5, + "poly": [ + 509, + 507, + 1190, + 507, + 1190, + 700, + 509, + 700 + ], + "score": 0.888, + "html": "
TargetSource: step_FGSMSource: iter_FGSM
R20R20KR20pR20R20KR20p
R2012.227.427.50.045.944.7
R20K65.781.581.851.50.018.2
R20p58.189.391.748.913.40.0
" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 406.0, + 655.0, + 406.0, + 655.0, + 444.0, + 293.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 406.0, + 1405.0, + 406.0, + 1405.0, + 444.0, + 698.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 438.0, + 445.0, + 438.0, + 445.0, + 475.0, + 294.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 438.0, + 537.0, + 438.0, + 537.0, + 475.0, + 534.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 334.0, + 988.0, + 334.0, + 988.0, + 379.0, + 292.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 855.0, + 639.0, + 855.0, + 639.0, + 894.0, + 294.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 855.0, + 999.0, + 855.0, + 999.0, + 894.0, + 684.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 855.0, + 1404.0, + 855.0, + 1404.0, + 894.0, + 1060.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 888.0, + 639.0, + 888.0, + 639.0, + 924.0, + 294.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1301.0, + 647.0, + 1301.0, + 647.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1301.0, + 1242.0, + 1301.0, + 1242.0, + 1341.0, + 693.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1301.0, + 1404.0, + 1301.0, + 1404.0, + 1341.0, + 1304.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1335.0, + 1003.0, + 1335.0, + 1003.0, + 1371.0, + 295.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 522.0, + 607.0, + 522.0, + 607.0, + 554.0, + 525.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 508.0, + 879.0, + 508.0, + 879.0, + 551.0, + 640.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 508.0, + 1157.0, + 508.0, + 1157.0, + 545.0, + 928.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1724.0, + 1405.0, + 1724.0, + 1405.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1756.0, + 1403.0, + 1756.0, + 1403.0, + 1790.0, + 295.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1788.0, + 725.0, + 1788.0, + 725.0, + 1822.0, + 295.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1788.0, + 862.0, + 1788.0, + 862.0, + 1822.0, + 853.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1788.0, + 1405.0, + 1788.0, + 1405.0, + 1822.0, + 990.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1811.0, + 1304.0, + 1811.0, + 1304.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1811.0, + 1407.0, + 1811.0, + 1407.0, + 1856.0, + 1394.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1850.0, + 873.0, + 1850.0, + 873.0, + 1883.0, + 410.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1187.0, + 568.0, + 1187.0, + 568.0, + 1225.0, + 295.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1187.0, + 1404.0, + 1187.0, + 1404.0, + 1225.0, + 664.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1219.0, + 509.0, + 1219.0, + 509.0, + 1255.0, + 297.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1219.0, + 1294.0, + 1219.0, + 1294.0, + 1255.0, + 682.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 1219.0, + 1402.0, + 1219.0, + 1402.0, + 1255.0, + 1392.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1246.0, + 1400.0, + 1246.0, + 1400.0, + 1288.0, + 295.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 262.0, + 698.0, + 262.0, + 698.0, + 295.0, + 298.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 742.0, + 1404.0, + 742.0, + 1404.0, + 777.0, + 293.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 774.0, + 1404.0, + 774.0, + 1404.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 804.0, + 442.0, + 804.0, + 442.0, + 839.0, + 292.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1301.0, + 647.0, + 1301.0, + 647.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1301.0, + 1242.0, + 1301.0, + 1242.0, + 1341.0, + 693.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1301.0, + 1404.0, + 1301.0, + 1404.0, + 1341.0, + 1304.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1335.0, + 1003.0, + 1335.0, + 1003.0, + 1371.0, + 295.0, + 1371.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1041, + 1405, + 1041, + 1405, + 1290, + 296, + 1290 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 295, + 326, + 1404, + 326, + 1404, + 641, + 295, + 641 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1302, + 1404, + 1302, + 1404, + 1427, + 297, + 1427 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 934, + 1403, + 934, + 1403, + 1028, + 299, + 1028 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 297, + 756, + 1396, + 756, + 1396, + 792, + 297, + 792 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 4, + "poly": [ + 289, + 664, + 1401, + 664, + 1401, + 729, + 289, + 729 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 296, + 227, + 1260, + 227, + 1260, + 263, + 296, + 263 + ], + "score": 0.84 + }, + { + "category_id": 8, + "poly": [ + 590, + 805, + 1108, + 805, + 1108, + 928, + 590, + 928 + ], + "score": 0.744 + }, + { + "category_id": 8, + "poly": [ + 587, + 805, + 1112, + 805, + 1112, + 877, + 587, + 877 + ], + "score": 0.53 + }, + { + "category_id": 8, + "poly": [ + 685, + 890, + 1012, + 890, + 1012, + 929, + 685, + 929 + ], + "score": 0.447 + }, + { + "category_id": 4, + "poly": [ + 294, + 664, + 1400, + 664, + 1400, + 729, + 294, + 729 + ], + "score": 0.254 + }, + { + "category_id": 13, + "poly": [ + 1176, + 1226, + 1249, + 1226, + 1249, + 1260, + 1176, + 1260 + ], + "score": 0.93, + "latex": "| | \\delta | | _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 805, + 1226, + 979, + 1226, + 979, + 1260, + 805, + 1260 + ], + "score": 0.92, + "latex": "f ( X + \\delta ) < 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 1196, + 449, + 1196, + 449, + 1228, + 298, + 1228 + ], + "score": 0.92, + "latex": "c \\cdot f ( \\pmb { X } + \\pmb { \\delta } )" + }, + { + "category_id": 13, + "poly": [ + 700, + 1256, + 766, + 1256, + 766, + 1284, + 700, + 1284 + ], + "score": 0.9, + "latex": "X ^ { a d v }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1335, + 1214, + 1335, + 1214, + 1364, + 1065, + 1364 + ], + "score": 0.9, + "latex": "\\epsilon > 0 . 3 ^ { * } 2 5 5" + }, + { + "category_id": 13, + "poly": [ + 624, + 965, + 746, + 965, + 746, + 996, + 624, + 996 + ], + "score": 0.9, + "latex": "X ^ { a d v } - X" + }, + { + "category_id": 13, + "poly": [ + 1124, + 935, + 1321, + 935, + 1321, + 969, + 1124, + 969 + ], + "score": 0.9, + "latex": "f ( X + \\delta ) < 0 , \\mathfrak { c }" + }, + { + "category_id": 13, + "poly": [ + 896, + 1072, + 963, + 1072, + 963, + 1102, + 896, + 1102 + ], + "score": 0.89, + "latex": "X ^ { a d v }" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1074, + 1401, + 1074, + 1401, + 1105, + 1028, + 1105 + ], + "score": 0.89, + "latex": "c \\in \\{ 0 . 1 , 0 . 2 , 0 . 5 , 1 , 2 , 5 , 1 0 , 2 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 402, + 1366, + 469, + 1366, + 469, + 1393, + 402, + 1393 + ], + "score": 0.89, + "latex": "\\epsilon > 2" + }, + { + "category_id": 13, + "poly": [ + 590, + 760, + 635, + 760, + 635, + 789, + 590, + 789 + ], + "score": 0.89, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 426, + 1044, + 472, + 1044, + 472, + 1074, + 426, + 1074 + ], + "score": 0.88, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 434, + 1396, + 479, + 1396, + 479, + 1426, + 434, + 1426 + ], + "score": 0.88, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 298, + 698, + 342, + 698, + 342, + 727, + 298, + 727 + ], + "score": 0.88, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 352, + 1104, + 665, + 1104, + 665, + 1137, + 352, + 1137 + ], + "score": 0.88, + "latex": "\\tau \\in \\ \\{ 0 . 0 2 , 0 . 0 4 , . . . , 0 . 6 \\}" + }, + { + "category_id": 13, + "poly": [ + 826, + 892, + 1013, + 892, + 1013, + 929, + 826, + 929 + ], + "score": 0.88, + "latex": "\\pmb { X } + \\pmb { \\delta } \\in [ 0 , 1 ] ^ { n }" + }, + { + "category_id": 14, + "poly": [ + 589, + 805, + 1110, + 805, + 1110, + 879, + 589, + 879 + ], + "score": 0.86, + "latex": "m i n i m i z e \\quad c \\cdot f ( X + \\pmb { \\delta } ) + \\sum _ { i } [ ( | \\delta _ { i } | - \\tau ) ^ { + } ]" + }, + { + "category_id": 13, + "poly": [ + 523, + 937, + 543, + 937, + 543, + 967, + 523, + 967 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 886, + 1106, + 1269, + 1106, + 1269, + 1136, + 886, + 1136 + ], + "score": 0.85, + "latex": "c ~ \\in ~ \\{ 0 . 1 , 0 . 3 , 1 , 3 , 1 0 , 3 0 , 1 0 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 297, + 998, + 317, + 998, + 317, + 1029, + 297, + 1029 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1360, + 759, + 1390, + 759, + 1390, + 786, + 1360, + 786 + ], + "score": 0.83, + "latex": "\\boldsymbol { X }" + }, + { + "category_id": 13, + "poly": [ + 1087, + 230, + 1136, + 230, + 1136, + 262, + 1087, + 262 + ], + "score": 0.82, + "latex": "L _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 1337, + 1108, + 1402, + 1108, + 1402, + 1135, + 1337, + 1135 + ], + "score": 0.8, + "latex": "\\tau \\_ { \\in }" + }, + { + "category_id": 13, + "poly": [ + 771, + 1167, + 844, + 1167, + 844, + 1195, + 771, + 1195 + ], + "score": 0.8, + "latex": "0 . 0 1 / c" + }, + { + "category_id": 13, + "poly": [ + 650, + 1002, + 670, + 1002, + 670, + 1024, + 650, + 1024 + ], + "score": 0.78, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 745, + 1231, + 764, + 1231, + 764, + 1254, + 745, + 1254 + ], + "score": 0.77, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1366, + 1002, + 1384, + 1002, + 1384, + 1024, + 1366, + 1024 + ], + "score": 0.75, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 635, + 1227, + 666, + 1227, + 666, + 1255, + 635, + 1255 + ], + "score": 0.73, + "latex": "\\boldsymbol { X }" + }, + { + "category_id": 13, + "poly": [ + 882, + 1310, + 898, + 1310, + 898, + 1331, + 882, + 1331 + ], + "score": 0.69, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 753, + 702, + 770, + 702, + 770, + 724, + 753, + 724 + ], + "score": 0.68, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 756, + 971, + 773, + 971, + 773, + 994, + 756, + 994 + ], + "score": 0.64, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 677, + 1231, + 695, + 1231, + 695, + 1254, + 677, + 1254 + ], + "score": 0.63, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 814, + 672, + 830, + 672, + 830, + 693, + 814, + 693 + ], + "score": 0.58, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 300, + 1135, + 1082, + 1135, + 1082, + 1168, + 300, + 1168 + ], + "score": 0.45, + "latex": "\\{ 0 . 0 0 1 , 0 . 0 0 \\dot { 2 } , . . . , 0 . 0 1 , 0 . 0 1 2 , . . . , 0 . 0 2 , 0 . 0 2 4 , . . . , 0 . 0 4 , 0 . 0 4 8 , . . . , 0 . 0 8 \\}" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 332.0, + 357.0, + 332.0, + 357.0, + 360.0, + 313.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 334.0, + 729.0, + 334.0, + 729.0, + 358.0, + 688.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 332.0, + 1105.0, + 332.0, + 1105.0, + 359.0, + 1060.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 341.0, + 1396.0, + 341.0, + 1396.0, + 358.0, + 1339.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 353.0, + 1302.0, + 353.0, + 1302.0, + 367.0, + 1281.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 371.0, + 357.0, + 371.0, + 357.0, + 401.0, + 321.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 364.0, + 539.0, + 364.0, + 539.0, + 391.0, + 439.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 377.0, + 617.0, + 377.0, + 617.0, + 389.0, + 606.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 373.0, + 729.0, + 373.0, + 729.0, + 399.0, + 698.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 371.0, + 1104.0, + 371.0, + 1104.0, + 401.0, + 1070.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 372.0, + 1240.0, + 372.0, + 1240.0, + 381.0, + 1225.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 393.0, + 561.0, + 393.0, + 561.0, + 408.0, + 541.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 386.0, + 615.0, + 386.0, + 615.0, + 413.0, + 603.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 394.0, + 1310.0, + 394.0, + 1310.0, + 403.0, + 1300.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 401.0, + 435.0, + 401.0, + 435.0, + 426.0, + 378.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 404.0, + 605.0, + 404.0, + 605.0, + 424.0, + 591.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 421.0, + 317.0, + 421.0, + 317.0, + 467.0, + 294.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 413.0, + 357.0, + 413.0, + 357.0, + 438.0, + 323.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 416.0, + 498.0, + 416.0, + 498.0, + 468.0, + 377.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 420.0, + 693.0, + 420.0, + 693.0, + 468.0, + 667.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 413.0, + 729.0, + 413.0, + 729.0, + 438.0, + 697.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 435.0, + 952.0, + 435.0, + 952.0, + 472.0, + 898.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 420.0, + 1067.0, + 420.0, + 1067.0, + 468.0, + 1041.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 413.0, + 1103.0, + 413.0, + 1103.0, + 438.0, + 1071.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 417.0, + 1328.0, + 417.0, + 1328.0, + 471.0, + 1262.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 454.0, + 356.0, + 454.0, + 356.0, + 478.0, + 323.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 456.0, + 498.0, + 456.0, + 498.0, + 489.0, + 376.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 471.0, + 562.0, + 471.0, + 562.0, + 491.0, + 550.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 482.0, + 585.0, + 482.0, + 585.0, + 498.0, + 567.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 454.0, + 729.0, + 454.0, + 729.0, + 478.0, + 697.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 459.0, + 1020.0, + 459.0, + 1020.0, + 514.0, + 895.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 454.0, + 1103.0, + 454.0, + 1103.0, + 478.0, + 1071.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 460.0, + 1394.0, + 460.0, + 1394.0, + 509.0, + 1261.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 491.0, + 356.0, + 491.0, + 356.0, + 521.0, + 322.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 491.0, + 562.0, + 491.0, + 562.0, + 521.0, + 546.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 493.0, + 730.0, + 493.0, + 730.0, + 519.0, + 698.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 497.0, + 1019.0, + 497.0, + 1019.0, + 534.0, + 895.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 491.0, + 1104.0, + 491.0, + 1104.0, + 521.0, + 1070.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 491.0, + 1394.0, + 491.0, + 1394.0, + 534.0, + 1250.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 534.0, + 355.0, + 534.0, + 355.0, + 557.0, + 334.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 529.0, + 491.0, + 529.0, + 491.0, + 543.0, + 468.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 537.0, + 727.0, + 537.0, + 727.0, + 555.0, + 711.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 520.0, + 1020.0, + 520.0, + 1020.0, + 554.0, + 896.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 534.0, + 1105.0, + 534.0, + 1105.0, + 557.0, + 1084.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 521.0, + 1394.0, + 521.0, + 1394.0, + 551.0, + 1263.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 555.0, + 365.0, + 555.0, + 365.0, + 577.0, + 344.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 554.0, + 425.0, + 554.0, + 425.0, + 578.0, + 391.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 554.0, + 477.0, + 554.0, + 477.0, + 578.0, + 444.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 551.0, + 531.0, + 551.0, + 531.0, + 579.0, + 496.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 554.0, + 583.0, + 554.0, + 583.0, + 578.0, + 550.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 552.0, + 639.0, + 552.0, + 639.0, + 579.0, + 595.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 556.0, + 737.0, + 556.0, + 737.0, + 574.0, + 721.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 559.0, + 792.0, + 559.0, + 792.0, + 573.0, + 781.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 557.0, + 853.0, + 557.0, + 853.0, + 576.0, + 838.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 554.0, + 914.0, + 554.0, + 914.0, + 577.0, + 895.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 554.0, + 973.0, + 554.0, + 973.0, + 576.0, + 953.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 555.0, + 1031.0, + 555.0, + 1031.0, + 577.0, + 1012.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 555.0, + 1113.0, + 555.0, + 1113.0, + 577.0, + 1093.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 559.0, + 1166.0, + 559.0, + 1166.0, + 573.0, + 1156.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 559.0, + 1225.0, + 559.0, + 1225.0, + 574.0, + 1215.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 554.0, + 1288.0, + 554.0, + 1288.0, + 577.0, + 1269.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 554.0, + 1347.0, + 554.0, + 1347.0, + 577.0, + 1327.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 555.0, + 1405.0, + 555.0, + 1405.0, + 577.0, + 1386.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 574.0, + 515.0, + 574.0, + 515.0, + 598.0, + 493.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 574.0, + 885.0, + 574.0, + 885.0, + 596.0, + 866.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 574.0, + 1259.0, + 574.0, + 1259.0, + 596.0, + 1240.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 610.0, + 536.0, + 610.0, + 536.0, + 640.0, + 413.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 608.0, + 970.0, + 608.0, + 970.0, + 644.0, + 731.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 608.0, + 1351.0, + 608.0, + 1351.0, + 644.0, + 1099.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 359.5, + 901.0, + 359.5, + 901.0, + 377.5, + 847.0, + 377.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.75, + 390.0, + 940.75, + 390.0, + 940.75, + 408.0, + 900.75, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 421.5, + 949.0, + 421.5, + 949.0, + 448.5, + 900.0, + 448.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.25, + 427.0, + 877.25, + 427.0, + 877.25, + 471.0, + 687.25, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 445.5, + 1246.0, + 445.5, + 1246.0, + 480.0, + 1076.0, + 480.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": [ + 295.0, + 664.0, + 813.0, + 664.0, + 813.0, + 700.0, + 295.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 664.0, + 1400.0, + 664.0, + 1400.0, + 700.0, + 831.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 695.0, + 752.0, + 695.0, + 752.0, + 731.0, + 343.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 695.0, + 1060.0, + 695.0, + 1060.0, + 731.0, + 771.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 221.0, + 1086.0, + 221.0, + 1086.0, + 271.0, + 289.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 221.0, + 1267.0, + 221.0, + 1267.0, + 271.0, + 1137.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 664.0, + 813.0, + 664.0, + 813.0, + 700.0, + 296.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 664.0, + 1402.0, + 664.0, + 1402.0, + 700.0, + 831.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 694.0, + 752.0, + 694.0, + 752.0, + 730.0, + 343.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 694.0, + 1057.0, + 694.0, + 1057.0, + 730.0, + 771.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1043.0, + 425.0, + 1043.0, + 425.0, + 1077.0, + 295.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1043.0, + 1403.0, + 1043.0, + 1403.0, + 1077.0, + 473.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1069.0, + 895.0, + 1069.0, + 895.0, + 1110.0, + 293.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1069.0, + 1027.0, + 1069.0, + 1027.0, + 1110.0, + 964.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1069.0, + 1406.0, + 1069.0, + 1406.0, + 1110.0, + 1402.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1103.0, + 351.0, + 1103.0, + 351.0, + 1139.0, + 291.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1103.0, + 885.0, + 1103.0, + 885.0, + 1139.0, + 666.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1103.0, + 1336.0, + 1103.0, + 1336.0, + 1139.0, + 1270.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1103.0, + 1406.0, + 1103.0, + 1406.0, + 1139.0, + 1403.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1133.0, + 299.0, + 1133.0, + 299.0, + 1170.0, + 296.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1133.0, + 1407.0, + 1133.0, + 1407.0, + 1170.0, + 1083.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1164.0, + 770.0, + 1164.0, + 770.0, + 1201.0, + 293.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1164.0, + 1406.0, + 1164.0, + 1406.0, + 1201.0, + 845.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1195.0, + 297.0, + 1195.0, + 297.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1195.0, + 1405.0, + 1195.0, + 1405.0, + 1229.0, + 450.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1225.0, + 634.0, + 1225.0, + 634.0, + 1262.0, + 293.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1225.0, + 676.0, + 1225.0, + 676.0, + 1262.0, + 667.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1225.0, + 744.0, + 1225.0, + 744.0, + 1262.0, + 696.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1225.0, + 804.0, + 1225.0, + 804.0, + 1262.0, + 765.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1225.0, + 1175.0, + 1225.0, + 1175.0, + 1262.0, + 980.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1262.0, + 1250.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1254.0, + 699.0, + 1254.0, + 699.0, + 1290.0, + 290.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1254.0, + 776.0, + 1254.0, + 776.0, + 1290.0, + 767.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1300.0, + 881.0, + 1300.0, + 881.0, + 1339.0, + 292.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1300.0, + 1406.0, + 1300.0, + 1406.0, + 1339.0, + 899.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1333.0, + 1064.0, + 1333.0, + 1064.0, + 1366.0, + 295.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1333.0, + 1404.0, + 1333.0, + 1404.0, + 1366.0, + 1215.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1363.0, + 401.0, + 1363.0, + 401.0, + 1398.0, + 294.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1363.0, + 1404.0, + 1363.0, + 1404.0, + 1398.0, + 470.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1395.0, + 433.0, + 1395.0, + 433.0, + 1430.0, + 292.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1395.0, + 903.0, + 1395.0, + 903.0, + 1430.0, + 480.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 931.0, + 522.0, + 931.0, + 522.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 931.0, + 1123.0, + 931.0, + 1123.0, + 970.0, + 544.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 931.0, + 1407.0, + 931.0, + 1407.0, + 970.0, + 1322.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 959.0, + 623.0, + 959.0, + 623.0, + 1004.0, + 290.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 959.0, + 755.0, + 959.0, + 755.0, + 1004.0, + 747.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 959.0, + 1408.0, + 959.0, + 1408.0, + 1004.0, + 774.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 994.0, + 649.0, + 994.0, + 649.0, + 1031.0, + 318.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 994.0, + 1365.0, + 994.0, + 1365.0, + 1031.0, + 671.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 994.0, + 1398.0, + 994.0, + 1398.0, + 1031.0, + 1385.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 756.0, + 589.0, + 756.0, + 589.0, + 795.0, + 296.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 756.0, + 1359.0, + 756.0, + 1359.0, + 795.0, + 636.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1391.0, + 756.0, + 1400.0, + 756.0, + 1400.0, + 795.0, + 1391.0, + 795.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/RO4DM85Z4P7/RO4DM85Z4P7.md b/parse/train/RO4DM85Z4P7/RO4DM85Z4P7.md new file mode 100644 index 0000000000000000000000000000000000000000..7405a178b6edfe075200cbfcd55ea00d8264ef71 --- /dev/null +++ b/parse/train/RO4DM85Z4P7/RO4DM85Z4P7.md @@ -0,0 +1,192 @@ +# XIRL: Cross-embodiment Inverse Reinforcement Learning + +Kevin Zakka1,3⇤, Andy $\mathbf { Z e n g } ^ { 2 }$ , Pete Florence2, Jonathan Tompson2, Jeannette $\mathbf { B o h g } ^ { 1 }$ , and Debidatta Dwibedi2 1Stanford University, 2Robotics at Google, 3UC Berkeley + +Abstract: We investigate the visual cross-embodiment imitation setting, in which agents learn policies from videos of other agents (such as humans) demonstrating the same task, but with stark differences in their embodiments – shape, actions, end-effector dynamics, etc. In this work, we demonstrate that it is possible to automatically discover and learn vision-based reward functions from cross-embodiment demonstration videos that are robust to these differences. Specifically, we present a self-supervised method for Crossembodiment Inverse Reinforcement Learning (XIRL) that leverages temporal cycleconsistency constraints to learn deep visual embeddings that capture task progression from offline videos of demonstrations across multiple expert agents, each performing the same task differently due to embodiment differences. Prior to our work, producing rewards from self-supervised embeddings typically required alignment with a reference trajectory, which may be difficult to acquire under stark embodiment differences. We show empirically that if the embeddings are aware of task progress, simply taking the negative distance between the current state and goal state in the learned embedding space is useful as a reward for training policies with reinforcement learning. We find our learned reward function not only works for embodiments seen during training, but also generalizes to entirely new embodiments. Additionally, when transferring real-world human demonstrations to a simulated robot, we find that XIRL is more sample efficient than current best methods. Qualitative results, code, and datasets are available at https://x-irl.github.io + +Keywords: inverse reinforcement learning, imitation learning, self-supervised learning + +# 1 Introduction + +The ability to learn new tasks from third-person demonstrations holds the potential to enable robots to leverage the vast quantities of tutorial videos that can be gleaned from the world-wide web (e.g., YouTube videos). However, distilling diverse and unstructured videos into motor skills with vision-based policies can be daunting – as the videos themselves are often not only captured from different camera viewpoints in different environments, but also with different experts that may use different tools, objects, or strategies to perform the same task. Perhaps most critically, there often exists a clear embodiment gap between the human expert demonstrator, and the robot hardware that executes the learned policies. One approach to close this gap is to learn a mapping between the human and robot embodiment [1], which is a non-trivial intermediate problem in itself. + +Despite considerable progress in learning policies with paired observations and actions (e.g., collected via teleoperation) [2, 3], much less work has been done in getting robots to learn policies from tasks defined only by third-person observations of demonstrations [4, 5, 6]. This is a surprisingly challenging problem, as different embodiments are likely to use unique strategies that suit them and allow them to make progress on a given task. For example, if asked to “place five pens into a cup”, a human hand is likely to scoop up all pens before slipping them into the cup, whereas a two-fingered gripper might instead need to pick and place each pen individually. Both strategies complete the task, but generate different state-action trajectories. In this setting, it may be difficult to acquire labeled frame-to-frame correspondences between expert demonstration videos and learned embodiments [6], particularly across a multitude of embodiments or experts. The approach we investigate instead is whether we can successfully learn tasks through a learned notion of task progress that is invariant to the embodiment performing the task. + +![](images/80a7e6efe913971b206ca18932e755e85617cbe2190ac680c41ec9b31c2e8a60.jpg) +Figure 1. Cross-embodiment Inverse Reinforcement Learning. We learn embodiment-invariant visual representations from offline video demonstrations (stick agents on the left) using TCC [7], then use the trained encoder to generate embodiment-invariant visual reward functions that can be used to learn policies on new embodiments (gripper on the right) with reinforcement learning. + +In this work, we propose to enable agents to imitate video demonstrations of experts – including ones with different embodiments – by using a task-specific, embodiment-invariant reward formulation trained via temporal cycle-consistency (TCC) [7]. We demonstrate how we can leverage an encoder trained with TCC to define dense rewards for downstream reinforcement learning (RL) policies via simple distances in the learned embedding space. Simulated experiments across four different embodiments show that these learned rewards are capable of generalizing to new embodiments, enabling unseen agents to learn the task via reinforcement, and surprisingly in some cases, exceeding the sample efficiency of the same agent learned with ground truth sparse rewards. We also demonstrate the effectiveness of our approach for learning robot policies using human demonstrations on the State Pusher environment from [6], where our reward is first learned on real-world human demonstrations, then used to teach a Sawyer arm how to perform the task in simulation. + +Our contributions are as follows: (i) We introduce Cross-embodiment Inverse Reinforcement Learning (XIRL), an effective, label-free framework for tackling cross-embodiment visual imitation learning. Our core contribution is to use self-supervised learning on third-person demonstration videos to define dense reward functions amenable for downstream reinforcement learning policies, (ii) Along with XIRL, we release a cross-embodiment imitation learning benchmark, X-MAGICAL, which features multiple simulated agents with different embodiments performing the same manipulation task, including one thousand expert demonstrations for each agent, (iii) We show that XIRL significantly outperforms alternative methods on both the X-MAGICAL benchmark and the human-to-robot transfer benchmark from [6], and discuss our observations, which point to interesting areas for future research, (iv) Finally, we introduce a real-world dataset, X-REAL (Cross-embodiment Real demonstrations), of a manipulation task performed with nine different embodiments, which can be used to evaluate cross-embodiment reward learning methods2. + +# 2 Related Work + +Traditional formulations of imitation learning [8, 1, 9] assume access to a corpus of expert demonstration data which includes both state and action trajectories of the expert policy. In the context of third-person imitation learning, including when learning from expert agents with different embodiments, obtaining access to ground-truth actions is difficult or impossible3. + +Inferring expert actions. To address this issue, several approaches either try to infer expert actions [10, 11, 12] – for example by training an inverse dynamics model on agent interaction data [10] – or employ forward prediction on the next state to imitate the expert without direct action supervision [13]. While these methods successfully address learning from observation-only demonstrations, they either do not support skill transfer to different policy embodiments at all, or they cannot take advantage of multiple embodiments in order to improve generalization to unseen policy configurations. We explicitly address these problems in this work. + +Imitation via learned reward functions. In contrast to imitation via supervised methods, such as BCO [10], a recent body of work [4, 5, 14, 6, 15] has focused on learning reward functions from expert video data and then training RL policies to maximize this reward. In [4], the authors combine ImageNet pre-trained visual features with an L2-norm distance reward to match policy and expert observations in a latent feature space. In their follow-up work [5], the reward is computed in a viewpoint-invariant representation that is self-supervised on video data. While both these methods are compelling in their use of cheap unlabeled data to learn invariant rewards, the use of a time index as a heuristic for defining weak correspondence is a constraining limitation for tasks that need to be executed at different speeds, or are not strictly monotonic (e.g., have ambiguous sub-task ordering). In [14] a dense reward is learned via unsupervised learning on YouTube data and the authors make no assumption about time alignment. However, in their work, the expert and learned policy are executed in the same domain and embodiment, an assumption we relax in our work. Framed in a multi-task learning setting, [16] propose training policies with morphologically different embodiments first on a similar set of proxy tasks, in order to learn a latent space to map between domains, and then sharing skills on a held-out task from one policy to another. A time-index heuristic is used to define a metric reward when performing RL training of the new task. In our work, the learned embedding finds correspondences in a fully-unsupervised fashion, without the need for such strict time alignment. In [17], a small sub-set of states is human labeled for goal success and a convolutional network is then trained to detect successful task completion from image observations, where on-policy samples are used as negatives for the classifier. By contrast, our learned embedding encodes task progress in its latent representation without the use of expensive human labels. + +Imitation via domain adaptation. An additional category of approaches to third-person imitation learning are those that perform domain adaptation of expert observations [18, 19, 20, 21]. For instance, in [18] a CycleGAN [22] architecture is used to perform pixel-level image-to-image translation between policy domains, which is then used to construct a reward function for a model-based RL algorithm. A similar model-free approach is proposed in [19]. In [20], a generative model is used to predict robot high-level sub-goals conditioned on a third-person demonstration video, and a lower-level control policy is trained in a task-agnostic manner. Similarly, [21] uses high level task conditioning from zero-shot transfer of expert demonstrations, but they use KL matching to perform both high and low-level imitation. In contrast to these methods, the unsupervised TCC alignment in this work avoids performing explicit domain adaptation or pixel-level image translation by instead learning a robust and invariant feature space in a fully offline fashion. + +Reinforcement learning with demonstrations. Recent work in offline-reinforcement learning [6] explicitly tackles the problem of policy embodiment and domain shift. Their method, Reinforcement Learning from Videos (RLV), uses a labelled collection of expert-policy state pairs in conjunction with adversarial training to learn an inverse dynamics model jointly optimized with the policy. In contrast, we avoid the limitation of collecting human-labeled dense state correspondences by using a self-supervised algorithm (i.e., TCC [7]) which uses cycle-consistency to automatically learn the correspondence between states of two domains. We also show that this formulation improves generalization to unseen embodiments. Since the problem setup is similar to ours, we also compare to their method as a baseline. + +# 3 Approach + +Our overall XIRL framework (Figure 1) addresses the cross-embodiment visual imitation problem (Section 3.1). The framework consists of first using TCC to self-supervise embodiment-invariant visual representations (Section 3.2), then using a novel embodiment-invariant visual reward function (Section 3.3) to perform cross-embodiment visual imitation via reinforcement learning (Section 3.4). + +# 3.1 Problem Formulation + +Our objective is to extract an agent-invariant definition of a task, via a learned reward function, from a dataset of videos of separate agents performing the same task. In particular, we are interested in agents that may solve the task in entirely different ways due to differences in their end-effector, shapes, dynamics, etc., which we refer to as embodiment differences. For example, consider how differently a vacuum gripper and a parallel-jaw gripper will grasp an object as a result of their respective end-effectors. Such a setup is quite common in robotic imitation learning, where we might have access to observation data of humans demonstrating a task, but want to teach a robot to perform it. It is very likely that the way the human executes the task will diverge from how the robot would execute it. + +We define a dataset of multiple agents performing the same task $T$ as $\textstyle D = \bigcup _ { i = 1 } ^ { n } D _ { i }$ , where $D _ { i }$ is an agent-specific dataset containing observations of only agent $i$ performing task $T$ . Each agent’s dataset $D _ { i }$ is a collection of videos defined as ${ { D } _ { i } } = \{ v _ { i } ^ { 1 } , v _ { i } ^ { 2 } . . . v _ { i } ^ { K } \}$ , where $v _ { i } ^ { j }$ represents the video of the $j ^ { t h }$ demonstration of agent $i$ successfully performing the task $T$ . We would like to highlight that $D$ only contains observation data, i.e., it does not store the actions taken by the respective agents. We use self-supervised representation learning techniques to learn task-specific representations from this dataset. + +![](images/d83a8d2ebcb5bc6f49888dea08e985c5543dca5689bfd625916e473bff58dfa5.jpg) +Figure 2. Difference in state distributions of the across different embodiments performing the same task in X-MAGICAL (Section 4.1). + +# 3.2 Representation Learning + +In this work, we use TCC [7] to learn task-specific representations in a self-supervised way. The method has been shown to learn useful representations on videos of the same action for temporally fine-grained downstream tasks. In their paper, the authors show that TCC representations can predict frame-level task progress, such as predicting how much water is in a cup during pouring, without requiring any human annotations. Task progress can provide dense signals for learning a new task and we would like to bake this property into our learned reward. Another advantage of TCC is that it does not require supervision for frame-level alignment (i.e., which frames in two videos correspond to each other). Such frame-to-frame correspondences are required by a prior method, RLV [6], to achieve successful reinforcement learning on the considered tasks, but we would like to avoid this type of manual supervision. + +We train an image encoder $\phi$ , that ingests an image $I$ and returns an embedding vector $\phi ( I )$ , using TCC. TCC assumes that there exist semantic temporal correspondences between two video sequences, even though they are not labeled and the actions may be executed at different speeds. Note that in our case, the assumption holds since all sequences in our dataset originate from the same task. Furthermore, even if two different agents accomplish the task very differently, there will be a common set of states or frames that will temporally correspond. When we apply the TCC loss, we compare frames of one agent performing the task with frames from another, and search for temporal similarities in how both execute the task. By performing multiple such comparisons and cycling-back (described in the next paragraph), TCC encodes task progress in its latent representation, a property that is useful for learning task-specific, yet embodiment-invariant reward functions. For completeness, we describe the training technique below. + +We define a dataset $D _ { \mathrm { a l l } } = \{ v _ { 1 } , v _ { 2 } . . . v _ { N } \}$ that contains the videos of all agents executing the same task $T$ . We are able to merge the datasets of different agents since TCC does not require embodiment labels (i.e., IDs) during training. We first sample a random batch of videos and embed all their frames using the aforementioned image encoder $\phi$ . For each video $v _ { i }$ , this results in a sequence of embeddings $V _ { i } { = } \{ \phi ( v _ { i } ^ { 1 } ) , \phi ( v _ { i } ^ { 2 } ) { \ldots } , \phi ( v _ { i } ^ { L _ { i } } ) \}$ , where $L _ { i }$ is the length of the $i ^ { t h }$ video. From this mini-batch of sequences of video frame embeddings, we choose a pair of sequences $V _ { i }$ and $V _ { j }$ and compute their TCC loss. In particular, we randomly sample a frame embedding from sequence $V _ { i } -$ say $V _ { i } ^ { t }$ corresponding to the $t ^ { t h }$ frame of video $v _ { i }$ – and compute the soft nearest-neighbor of $V _ { i } ^ { t }$ in sequence $V _ { j }$ in the embedding space as follows: + +$$ +\widetilde { V _ { i j } ^ { t } } = \sum _ { k } ^ { L _ { j } } \alpha _ { k } V _ { j } ^ { k } , \quad \mathrm { w h e r e } \quad \alpha _ { k } = \frac { e ^ { - \| V _ { i } ^ { t } - V _ { j } ^ { k } \| ^ { 2 } } } { \sum _ { k } ^ { L _ { j } } e ^ { - \| V _ { i } ^ { t } - V _ { j } ^ { k } \| ^ { 2 } } } +$$ + +We then cycle-back [7] to the first sequence $V _ { i }$ by computing the soft-nearest neighbor of $\widetilde { V _ { i j } ^ { t } }$ with all the frames in $V _ { i }$ . The probability of cycling-back to the $k ^ { t h }$ frame in $V _ { i }$ can be computed as: + +$$ +\beta _ { i j t } ^ { k } = \frac { e ^ { - \| \widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \| ^ { 2 } } } { \sum _ { k } ^ { L _ { i } } e ^ { - \| \widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \| ^ { 2 } } } +$$ + +The expected frame index we cycle-back to is then $\begin{array} { r } { \mu _ { i j } ^ { t } = \sum _ { k } ^ { L _ { i } } \beta _ { i j t } ^ { k } k } \end{array}$ . Since we know the index of the frame that started the cycle, in this case $t$ , we can minimize the mean-squared (MSE) error loss between $t$ and the closest index retrieved via soft-nearest neighbor, i.e., $\widetilde { V _ { i j } ^ { t } }$ . The loss for a single frame is thus: $L _ { i j } ^ { t } = ( \mu _ { i j } ^ { t } - t ) ^ { 2 }$ . Finally, we minimize the average loss $L$ over all frames in video $v _ { i }$ with all other videos in the dataset $v _ { j }$ , defined as $\begin{array} { r } { L = \sum _ { i j t } L _ { i j } ^ { t } } \end{array}$ . + +Table 1. Statistics of Demos of the X-MAGICAL Embodiments + +
EmbodimentMean ± Std.Dev. Demo Length (no. of frames)
Long-stick48.0 ±28.5
Medium-stick59.9 ±27.9
Short-stick81.7 ±35.0
Gripper110.8 ±39.8
+ +# 3.3 Reward Function + +Once the encoder $\phi$ has been trained on demonstrations of different agents performing the same task $T$ , we want to use it to transfer information about the task from one agent to another. We do this by leveraging $\phi$ to generate rewards via distances to goal observations in the learned embedding space. Specifically, we define the goal embedding $g$ as the mean embedding of the last frame of all the demonstration videos in our offline dataset $D _ { \mathrm { a l l } }$ . Concretely, $\scriptstyle g = \sum _ { i = 1 } ^ { N } \phi ( v _ { i } ^ { L _ { i } } ) \neq N$ , where $L _ { i }$ is the length of video $v _ { i }$ . Our reward $r$ then is the scaled negative distance of the current state embedding to the goal embedding $g$ i.e., $r ( s ) =$ $- 1 / \kappa \cdot \| \phi ( s ) - g \| _ { 2 } ^ { 2 }$ , where $\phi ( s )$ is the state embedding at the current timestep and $\kappa$ is a scale parameter that ensures the distances are in a range amenable for training reinforcement learning algorithms [23]. We found it effective to set $\kappa$ to be the average distance of the first frame’s embedding to the goal embedding for all the demonstrations in the dataset. Defining $r$ in this manner gives us several advantages: (a) it is dense, encoding both task completion and task progress, (b) it does not require any correspondence with a reference trajectory [5, 14] and (c) it sidesteps the need for a finite library of reference trajectories, unlike prior work [5, 16] that define time-indexed rewards relative to some reference trajectory. Thus, agents with trajectories of varying lengths (due to embodiment-specific constraints) can efficiently leverage this reward because the learned encoder can map different strategies to a common notion of task progress. + +# 3.4 Reinforcement Learning + +Using the pre-trained frozen encoder $\phi$ , we define a Markov Decision Process (MDP) for any agent as the tuple $\langle \bar { \boldsymbol { S } } , \boldsymbol { A } , \boldsymbol { P } , \boldsymbol { r } \rangle$ where $s$ is the set of possible states, $\mathcal { A }$ is the set of possible actions, $P$ is the state transition probability matrix encoding the dynamics of the environment (including the agent) and $r$ is the learned reward function (defined in Section 3.3). Notice how we are able to use the same reward function $r$ for any agent – even ones that the encoder may not have seen during training. Furthermore, this reward function solely depends on the learned encoder. Hence, the task represented by the MDP now depends solely on how well the encoder has learned task-specific representations since we do not use the environment reward to either define the task or learn the policy. This is an important distinction because we are expecting the encoder to generalize to new states that an agent might encounter during training, as the expert demonstrations in our dataset only contain successful trajectories. It is also possible to augment sparse rewards (which only define task success or failure) with our learned dense reward while training policies. + +# 4 Experimental Setup + +# 4.1 X-MAGICAL Benchmark + +We introduce a cross-embodiment imitation learning benchmark, X-MAGICAL, which is based on the imitation learning benchmark MAGICAL [24], implemented on top of the physics engine PyMunk [25]. In this work, we consider a simplified 2D equivalent of a common household robotic sweeping task, wherein an agent has to push three objects into a predefined zone in the environment (colored in pink). We choose this task specifically because its long-horizon nature highlights how different agent embodiments can generate entirely different trajectories. The reward in this environment is defined as the fraction of debris swept into the zone at the end of the episode. + +Multiple Embodiments in X-MAGICAL. We create multiple embodiments by designing agents with different shapes and end-effectors that induce variations in how each agent solves a task. In Figure 1, we show three of these embodiments and some sample trajectories that solve the sweeping task. Please see Appendix B for a detailed description of the benchmark. Three agents are shaped like a stick and they differ only in length. We call them short-stick, medium-stick and long-stick based on the length of their body. The agent in the last row is called gripper: it is circular in shape and has two arms that can actuate. All agents are capable of two actions - a rotation around their axis and a translation in a forward/backward direction along this axis (similar to the agent in the MAGICAL benchmark). All agents have a two-dimensional action space and use force and torque control to change their position and orientation respectively. The gripper agent has an additional degree of freedom for opening or closing its fingers. The default state of the gripper’s fingers is open. For all agents, the state representation is a 16-dimensional vector with the following information: $( { \bar { x } } , y )$ position of the agent, $( \cos \bar { \theta } , \sin \theta _ { . } ^ { \cdot }$ ) where $\theta$ is the agent’s 2D orientation, and for each of the three debris: its $( x , y )$ position, its distance to the agent and its distance to the goal zone. We frame-stack [26] three consecutive state vectors to encode temporal and velocity information, resulting in a final state dimension of 48. + +Demonstrations and Different Embodiment Strategies in X-MAGICAL. To learn task-specific representations for this task, we collect 1000 demonstrations per agent, where each demonstration consists in sweeping all three debris, initialized with random positions, into the target zone. This is the dataset $D _ { \mathrm { a l l } }$ (described in Section 3.1) containing observation-only agent-specific demonstrations. In Figure 2, we highlight the differences that exist between the trajectories taken by these agents. Figure 2a shows a heat map of the frequency of visits (state visitation count) of each agent at every 2D position in the grid, across all demonstrations in the dataset. We plot the 2D projection of the state visitation count onto the $X Y$ plane with a bin width of 0.1. Yellow encodes higher state visitation whereas blue encodes lower state visitation. We observe that agent long-stick has less coverage of the environment as opposed to agent gripper, which has significantly more coverage. Similarly, we show the distribution of debris locations for all agents across all demonstrations in Figure 2b. In Figure 2c, we plot a randomly sampled trajectory from each agent’s demonstration pool. We use transparency to encode the start (lighter) and end (darker) of the trajectory. It is clear from this figure that each agent solves the task in a different manner. Additionally, there is a significant difference in the time taken by each agent to execute this task, as shown in Table 1. Agent long-stick is able to finish the task the quickest because of its long shape that can sweep all the debris at once, while agents short-stick and gripper take longer because they have to frequently push or grasp one debris at a time. These differences are the types of challenges that a representation must overcome to successfully generalize across embodiments. As such, X-MAGICAL serves to create a highly simplified version of a real-world scenario where we might want to learn new tasks from an observation dataset of humans performing these tasks in highly diverse ways. + +# 4.2 Baselines + +Here, we describe the alternative reward functions we baseline our method against, color coded to match their appearance in Figs. 3, 4, and 5. 1) ImageNet: We use an ImageNet pre-trained ResNet-18 encoder with no additional self-supervised training, i.e., we load the pre-trained weights, discard the classification head, and use the 512-dimensional embedding space from the previous layer. 2) Goal classifier: We follow [27] and train a goal frame classifier on a binary classification task where the last frame of all the demonstrations is considered positive and all the others are considered negatives. We use the output probabilities of the classifier as the reward function. 3) LIFS: We implement the method from [16] which learns a feature space that is invariant to different embodiments using a contrastive loss function paired with an autoencoding loss. 4) TCN: single-view Time-Contrastive Network (TCN) [5] with positive and negative frame windows of 1 and 4 respectively. For more details regarding baseline implementations, see Appendix D.1.1. + +# 4.3 Implementation Details + +Our encoder for all experiments and methods is a ResNet-18 [28] initialized with ImageNet pre-trained weights. We replace the classification head with an embedding layer outputting a 32-dimensional vector. The encoder is trained on images of resolution $2 2 4 \times 2 2 4$ with ADAM [29] and a learning rate of $1 0 ^ { - 5 }$ Note that our learned reward is agnostic to the RL algorithm used – in this work, we opt for Soft-Actor Critic (SAC) [30], which is a reinforcement learning algorithm that has been successfully used to train policies for continuous control tasks [31]. Once the TCC encoder is trained, we use it to embed the observation frames as the agent interacts with the environment. + +# 5 Experiments + +We execute a series of experiments to evaluate whether the learned reward functions are effective at visual imitation. Specifically, our experiments seek to answer the following questions: first (Section 5.1), in the same-embodiment case, where the demonstration dataset $D$ contains the embodiment of the learning agent, does our method enable successful reinforcement learning for that agent? Next (Section 5.2), we investigate our primary interest, the cross-embodiment case, where the demonstration dataset $D$ does not contain the embodiment of the learning agent. To additionally test our approach using real-world data (Section 5.3), we use the dataset from [6] to leverage real-world human demonstrations to learn policies in simulation. Note that each embodiment’s performance is evaluated over 50 episodes and all figures plot the mean performance over 5 random seeds, with a standard deviation shading of $\pm 0 . 5$ . Videos of our results are in the supplementary video. + +![](images/43e882c2e5c9ae9bc4a4cb89eead1e6c094266389993350975196c84fc86b2ae.jpg) + +![](images/aad585723541b372d579fefbbb51f0a4e09326d6305a358a51fe8ad3884e021e.jpg) +Figure 3. Same-embodiment setting: Comparison of XIRL with other baseline reward functions, using SAC [30] for RL policy learning on the X-MAGICAL sweeping task. +Figure 4. Cross-embodiment setting: XIRL performs favorably when compared with other baseline reward functions, trained on observation-only demonstrations from different embodiments. Each agent{long-stick, medium-stick, short-stick, gripper} is shown using demonstrations from the other 3 embodiments, with SAC [30] for RL policy learning on the X-MAGICAL sweeping task. + +# 5.1 Results on Learning from Same-Embodiment Demonstrations + +In this experiment, we want to validate whether our approach of using a reward function trained with TCC is good enough to train agents to perform the task defined in a dataset of expert demonstrations. Note that the learned reward function has to be robust enough such that it can provide a useful signal for new states an agent might encounter while learning a policy and interacting with the environment. In Figure 3, we compare our method XIRL with baselines described in Section 4.2. We find XIRL is more sample-efficient than the other learned reward baselines. We attribute this sample efficiency to the fact that the TCC embeddings encode task progress which helps the agent learn to reach for objects and goal zones while interacting with the environment, rather than exploring in a purely random manner. This experiment provides evidence that XIRL’s reward function is suitable for downstream reinforcement learning. + +# 5.2 Results on Learning from Cross-Embodiment Demonstrations + +After verifying that XIRL works on the embodiments it was trained with, we move to the experiments that answer the core question in our work: can XIRL generalize to unseen embodiments? In this section we conduct experiments where the reward function is learned using embodiments that are different from the ones on which the policy is trained. As noted in Table 1, the timescales with which the agents execute the task can vary significantly. We conduct four experiments, each one corresponding to holding-out one agent from the expert demonstration set. In each such experiment, we train an encoder on demonstrations from the remaining three agents. We compare with reward functions learned using TCN, LIFS, and goal frame classifiers. While both TCC and TCN are contrastive losses, the former makes explicit comparisons across different embodiments, whereas the latter implicitly relies on an encoder shared across embodiments to learn the cross-embodiment representation. In Figure 4, we show that XIRL generalizes to new agents significantly better than the other learned reward baselines. + +# 5.3 Results on Learning from Real-World Cross-Embodiment Demonstrations + +In this experiment, we test how well we can learn rewards from more challenging real-world human demonstration videos. To do so, we use the dataset and State Pusher environment introduced in [6]. We train two XIRL encoders: XIRL (sim only) trained on 5 teleoperated simulated trajectories (i.e., no domain shift) and XIRL (real only) trained solely on the real-world human demonstrations without using any form of human labeling of paired frames. We compare our results to training the policy on the sparse reward from the environment and the RLV method presented in [6]. As demonstrated in Figure 5, we find our approach can improve the sample-efficiency of learning in the environment, compared to using RLV or solely the environment reward. + +# 5.4 Qualitative comparison between learned reward functions vs. handcrafted rewards + +In Figures 6 and 7, we visualize and compare the XIRL reward function with the environment’s reward (ground truth) for the Sweeping task from X-MAGICAL (see Sec. 4.1 for details) and the State Pusher and Drawer Opening tasks from $[ 6 ] ^ { 4 }$ . We find that the learned reward is highly correlated with the ground truth reward from the environment for both successful demos (first column in Figures 6 and 7) and unsuccessful demos (second column in Figures 6 and 7). It is especially encouraging to see that in a sparser reward environment like the Drawer Opening task, XIRL provides a dense signal that should allow the agent to learn the task more efficiently. Additionally, we can see that in the example of the failed collision trajectory (i.e., second row third column in Fig. 7), where the arm collides with the drawer rather than opening it, XIRL is able to provide it with a partial reward (i.e., for correctly moving towards the drawer) as opposed to the environment reward which remains zero. + +![](images/336f6e56fadde7992fbb34f9016b8184166d06e85e5dd38fc2086c18cc15eab3.jpg) +Figure 5. Real-world-demo cross-embodiment setting: Comparison of XIRL with baselines using the simulated State Pusher environment from [6]. XIRL (real only) leverages real-world demonstration videos of humans (left, row 2) to teach a robot arm in sim (left, row 1), but unlike [6], we do not use human-labeled data of paired frame correspondences. $\mathrm { R L V ^ { \ast } }$ denotes results taken verbatim from [6] which uses a different implementation of SAC for RL policy learning. + +![](images/7dc35f5c98241570164e1208386c3d21140466f479c4540f2cf56d7b06bd8fa5.jpg) + +![](images/af497430173dbd9d9ebdd0f01e8662f043721632071535ec3723b518aa43e7bc.jpg) +Figure 6. X-MAGICAL demo cross-embodiment setting: Visualizing our learned reward function XIRL vs. the environment’s sparse reward on a successful and unsuccessful demonstration, for the short-stick agent on the X-MAGICAL sweeping task. The learned reward was trained on the three other agents. +Figure 7. Real-world-demo cross-embodiment setting: Visualizing our learned XIRL reward function vs. the environment’s sparse reward on the State Pusher (top) and Drawer Opening (bottom) tasks from [6]. + +# 6 Conclusion + +This paper presents XIRL, a framework for learning vision-based reward functions from videos of expert demonstrators exhibiting different embodiments. XIRL uses TCC to self-supervise a deep visual encoder from videos, and uses this encoder to generate rewards via simple distances to goal observations in the embedding space. XIRL enables unseen agents with new embodiments to learn the demonstrated tasks via IRL. Reward functions from XIRL are fully self-supervised from videos, and we can successfully learn tasks without requiring manually paired video frames [6] between the demonstrator and learner. In this sense, our method presents favorable scalability to an arbitrary number of embodiments or experts with varying skill levels. Experiments show that policies learned via XIRL are more sample efficient than multiple baseline alternatives, including TCN [5], LIFS [16], and RLV [6]. While our experiments demonstrate promising results for learning policies in simulated environments using rewards learned from both simulated and real-world videos, we have yet to show policy learning on a real robot, which we look forward to trying post-COVID. + +# Acknowledgments + +We would like to thank Alex Nichol, Nick Hynes, Sean Kirmani, Brent Yi and Jimmy Wu for fruitful technical discussions, Sam Toyer for invaluable help with setting up the simulated benchmark, and Karl Schmeckpeper for discussions and help related to RLV. + +# References + +[1] B. D. Argall, S. Chernova, M. Veloso, and B. Browning. A survey of robot learning from demonstration. Robotics and autonomous systems, 57(5), 2009. 1, 2, 11 +[2] T. Zhang, Z. McCarthy, O. Jow, D. Lee, X. Chen, K. Goldberg, and P. Abbeel. Deep imitation learning for complex manipulation tasks from virtual reality teleoperation. In ICRA. IEEE, 2018. 1 +[3] P. Florence, L. Manuelli, and R. Tedrake. Self-supervised correspondence in visuomotor policy learning. IEEE RAL, 5(2), 2019. 1 +[4] P. Sermanet, K. Xu, and S. Levine. Unsupervised perceptual rewards for imitation learning. arXiv preprint arXiv:1612.06699, 2016. 1, 2, 11 +[5] P. Sermanet, C. Lynch, Y. Chebotar, J. Hsu, E. Jang, S. Schaal, and S. Levine. Time-contrastive networks: Self-supervised learning from video. In 2018 IEEE International Conference on Robotics and Automation (ICRA), pages 1134–1141. IEEE, 2018. 1, 2, 3, 5, 6, 8, 11, 16 +[6] K. Schmeckpeper, O. Rybkin, K. Daniilidis, S. Levine, and C. Finn. Reinforcement learning with videos: Combining offline observations with interaction, 2020. 1, 2, 3, 4, 6, 7, 8, 11, 20 +[7] D. Dwibedi, Y. Aytar, J. Tompson, P. Sermanet, and A. Zisserman. Temporal cycle-consistency learning. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. 2, 3, 4, 12, 16 +[8] C. Atkeson and S. Schaal. Robot learning from demonstration. In ICML, 1997. 2, 11 +[9] T. Osa, J. Pajarinen, G. Neumann, J. Bagnell, P. Abbeel, and J. Peters. An algorithmic perspective on imitation learning. Found. Trends Robotics, 7:1–179, 2018. 2, 11 +[10] F. Torabi, G. Warnell, and P. Stone. Behavioral cloning from observation. In IJCAI, 2018. 2, 11 +[11] A. D. Edwards, H. Sahni, Y. Schroecker, and C. L. Isbell. Imitating latent policies from observation. arXiv preprint arXiv:1805.07914, 2018. 2, 11 +[12] I. Radosavovic, X. Wang, L. Pinto, and J. Malik. State-only imitation learning for dexterous manipulation. arXiv preprint arXiv:2004.04650, 2020. 2, 11 +[13] D. Pathak, P. Mahmoudieh, G. Luo, P. Agrawal, D. Chen, Y. Shentu, E. Shelhamer, J. Malik, A. A. Efros, and T. Darrell. Zero-shot visual imitation. In Proceedings of the IEEE conference on computer vision and pattern recognition workshops, pages 2050–2053, 2018. 2, 11 +[14] Y. Aytar, T. Pfaff, D. Budden, T. Paine, Z. Wang, and N. de Freitas. Playing hard exploration games by watching youtube. In Advances in Neural Information Processing Systems, pages 2930–2941, 2018. 2, 3, 5, 11 +[15] O. Mees, M. Merklinger, G. Kalweit, and W. Burgard. Adversarial skill networks: Unsupervised robot skill learning from video. In 2020 IEEE International Conference on Robotics and Automation (ICRA), pages 4188–4194. IEEE, 2020. 2, 11 +[16] A. Gupta, C. Devin, Y. Liu, P. Abbeel, and S. Levine. Learning invariant feature spaces to transfer skills with reinforcement learning, 2017. 3, 5, 6, 8, 11, 16 +[17] A. Singh, L. Yang, K. Hartikainen, C. Finn, and S. Levine. End-to-end robotic reinforcement learning without reward engineering. arXiv preprint arXiv:1904.07854, 2019. 3, 11 +[18] L. Smith, N. Dhawan, M. Zhang, P. Abbeel, and S. Levine. Avid: Learning multi-stage tasks via pixel-level translation of human videos. arXiv preprint arXiv:1912.04443, 2019. 3, 11 +[19] Y. Liu, A. Gupta, P. Abbeel, and S. Levine. Imitation from observation: Learning to imitate behaviors from raw video via context translation. In ICRA. IEEE, 2018. 3, 11 +[20] P. Sharma, D. Pathak, and A. Gupta. Third-person visual imitation learning via decoupled hierarchical controller. In Advances in Neural Information Processing Systems, pages 2597–2607, 2019. 3, 11 +[21] D. Hejna, L. Pinto, and P. Abbeel. Hierarchically decoupled imitation for morphological transfer. In International Conference on Machine Learning, pages 4159–4171. PMLR, 2020. 3, 11 +[22] J.-Y. Zhu, T. Park, P. Isola, and A. A. Efros. Unpaired image-to-image translation using cycle-consistent adversarial networks. In ICCV, 2017. 3, 11 +[23] P. Henderson, R. Islam, P. Bachman, J. Pineau, D. Precup, and D. Meger. Deep reinforcement learning that matters. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 32, 2018. 5 +[24] S. Toyer, R. Shah, A. Critch, and S. Russell. The magical benchmark for robust imitation. arXiv preprint arXiv:2011.00401, 2020. 5, 12 +[25] V. Blomqvist. Pymunk: A easy-to-use pythonic rigid body 2d physics library (version 6.0.0), 2007. URL https://www.pymunk.org. 5 +[26] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. Riedmiller, A. K. Fidjeland, G. Ostrovski, et al. Human-level control through deep reinforcement learning. nature, 518(7540): 529–533, 2015. 6 +[27] M. Vecerik, O. Sushkov, D. Barker, T. Rothorl, T. Hester, and J. Scholz. A practical approach to insertion with ¨ variable socket position using deep reinforcement learning. In 2019 International Conference on Robotics and Automation (ICRA), pages 754–760. IEEE, 2019. 6, 15, 16 +[28] K. He, X. Zhang, S. Ren, and J. Sun. Deep residual learning for image recognition. 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 770–778, 2016. 6 +[29] D. P. Kingma and J. Ba. Adam: A method for stochastic optimization. arXiv preprint:1412.6980, 2014. 6 +[30] T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290, 2018. 6, 7, 17 +[31] T. Haarnoja, A. Zhou, K. Hartikainen, G. Tucker, S. Ha, J. Tan, V. Kumar, H. Zhu, A. Gupta, P. Abbeel, and S. Levine. Soft actor-critic algorithms and applications. arXiv preprint arXiv:1812.05905, 2018. 6 +[32] C. Yang, X. Ma, W. Huang, F. Sun, H. Liu, J. Huang, and C. Gan. Imitation learning from observations by minimizing inverse dynamics disagreement. ArXiv, abs/1910.04417, 2019. 11 +[33] L. Shao, T. Migimatsu, Q. Zhang, K. Yang, and J. Bohg. Concept2robot: Learning manipulation concepts from instructions and human demonstrations. Robotics: Science and Systems, 2020. 11 +[34] G. Berseth and C. Pal. Visual imitation learning with recurrent siamese networks. ArXiv, abs/1901.07186, 2019. 11 +[35] B. D. Ziebart, A. L. Maas, J. A. Bagnell, and A. K. Dey. Maximum entropy inverse reinforcement learning. In Aaai, volume 8, pages 1433–1438. Chicago, IL, USA, 2008. 11 +[36] B. D. Ziebart, J. A. Bagnell, and A. K. Dey. Modeling interaction via the principle of maximum causal entropy. In ICML, 2010. 11 +[37] I. J. Goodfellow, J. Pouget-Abadie, M. Mirza, B. Xu, D. Warde-Farley, S. Ozair, A. Courville, and Y. Bengio. Generative adversarial networks. arXiv preprint arXiv:1406.2661, 2014. 11 +[38] J. Ho and S. Ermon. Generative adversarial imitation learning. In NeurIPS, 2016. 11 +[39] F. Torabi, G. Warnell, and P. Stone. Generative adversarial imitation from observation. arXiv preprint arXiv:1807.06158, 2018. 11 +[40] B. C. Stadie, P. Abbeel, and I. Sutskever. Third-person imitation learning. arXiv:1703.01703, 2017. 11 +[41] Y. Lu and J. Tompson. Adail: Adaptive adversarial imitation learning. NeurIPS Workshop on Learning Transferable Skills,, 2019. 11 +[42] F. Liu, Z. Ling, T. Mu, and H. Su. State alignment-based imitation learning. arXiv preprint arXiv:1911.10947, 2019. 11 +[43] W. Sun, A. Vemula, B. Boots, and J. Bagnell. Provably efficient imitation learning from observation alone. ArXiv, abs/1905.10948, 2019. 11 +[44] K. Kim, Y. Gu, J. Song, S. Zhao, and S. Ermon. Domain adaptive imitation learning. arXiv, 2020. 11 +[45] A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. Lin, N. Gimelshein, L. Antiga, A. Desmaison, A. Kopf, E. Yang, Z. DeVito, M. Raison, A. Tejani, S. Chilamkurthy, B. Steiner, L. Fang, J. Bai, and S. Chintala. Pytorch: An imperative style, high-performance deep learning library. In Advances in Neural Information Processing Systems 32. Curran Associates, Inc., 2019. 14 +[46] A. Buslaev, A. Parinov, E. Khvedchenya, V. Iglovikov, and A. A. Kalinin. Albumentations: fast and flexible image augmentations. arXiv e-prints, 2018. 16 +[47] D. Yarats and I. Kostrikov. Soft actor-critic (sac) implementation in pytorch. https://github.com/ denisyarats/pytorch_sac, 2020. 17 +[48] H. van Hasselt, A. Guez, and D. Silver. Deep reinforcement learning with double q-learning. arXiv e-prints, 2015. 17 +[49] S. Fujimoto, H. van Hoof, and D. Meger. Addressing function approximation error in actor-critic methods. In Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018, 2018. 17 +[50] A. M. Saxe, J. L. McClelland, and S. Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. arXiv e-prints, 2013. 17 +[51] T. Chen, S. Kornblith, M. Norouzi, and G. Hinton. A simple framework for contrastive learning of visual representations. arXiv preprint arXiv:2002.05709, 2020. 17, 18 \ No newline at end of file diff --git a/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_content_list.json b/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..2b49991a97da08bf1f5493fa157bfa3d9f79ffa9 --- /dev/null +++ b/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_content_list.json @@ -0,0 +1,816 @@ +[ + { + "type": "text", + "text": "XIRL: Cross-embodiment Inverse Reinforcement Learning ", + "text_level": 1, + "bbox": [ + 202, + 101, + 797, + 150 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Kevin Zakka1,3⇤, Andy $\\mathbf { Z e n g } ^ { 2 }$ , Pete Florence2, Jonathan Tompson2, Jeannette $\\mathbf { B o h g } ^ { 1 }$ , and Debidatta Dwibedi2 1Stanford University, 2Robotics at Google, 3UC Berkeley ", + "bbox": [ + 281, + 180, + 717, + 223 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract: We investigate the visual cross-embodiment imitation setting, in which agents learn policies from videos of other agents (such as humans) demonstrating the same task, but with stark differences in their embodiments – shape, actions, end-effector dynamics, etc. In this work, we demonstrate that it is possible to automatically discover and learn vision-based reward functions from cross-embodiment demonstration videos that are robust to these differences. Specifically, we present a self-supervised method for Crossembodiment Inverse Reinforcement Learning (XIRL) that leverages temporal cycleconsistency constraints to learn deep visual embeddings that capture task progression from offline videos of demonstrations across multiple expert agents, each performing the same task differently due to embodiment differences. Prior to our work, producing rewards from self-supervised embeddings typically required alignment with a reference trajectory, which may be difficult to acquire under stark embodiment differences. We show empirically that if the embeddings are aware of task progress, simply taking the negative distance between the current state and goal state in the learned embedding space is useful as a reward for training policies with reinforcement learning. We find our learned reward function not only works for embodiments seen during training, but also generalizes to entirely new embodiments. Additionally, when transferring real-world human demonstrations to a simulated robot, we find that XIRL is more sample efficient than current best methods. Qualitative results, code, and datasets are available at https://x-irl.github.io ", + "bbox": [ + 233, + 273, + 766, + 526 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Keywords: inverse reinforcement learning, imitation learning, self-supervised learning ", + "bbox": [ + 233, + 540, + 763, + 554 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 570, + 305, + 587 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The ability to learn new tasks from third-person demonstrations holds the potential to enable robots to leverage the vast quantities of tutorial videos that can be gleaned from the world-wide web (e.g., YouTube videos). However, distilling diverse and unstructured videos into motor skills with vision-based policies can be daunting – as the videos themselves are often not only captured from different camera viewpoints in different environments, but also with different experts that may use different tools, objects, or strategies to perform the same task. Perhaps most critically, there often exists a clear embodiment gap between the human expert demonstrator, and the robot hardware that executes the learned policies. One approach to close this gap is to learn a mapping between the human and robot embodiment [1], which is a non-trivial intermediate problem in itself. ", + "bbox": [ + 174, + 595, + 825, + 715 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Despite considerable progress in learning policies with paired observations and actions (e.g., collected via teleoperation) [2, 3], much less work has been done in getting robots to learn policies from tasks defined only by third-person observations of demonstrations [4, 5, 6]. This is a surprisingly challenging problem, as different embodiments are likely to use unique strategies that suit them and allow them to make progress on a given task. For example, if asked to “place five pens into a cup”, a human hand is likely to scoop up all pens before slipping them into the cup, whereas a two-fingered gripper might instead need to pick and place each pen individually. Both strategies complete the task, but generate different state-action trajectories. In this setting, it may be difficult to acquire labeled frame-to-frame correspondences between expert demonstration videos and learned embodiments [6], particularly across a multitude of embodiments or experts. The approach we investigate instead is whether we can successfully learn tasks through a learned notion of task progress that is invariant to the embodiment performing the task. ", + "bbox": [ + 174, + 722, + 825, + 867 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/80a7e6efe913971b206ca18932e755e85617cbe2190ac680c41ec9b31c2e8a60.jpg", + "image_caption": [ + "Figure 1. Cross-embodiment Inverse Reinforcement Learning. We learn embodiment-invariant visual representations from offline video demonstrations (stick agents on the left) using TCC [7], then use the trained encoder to generate embodiment-invariant visual reward functions that can be used to learn policies on new embodiments (gripper on the right) with reinforcement learning. " + ], + "image_footnote": [], + "bbox": [ + 176, + 92, + 821, + 300 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this work, we propose to enable agents to imitate video demonstrations of experts – including ones with different embodiments – by using a task-specific, embodiment-invariant reward formulation trained via temporal cycle-consistency (TCC) [7]. We demonstrate how we can leverage an encoder trained with TCC to define dense rewards for downstream reinforcement learning (RL) policies via simple distances in the learned embedding space. Simulated experiments across four different embodiments show that these learned rewards are capable of generalizing to new embodiments, enabling unseen agents to learn the task via reinforcement, and surprisingly in some cases, exceeding the sample efficiency of the same agent learned with ground truth sparse rewards. We also demonstrate the effectiveness of our approach for learning robot policies using human demonstrations on the State Pusher environment from [6], where our reward is first learned on real-world human demonstrations, then used to teach a Sawyer arm how to perform the task in simulation. ", + "bbox": [ + 174, + 344, + 825, + 477 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our contributions are as follows: (i) We introduce Cross-embodiment Inverse Reinforcement Learning (XIRL), an effective, label-free framework for tackling cross-embodiment visual imitation learning. Our core contribution is to use self-supervised learning on third-person demonstration videos to define dense reward functions amenable for downstream reinforcement learning policies, (ii) Along with XIRL, we release a cross-embodiment imitation learning benchmark, X-MAGICAL, which features multiple simulated agents with different embodiments performing the same manipulation task, including one thousand expert demonstrations for each agent, (iii) We show that XIRL significantly outperforms alternative methods on both the X-MAGICAL benchmark and the human-to-robot transfer benchmark from [6], and discuss our observations, which point to interesting areas for future research, (iv) Finally, we introduce a real-world dataset, X-REAL (Cross-embodiment Real demonstrations), of a manipulation task performed with nine different embodiments, which can be used to evaluate cross-embodiment reward learning methods2. ", + "bbox": [ + 174, + 483, + 825, + 631 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 641, + 315, + 657 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Traditional formulations of imitation learning [8, 1, 9] assume access to a corpus of expert demonstration data which includes both state and action trajectories of the expert policy. In the context of third-person imitation learning, including when learning from expert agents with different embodiments, obtaining access to ground-truth actions is difficult or impossible3. ", + "bbox": [ + 174, + 666, + 825, + 722 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Inferring expert actions. To address this issue, several approaches either try to infer expert actions [10, 11, 12] – for example by training an inverse dynamics model on agent interaction data [10] – or employ forward prediction on the next state to imitate the expert without direct action supervision [13]. While these methods successfully address learning from observation-only demonstrations, they either do not support skill transfer to different policy embodiments at all, or they cannot take advantage of multiple embodiments in order to improve generalization to unseen policy configurations. We explicitly address these problems in this work. ", + "bbox": [ + 174, + 727, + 825, + 809 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Imitation via learned reward functions. In contrast to imitation via supervised methods, such as BCO [10], a recent body of work [4, 5, 14, 6, 15] has focused on learning reward functions from expert video data and then training RL policies to maximize this reward. In [4], the authors combine ImageNet pre-trained visual features with an L2-norm distance reward to match policy and expert observations in a latent feature space. In their follow-up work [5], the reward is computed in a viewpoint-invariant representation that is self-supervised on video data. While both these methods are compelling in their use of cheap unlabeled data to learn invariant rewards, the use of a time index as a heuristic for defining weak correspondence is a constraining limitation for tasks that need to be executed at different speeds, or are not strictly monotonic (e.g., have ambiguous sub-task ordering). In [14] a dense reward is learned via unsupervised learning on YouTube data and the authors make no assumption about time alignment. However, in their work, the expert and learned policy are executed in the same domain and embodiment, an assumption we relax in our work. Framed in a multi-task learning setting, [16] propose training policies with morphologically different embodiments first on a similar set of proxy tasks, in order to learn a latent space to map between domains, and then sharing skills on a held-out task from one policy to another. A time-index heuristic is used to define a metric reward when performing RL training of the new task. In our work, the learned embedding finds correspondences in a fully-unsupervised fashion, without the need for such strict time alignment. In [17], a small sub-set of states is human labeled for goal success and a convolutional network is then trained to detect successful task completion from image observations, where on-policy samples are used as negatives for the classifier. By contrast, our learned embedding encodes task progress in its latent representation without the use of expensive human labels. ", + "bbox": [ + 174, + 814, + 823, + 867 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 303 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Imitation via domain adaptation. An additional category of approaches to third-person imitation learning are those that perform domain adaptation of expert observations [18, 19, 20, 21]. For instance, in [18] a CycleGAN [22] architecture is used to perform pixel-level image-to-image translation between policy domains, which is then used to construct a reward function for a model-based RL algorithm. A similar model-free approach is proposed in [19]. In [20], a generative model is used to predict robot high-level sub-goals conditioned on a third-person demonstration video, and a lower-level control policy is trained in a task-agnostic manner. Similarly, [21] uses high level task conditioning from zero-shot transfer of expert demonstrations, but they use KL matching to perform both high and low-level imitation. In contrast to these methods, the unsupervised TCC alignment in this work avoids performing explicit domain adaptation or pixel-level image translation by instead learning a robust and invariant feature space in a fully offline fashion. ", + "bbox": [ + 174, + 309, + 825, + 443 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Reinforcement learning with demonstrations. Recent work in offline-reinforcement learning [6] explicitly tackles the problem of policy embodiment and domain shift. Their method, Reinforcement Learning from Videos (RLV), uses a labelled collection of expert-policy state pairs in conjunction with adversarial training to learn an inverse dynamics model jointly optimized with the policy. In contrast, we avoid the limitation of collecting human-labeled dense state correspondences by using a self-supervised algorithm (i.e., TCC [7]) which uses cycle-consistency to automatically learn the correspondence between states of two domains. We also show that this formulation improves generalization to unseen embodiments. Since the problem setup is similar to ours, we also compare to their method as a baseline. ", + "bbox": [ + 174, + 449, + 825, + 556 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Approach ", + "text_level": 1, + "bbox": [ + 174, + 565, + 284, + 583 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our overall XIRL framework (Figure 1) addresses the cross-embodiment visual imitation problem (Section 3.1). The framework consists of first using TCC to self-supervise embodiment-invariant visual representations (Section 3.2), then using a novel embodiment-invariant visual reward function (Section 3.3) to perform cross-embodiment visual imitation via reinforcement learning (Section 3.4). ", + "bbox": [ + 174, + 592, + 825, + 645 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 Problem Formulation ", + "text_level": 1, + "bbox": [ + 174, + 652, + 354, + 666 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our objective is to extract an agent-invariant definition of a task, via a learned reward function, from a dataset of videos of separate agents performing the same task. In particular, we are interested in agents that may solve the task in entirely different ways due to differences in their end-effector, shapes, dynamics, etc., which we refer to as embodiment differences. For example, consider how differently a vacuum gripper and a parallel-jaw gripper will grasp an object as a result of their respective end-effectors. Such a setup is quite common in robotic imitation learning, where we might have access to observation data of humans demonstrating a task, but want to teach a robot to perform it. It is very likely that the way the human executes the task will diverge from how the robot would execute it. ", + "bbox": [ + 173, + 672, + 825, + 780 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We define a dataset of multiple agents performing the same task $T$ as $\\textstyle D = \\bigcup _ { i = 1 } ^ { n } D _ { i }$ , where $D _ { i }$ is an agent-specific dataset containing observations of only agent $i$ performing task $T$ . Each agent’s dataset $D _ { i }$ is a collection of videos defined as ${ { D } _ { i } } = \\{ v _ { i } ^ { 1 } , v _ { i } ^ { 2 } . . . v _ { i } ^ { K } \\}$ , where $v _ { i } ^ { j }$ represents the video of the $j ^ { t h }$ demonstration of agent $i$ successfully performing the task $T$ . We would like to highlight that $D$ only contains observation data, i.e., it does not store the actions taken by the respective agents. We use self-supervised representation learning techniques to learn task-specific representations from this dataset. ", + "bbox": [ + 174, + 785, + 823, + 869 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/d83a8d2ebcb5bc6f49888dea08e985c5543dca5689bfd625916e473bff58dfa5.jpg", + "image_caption": [ + "Figure 2. Difference in state distributions of the across different embodiments performing the same task in X-MAGICAL (Section 4.1). " + ], + "image_footnote": [], + "bbox": [ + 202, + 87, + 797, + 242 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 Representation Learning ", + "text_level": 1, + "bbox": [ + 173, + 270, + 379, + 284 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this work, we use TCC [7] to learn task-specific representations in a self-supervised way. The method has been shown to learn useful representations on videos of the same action for temporally fine-grained downstream tasks. In their paper, the authors show that TCC representations can predict frame-level task progress, such as predicting how much water is in a cup during pouring, without requiring any human annotations. Task progress can provide dense signals for learning a new task and we would like to bake this property into our learned reward. Another advantage of TCC is that it does not require supervision for frame-level alignment (i.e., which frames in two videos correspond to each other). Such frame-to-frame correspondences are required by a prior method, RLV [6], to achieve successful reinforcement learning on the considered tasks, but we would like to avoid this type of manual supervision. ", + "bbox": [ + 173, + 290, + 825, + 411 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We train an image encoder $\\phi$ , that ingests an image $I$ and returns an embedding vector $\\phi ( I )$ , using TCC. TCC assumes that there exist semantic temporal correspondences between two video sequences, even though they are not labeled and the actions may be executed at different speeds. Note that in our case, the assumption holds since all sequences in our dataset originate from the same task. Furthermore, even if two different agents accomplish the task very differently, there will be a common set of states or frames that will temporally correspond. When we apply the TCC loss, we compare frames of one agent performing the task with frames from another, and search for temporal similarities in how both execute the task. By performing multiple such comparisons and cycling-back (described in the next paragraph), TCC encodes task progress in its latent representation, a property that is useful for learning task-specific, yet embodiment-invariant reward functions. For completeness, we describe the training technique below. ", + "bbox": [ + 173, + 416, + 825, + 550 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We define a dataset $D _ { \\mathrm { a l l } } = \\{ v _ { 1 } , v _ { 2 } . . . v _ { N } \\}$ that contains the videos of all agents executing the same task $T$ . We are able to merge the datasets of different agents since TCC does not require embodiment labels (i.e., IDs) during training. We first sample a random batch of videos and embed all their frames using the aforementioned image encoder $\\phi$ . For each video $v _ { i }$ , this results in a sequence of embeddings $V _ { i } { = } \\{ \\phi ( v _ { i } ^ { 1 } ) , \\phi ( v _ { i } ^ { 2 } ) { \\ldots } , \\phi ( v _ { i } ^ { L _ { i } } ) \\}$ , where $L _ { i }$ is the length of the $i ^ { t h }$ video. From this mini-batch of sequences of video frame embeddings, we choose a pair of sequences $V _ { i }$ and $V _ { j }$ and compute their TCC loss. In particular, we randomly sample a frame embedding from sequence $V _ { i } -$ say $V _ { i } ^ { t }$ corresponding to the $t ^ { t h }$ frame of video $v _ { i }$ – and compute the soft nearest-neighbor of $V _ { i } ^ { t }$ in sequence $V _ { j }$ in the embedding space as follows: ", + "bbox": [ + 173, + 555, + 825, + 670 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/1aa1ecc85f3ff03327a4b6dddcafdcba98280d3be0b009e0bbd148da1397a899.jpg", + "text": "$$\n\\widetilde { V _ { i j } ^ { t } } = \\sum _ { k } ^ { L _ { j } } \\alpha _ { k } V _ { j } ^ { k } , \\quad \\mathrm { w h e r e } \\quad \\alpha _ { k } = \\frac { e ^ { - \\| V _ { i } ^ { t } - V _ { j } ^ { k } \\| ^ { 2 } } } { \\sum _ { k } ^ { L _ { j } } e ^ { - \\| V _ { i } ^ { t } - V _ { j } ^ { k } \\| ^ { 2 } } }\n$$", + "text_format": "latex", + "bbox": [ + 334, + 678, + 661, + 722 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We then cycle-back [7] to the first sequence $V _ { i }$ by computing the soft-nearest neighbor of $\\widetilde { V _ { i j } ^ { t } }$ with all the frames in $V _ { i }$ . The probability of cycling-back to the $k ^ { t h }$ frame in $V _ { i }$ can be computed as: ", + "bbox": [ + 173, + 733, + 826, + 767 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/5cf53c96374e1685f1e050502ffcece393d71ff448300d600ba1331a904ec29b.jpg", + "text": "$$\n\\beta _ { i j t } ^ { k } = \\frac { e ^ { - \\| \\widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \\| ^ { 2 } } } { \\sum _ { k } ^ { L _ { i } } e ^ { - \\| \\widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \\| ^ { 2 } } }\n$$", + "text_format": "latex", + "bbox": [ + 419, + 773, + 578, + 820 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The expected frame index we cycle-back to is then $\\begin{array} { r } { \\mu _ { i j } ^ { t } = \\sum _ { k } ^ { L _ { i } } \\beta _ { i j t } ^ { k } k } \\end{array}$ . Since we know the index of the frame that started the cycle, in this case $t$ , we can minimize the mean-squared (MSE) error loss between $t$ and the closest index retrieved via soft-nearest neighbor, i.e., $\\widetilde { V _ { i j } ^ { t } }$ . The loss for a single frame is thus: $L _ { i j } ^ { t } = ( \\mu _ { i j } ^ { t } - t ) ^ { 2 }$ . Finally, we minimize the average loss $L$ over all frames in video $v _ { i }$ with all other videos in the dataset $v _ { j }$ , defined as $\\begin{array} { r } { L = \\sum _ { i j t } L _ { i j } ^ { t } } \\end{array}$ . ", + "bbox": [ + 173, + 829, + 825, + 915 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/e8a8a00b088bfc240df0ba0bc685c6840d6d6dd62347522e1e34bdf89585ff9e.jpg", + "table_caption": [ + "Table 1. Statistics of Demos of the X-MAGICAL Embodiments " + ], + "table_footnote": [], + "table_body": "
EmbodimentMean ± Std.Dev. Demo Length (no. of frames)
Long-stick48.0 ±28.5
Medium-stick59.9 ±27.9
Short-stick81.7 ±35.0
Gripper110.8 ±39.8
", + "bbox": [ + 339, + 119, + 653, + 212 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 Reward Function ", + "text_level": 1, + "bbox": [ + 174, + 236, + 328, + 251 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Once the encoder $\\phi$ has been trained on demonstrations of different agents performing the same task $T$ , we want to use it to transfer information about the task from one agent to another. We do this by leveraging $\\phi$ to generate rewards via distances to goal observations in the learned embedding space. Specifically, we define the goal embedding $g$ as the mean embedding of the last frame of all the demonstration videos in our offline dataset $D _ { \\mathrm { a l l } }$ . Concretely, $\\scriptstyle g = \\sum _ { i = 1 } ^ { N } \\phi ( v _ { i } ^ { L _ { i } } ) \\neq N$ , where $L _ { i }$ is the length of video $v _ { i }$ . Our reward $r$ then is the scaled negative distance of the current state embedding to the goal embedding $g$ i.e., $r ( s ) =$ $- 1 / \\kappa \\cdot \\| \\phi ( s ) - g \\| _ { 2 } ^ { 2 }$ , where $\\phi ( s )$ is the state embedding at the current timestep and $\\kappa$ is a scale parameter that ensures the distances are in a range amenable for training reinforcement learning algorithms [23]. We found it effective to set $\\kappa$ to be the average distance of the first frame’s embedding to the goal embedding for all the demonstrations in the dataset. Defining $r$ in this manner gives us several advantages: (a) it is dense, encoding both task completion and task progress, (b) it does not require any correspondence with a reference trajectory [5, 14] and (c) it sidesteps the need for a finite library of reference trajectories, unlike prior work [5, 16] that define time-indexed rewards relative to some reference trajectory. Thus, agents with trajectories of varying lengths (due to embodiment-specific constraints) can efficiently leverage this reward because the learned encoder can map different strategies to a common notion of task progress. ", + "bbox": [ + 173, + 257, + 825, + 460 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.4 Reinforcement Learning ", + "text_level": 1, + "bbox": [ + 174, + 467, + 375, + 482 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Using the pre-trained frozen encoder $\\phi$ , we define a Markov Decision Process (MDP) for any agent as the tuple $\\langle \\bar { \\boldsymbol { S } } , \\boldsymbol { A } , \\boldsymbol { P } , \\boldsymbol { r } \\rangle$ where $s$ is the set of possible states, $\\mathcal { A }$ is the set of possible actions, $P$ is the state transition probability matrix encoding the dynamics of the environment (including the agent) and $r$ is the learned reward function (defined in Section 3.3). Notice how we are able to use the same reward function $r$ for any agent – even ones that the encoder may not have seen during training. Furthermore, this reward function solely depends on the learned encoder. Hence, the task represented by the MDP now depends solely on how well the encoder has learned task-specific representations since we do not use the environment reward to either define the task or learn the policy. This is an important distinction because we are expecting the encoder to generalize to new states that an agent might encounter during training, as the expert demonstrations in our dataset only contain successful trajectories. It is also possible to augment sparse rewards (which only define task success or failure) with our learned dense reward while training policies. ", + "bbox": [ + 173, + 488, + 825, + 635 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 Experimental Setup ", + "text_level": 1, + "bbox": [ + 174, + 645, + 362, + 662 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 X-MAGICAL Benchmark ", + "text_level": 1, + "bbox": [ + 174, + 670, + 387, + 685 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We introduce a cross-embodiment imitation learning benchmark, X-MAGICAL, which is based on the imitation learning benchmark MAGICAL [24], implemented on top of the physics engine PyMunk [25]. In this work, we consider a simplified 2D equivalent of a common household robotic sweeping task, wherein an agent has to push three objects into a predefined zone in the environment (colored in pink). We choose this task specifically because its long-horizon nature highlights how different agent embodiments can generate entirely different trajectories. The reward in this environment is defined as the fraction of debris swept into the zone at the end of the episode. ", + "bbox": [ + 174, + 691, + 825, + 785 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Multiple Embodiments in X-MAGICAL. We create multiple embodiments by designing agents with different shapes and end-effectors that induce variations in how each agent solves a task. In Figure 1, we show three of these embodiments and some sample trajectories that solve the sweeping task. Please see Appendix B for a detailed description of the benchmark. Three agents are shaped like a stick and they differ only in length. We call them short-stick, medium-stick and long-stick based on the length of their body. The agent in the last row is called gripper: it is circular in shape and has two arms that can actuate. All agents are capable of two actions - a rotation around their axis and a translation in a forward/backward direction along this axis (similar to the agent in the MAGICAL benchmark). All agents have a two-dimensional action space and use force and torque control to change their position and orientation respectively. The gripper agent has an additional degree of freedom for opening or closing its fingers. The default state of the gripper’s fingers is open. For all agents, the state representation is a 16-dimensional vector with the following information: $( { \\bar { x } } , y )$ position of the agent, $( \\cos \\bar { \\theta } , \\sin \\theta _ { . } ^ { \\cdot }$ ) where $\\theta$ is the agent’s 2D orientation, and for each of the three debris: its $( x , y )$ position, its distance to the agent and its distance to the goal zone. We frame-stack [26] three consecutive state vectors to encode temporal and velocity information, resulting in a final state dimension of 48. ", + "bbox": [ + 174, + 790, + 825, + 911 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 171 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Demonstrations and Different Embodiment Strategies in X-MAGICAL. To learn task-specific representations for this task, we collect 1000 demonstrations per agent, where each demonstration consists in sweeping all three debris, initialized with random positions, into the target zone. This is the dataset $D _ { \\mathrm { a l l } }$ (described in Section 3.1) containing observation-only agent-specific demonstrations. In Figure 2, we highlight the differences that exist between the trajectories taken by these agents. Figure 2a shows a heat map of the frequency of visits (state visitation count) of each agent at every 2D position in the grid, across all demonstrations in the dataset. We plot the 2D projection of the state visitation count onto the $X Y$ plane with a bin width of 0.1. Yellow encodes higher state visitation whereas blue encodes lower state visitation. We observe that agent long-stick has less coverage of the environment as opposed to agent gripper, which has significantly more coverage. Similarly, we show the distribution of debris locations for all agents across all demonstrations in Figure 2b. In Figure 2c, we plot a randomly sampled trajectory from each agent’s demonstration pool. We use transparency to encode the start (lighter) and end (darker) of the trajectory. It is clear from this figure that each agent solves the task in a different manner. Additionally, there is a significant difference in the time taken by each agent to execute this task, as shown in Table 1. Agent long-stick is able to finish the task the quickest because of its long shape that can sweep all the debris at once, while agents short-stick and gripper take longer because they have to frequently push or grasp one debris at a time. These differences are the types of challenges that a representation must overcome to successfully generalize across embodiments. As such, X-MAGICAL serves to create a highly simplified version of a real-world scenario where we might want to learn new tasks from an observation dataset of humans performing these tasks in highly diverse ways. ", + "bbox": [ + 174, + 178, + 825, + 429 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 Baselines ", + "text_level": 1, + "bbox": [ + 174, + 436, + 272, + 450 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Here, we describe the alternative reward functions we baseline our method against, color coded to match their appearance in Figs. 3, 4, and 5. 1) ImageNet: We use an ImageNet pre-trained ResNet-18 encoder with no additional self-supervised training, i.e., we load the pre-trained weights, discard the classification head, and use the 512-dimensional embedding space from the previous layer. 2) Goal classifier: We follow [27] and train a goal frame classifier on a binary classification task where the last frame of all the demonstrations is considered positive and all the others are considered negatives. We use the output probabilities of the classifier as the reward function. 3) LIFS: We implement the method from [16] which learns a feature space that is invariant to different embodiments using a contrastive loss function paired with an autoencoding loss. 4) TCN: single-view Time-Contrastive Network (TCN) [5] with positive and negative frame windows of 1 and 4 respectively. For more details regarding baseline implementations, see Appendix D.1.1. ", + "bbox": [ + 174, + 458, + 825, + 592 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.3 Implementation Details ", + "text_level": 1, + "bbox": [ + 174, + 598, + 366, + 613 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our encoder for all experiments and methods is a ResNet-18 [28] initialized with ImageNet pre-trained weights. We replace the classification head with an embedding layer outputting a 32-dimensional vector. The encoder is trained on images of resolution $2 2 4 \\times 2 2 4$ with ADAM [29] and a learning rate of $1 0 ^ { - 5 }$ Note that our learned reward is agnostic to the RL algorithm used – in this work, we opt for Soft-Actor Critic (SAC) [30], which is a reinforcement learning algorithm that has been successfully used to train policies for continuous control tasks [31]. Once the TCC encoder is trained, we use it to embed the observation frames as the agent interacts with the environment. ", + "bbox": [ + 174, + 619, + 825, + 713 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 Experiments ", + "text_level": 1, + "bbox": [ + 173, + 723, + 307, + 739 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We execute a series of experiments to evaluate whether the learned reward functions are effective at visual imitation. Specifically, our experiments seek to answer the following questions: first (Section 5.1), in the same-embodiment case, where the demonstration dataset $D$ contains the embodiment of the learning agent, does our method enable successful reinforcement learning for that agent? Next (Section 5.2), we investigate our primary interest, the cross-embodiment case, where the demonstration dataset $D$ does not contain the embodiment of the learning agent. To additionally test our approach using real-world data (Section 5.3), we use the dataset from [6] to leverage real-world human demonstrations to learn policies in simulation. Note that each embodiment’s performance is evaluated over 50 episodes and all figures plot the mean performance over 5 random seeds, with a standard deviation shading of $\\pm 0 . 5$ . Videos of our results are in the supplementary video. ", + "bbox": [ + 174, + 748, + 825, + 881 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/43e882c2e5c9ae9bc4a4cb89eead1e6c094266389993350975196c84fc86b2ae.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 174, + 90, + 821, + 195 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/aad585723541b372d579fefbbb51f0a4e09326d6305a358a51fe8ad3884e021e.jpg", + "image_caption": [ + "Figure 3. Same-embodiment setting: Comparison of XIRL with other baseline reward functions, using SAC [30] for RL policy learning on the X-MAGICAL sweeping task. ", + "Figure 4. Cross-embodiment setting: XIRL performs favorably when compared with other baseline reward functions, trained on observation-only demonstrations from different embodiments. Each agent{long-stick, medium-stick, short-stick, gripper} is shown using demonstrations from the other 3 embodiments, with SAC [30] for RL policy learning on the X-MAGICAL sweeping task. " + ], + "image_footnote": [], + "bbox": [ + 174, + 224, + 821, + 329 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.1 Results on Learning from Same-Embodiment Demonstrations ", + "text_level": 1, + "bbox": [ + 173, + 368, + 622, + 382 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this experiment, we want to validate whether our approach of using a reward function trained with TCC is good enough to train agents to perform the task defined in a dataset of expert demonstrations. Note that the learned reward function has to be robust enough such that it can provide a useful signal for new states an agent might encounter while learning a policy and interacting with the environment. In Figure 3, we compare our method XIRL with baselines described in Section 4.2. We find XIRL is more sample-efficient than the other learned reward baselines. We attribute this sample efficiency to the fact that the TCC embeddings encode task progress which helps the agent learn to reach for objects and goal zones while interacting with the environment, rather than exploring in a purely random manner. This experiment provides evidence that XIRL’s reward function is suitable for downstream reinforcement learning. ", + "bbox": [ + 174, + 388, + 825, + 507 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 Results on Learning from Cross-Embodiment Demonstrations ", + "text_level": 1, + "bbox": [ + 173, + 515, + 622, + 530 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "After verifying that XIRL works on the embodiments it was trained with, we move to the experiments that answer the core question in our work: can XIRL generalize to unseen embodiments? In this section we conduct experiments where the reward function is learned using embodiments that are different from the ones on which the policy is trained. As noted in Table 1, the timescales with which the agents execute the task can vary significantly. We conduct four experiments, each one corresponding to holding-out one agent from the expert demonstration set. In each such experiment, we train an encoder on demonstrations from the remaining three agents. We compare with reward functions learned using TCN, LIFS, and goal frame classifiers. While both TCC and TCN are contrastive losses, the former makes explicit comparisons across different embodiments, whereas the latter implicitly relies on an encoder shared across embodiments to learn the cross-embodiment representation. In Figure 4, we show that XIRL generalizes to new agents significantly better than the other learned reward baselines. ", + "bbox": [ + 173, + 536, + 825, + 683 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.3 Results on Learning from Real-World Cross-Embodiment Demonstrations ", + "text_level": 1, + "bbox": [ + 174, + 689, + 702, + 704 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this experiment, we test how well we can learn rewards from more challenging real-world human demonstration videos. To do so, we use the dataset and State Pusher environment introduced in [6]. We train two XIRL encoders: XIRL (sim only) trained on 5 teleoperated simulated trajectories (i.e., no domain shift) and XIRL (real only) trained solely on the real-world human demonstrations without using any form of human labeling of paired frames. We compare our results to training the policy on the sparse reward from the environment and the RLV method presented in [6]. As demonstrated in Figure 5, we find our approach can improve the sample-efficiency of learning in the environment, compared to using RLV or solely the environment reward. ", + "bbox": [ + 174, + 710, + 825, + 818 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.4 Qualitative comparison between learned reward functions vs. handcrafted rewards ", + "text_level": 1, + "bbox": [ + 173, + 824, + 759, + 839 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In Figures 6 and 7, we visualize and compare the XIRL reward function with the environment’s reward (ground truth) for the Sweeping task from X-MAGICAL (see Sec. 4.1 for details) and the State Pusher and Drawer Opening tasks from $[ 6 ] ^ { 4 }$ . We find that the learned reward is highly correlated with the ground truth reward from the environment for both successful demos (first column in Figures 6 and 7) and unsuccessful demos (second column in Figures 6 and 7). It is especially encouraging to see that in a sparser reward environment like the Drawer Opening task, XIRL provides a dense signal that should allow the agent to learn the task more efficiently. Additionally, we can see that in the example of the failed collision trajectory (i.e., second row third column in Fig. 7), where the arm collides with the drawer rather than opening it, XIRL is able to provide it with a partial reward (i.e., for correctly moving towards the drawer) as opposed to the environment reward which remains zero. ", + "bbox": [ + 174, + 845, + 823, + 887 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/336f6e56fadde7992fbb34f9016b8184166d06e85e5dd38fc2086c18cc15eab3.jpg", + "image_caption": [ + "Figure 5. Real-world-demo cross-embodiment setting: Comparison of XIRL with baselines using the simulated State Pusher environment from [6]. XIRL (real only) leverages real-world demonstration videos of humans (left, row 2) to teach a robot arm in sim (left, row 1), but unlike [6], we do not use human-labeled data of paired frame correspondences. $\\mathrm { R L V ^ { \\ast } }$ denotes results taken verbatim from [6] which uses a different implementation of SAC for RL policy learning. " + ], + "image_footnote": [], + "bbox": [ + 251, + 88, + 748, + 226 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 282, + 826, + 376 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/7dc35f5c98241570164e1208386c3d21140466f479c4540f2cf56d7b06bd8fa5.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 303, + 388, + 692, + 474 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/af497430173dbd9d9ebdd0f01e8662f043721632071535ec3723b518aa43e7bc.jpg", + "image_caption": [ + "Figure 6. X-MAGICAL demo cross-embodiment setting: Visualizing our learned reward function XIRL vs. the environment’s sparse reward on a successful and unsuccessful demonstration, for the short-stick agent on the X-MAGICAL sweeping task. The learned reward was trained on the three other agents. ", + "Figure 7. Real-world-demo cross-embodiment setting: Visualizing our learned XIRL reward function vs. the environment’s sparse reward on the State Pusher (top) and Drawer Opening (bottom) tasks from [6]. " + ], + "image_footnote": [], + "bbox": [ + 238, + 515, + 756, + 674 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 Conclusion ", + "text_level": 1, + "bbox": [ + 173, + 726, + 294, + 742 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "This paper presents XIRL, a framework for learning vision-based reward functions from videos of expert demonstrators exhibiting different embodiments. XIRL uses TCC to self-supervise a deep visual encoder from videos, and uses this encoder to generate rewards via simple distances to goal observations in the embedding space. XIRL enables unseen agents with new embodiments to learn the demonstrated tasks via IRL. Reward functions from XIRL are fully self-supervised from videos, and we can successfully learn tasks without requiring manually paired video frames [6] between the demonstrator and learner. In this sense, our method presents favorable scalability to an arbitrary number of embodiments or experts with varying skill levels. Experiments show that policies learned via XIRL are more sample efficient than multiple baseline alternatives, including TCN [5], LIFS [16], and RLV [6]. While our experiments demonstrate promising results for learning policies in simulated environments using rewards learned from both simulated and real-world videos, we have yet to show policy learning on a real robot, which we look forward to trying post-COVID. ", + "bbox": [ + 174, + 751, + 825, + 911 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Acknowledgments ", + "text_level": 1, + "bbox": [ + 174, + 89, + 321, + 106 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We would like to thank Alex Nichol, Nick Hynes, Sean Kirmani, Brent Yi and Jimmy Wu for fruitful technical discussions, Sam Toyer for invaluable help with setting up the simulated benchmark, and Karl Schmeckpeper for discussions and help related to RLV. ", + "bbox": [ + 176, + 114, + 823, + 155 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 173, + 166, + 263, + 181 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "[1] B. D. Argall, S. Chernova, M. Veloso, and B. Browning. A survey of robot learning from demonstration. Robotics and autonomous systems, 57(5), 2009. 1, 2, 11 \n[2] T. Zhang, Z. McCarthy, O. Jow, D. Lee, X. Chen, K. Goldberg, and P. Abbeel. Deep imitation learning for complex manipulation tasks from virtual reality teleoperation. In ICRA. IEEE, 2018. 1 \n[3] P. Florence, L. Manuelli, and R. Tedrake. Self-supervised correspondence in visuomotor policy learning. IEEE RAL, 5(2), 2019. 1 \n[4] P. Sermanet, K. Xu, and S. Levine. Unsupervised perceptual rewards for imitation learning. arXiv preprint arXiv:1612.06699, 2016. 1, 2, 11 \n[5] P. Sermanet, C. Lynch, Y. Chebotar, J. Hsu, E. Jang, S. Schaal, and S. Levine. Time-contrastive networks: Self-supervised learning from video. In 2018 IEEE International Conference on Robotics and Automation (ICRA), pages 1134–1141. IEEE, 2018. 1, 2, 3, 5, 6, 8, 11, 16 \n[6] K. Schmeckpeper, O. Rybkin, K. Daniilidis, S. Levine, and C. Finn. Reinforcement learning with videos: Combining offline observations with interaction, 2020. 1, 2, 3, 4, 6, 7, 8, 11, 20 \n[7] D. Dwibedi, Y. Aytar, J. Tompson, P. Sermanet, and A. Zisserman. Temporal cycle-consistency learning. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. 2, 3, 4, 12, 16 \n[8] C. Atkeson and S. Schaal. Robot learning from demonstration. In ICML, 1997. 2, 11 \n[9] T. Osa, J. Pajarinen, G. Neumann, J. Bagnell, P. Abbeel, and J. Peters. An algorithmic perspective on imitation learning. Found. Trends Robotics, 7:1–179, 2018. 2, 11 \n[10] F. Torabi, G. Warnell, and P. Stone. Behavioral cloning from observation. In IJCAI, 2018. 2, 11 \n[11] A. D. Edwards, H. Sahni, Y. Schroecker, and C. L. Isbell. Imitating latent policies from observation. arXiv preprint arXiv:1805.07914, 2018. 2, 11 \n[12] I. Radosavovic, X. Wang, L. Pinto, and J. Malik. State-only imitation learning for dexterous manipulation. arXiv preprint arXiv:2004.04650, 2020. 2, 11 \n[13] D. Pathak, P. Mahmoudieh, G. Luo, P. Agrawal, D. Chen, Y. Shentu, E. Shelhamer, J. Malik, A. A. Efros, and T. Darrell. Zero-shot visual imitation. In Proceedings of the IEEE conference on computer vision and pattern recognition workshops, pages 2050–2053, 2018. 2, 11 \n[14] Y. Aytar, T. Pfaff, D. Budden, T. Paine, Z. Wang, and N. de Freitas. Playing hard exploration games by watching youtube. In Advances in Neural Information Processing Systems, pages 2930–2941, 2018. 2, 3, 5, 11 \n[15] O. Mees, M. Merklinger, G. Kalweit, and W. Burgard. Adversarial skill networks: Unsupervised robot skill learning from video. In 2020 IEEE International Conference on Robotics and Automation (ICRA), pages 4188–4194. IEEE, 2020. 2, 11 \n[16] A. Gupta, C. Devin, Y. Liu, P. Abbeel, and S. Levine. Learning invariant feature spaces to transfer skills with reinforcement learning, 2017. 3, 5, 6, 8, 11, 16 \n[17] A. Singh, L. Yang, K. Hartikainen, C. Finn, and S. Levine. End-to-end robotic reinforcement learning without reward engineering. arXiv preprint arXiv:1904.07854, 2019. 3, 11 \n[18] L. Smith, N. Dhawan, M. Zhang, P. Abbeel, and S. Levine. Avid: Learning multi-stage tasks via pixel-level translation of human videos. arXiv preprint arXiv:1912.04443, 2019. 3, 11 \n[19] Y. Liu, A. Gupta, P. Abbeel, and S. Levine. Imitation from observation: Learning to imitate behaviors from raw video via context translation. In ICRA. IEEE, 2018. 3, 11 \n[20] P. Sharma, D. Pathak, and A. Gupta. Third-person visual imitation learning via decoupled hierarchical controller. In Advances in Neural Information Processing Systems, pages 2597–2607, 2019. 3, 11 \n[21] D. Hejna, L. Pinto, and P. Abbeel. Hierarchically decoupled imitation for morphological transfer. In International Conference on Machine Learning, pages 4159–4171. PMLR, 2020. 3, 11 \n[22] J.-Y. Zhu, T. Park, P. Isola, and A. A. Efros. Unpaired image-to-image translation using cycle-consistent adversarial networks. In ICCV, 2017. 3, 11 \n[23] P. Henderson, R. Islam, P. Bachman, J. Pineau, D. Precup, and D. Meger. Deep reinforcement learning that matters. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 32, 2018. 5 \n[24] S. Toyer, R. Shah, A. Critch, and S. Russell. The magical benchmark for robust imitation. arXiv preprint arXiv:2011.00401, 2020. 5, 12 \n[25] V. Blomqvist. Pymunk: A easy-to-use pythonic rigid body 2d physics library (version 6.0.0), 2007. URL https://www.pymunk.org. 5 \n[26] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. Riedmiller, A. K. Fidjeland, G. Ostrovski, et al. Human-level control through deep reinforcement learning. nature, 518(7540): 529–533, 2015. 6 \n[27] M. Vecerik, O. Sushkov, D. Barker, T. Rothorl, T. Hester, and J. Scholz. A practical approach to insertion with ¨ variable socket position using deep reinforcement learning. In 2019 International Conference on Robotics and Automation (ICRA), pages 754–760. IEEE, 2019. 6, 15, 16 \n[28] K. He, X. Zhang, S. Ren, and J. Sun. Deep residual learning for image recognition. 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 770–778, 2016. 6 \n[29] D. P. Kingma and J. Ba. Adam: A method for stochastic optimization. arXiv preprint:1412.6980, 2014. 6 \n[30] T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290, 2018. 6, 7, 17 \n[31] T. Haarnoja, A. Zhou, K. Hartikainen, G. Tucker, S. Ha, J. Tan, V. Kumar, H. Zhu, A. Gupta, P. Abbeel, and S. Levine. Soft actor-critic algorithms and applications. arXiv preprint arXiv:1812.05905, 2018. 6 \n[32] C. Yang, X. Ma, W. Huang, F. Sun, H. Liu, J. Huang, and C. Gan. Imitation learning from observations by minimizing inverse dynamics disagreement. ArXiv, abs/1910.04417, 2019. 11 \n[33] L. Shao, T. Migimatsu, Q. Zhang, K. Yang, and J. Bohg. Concept2robot: Learning manipulation concepts from instructions and human demonstrations. Robotics: Science and Systems, 2020. 11 \n[34] G. Berseth and C. Pal. Visual imitation learning with recurrent siamese networks. ArXiv, abs/1901.07186, 2019. 11 \n[35] B. D. Ziebart, A. L. Maas, J. A. Bagnell, and A. K. Dey. Maximum entropy inverse reinforcement learning. In Aaai, volume 8, pages 1433–1438. Chicago, IL, USA, 2008. 11 \n[36] B. D. Ziebart, J. A. Bagnell, and A. K. Dey. Modeling interaction via the principle of maximum causal entropy. In ICML, 2010. 11 \n[37] I. J. Goodfellow, J. Pouget-Abadie, M. Mirza, B. Xu, D. Warde-Farley, S. Ozair, A. Courville, and Y. Bengio. Generative adversarial networks. arXiv preprint arXiv:1406.2661, 2014. 11 \n[38] J. Ho and S. Ermon. Generative adversarial imitation learning. In NeurIPS, 2016. 11 \n[39] F. Torabi, G. Warnell, and P. Stone. Generative adversarial imitation from observation. arXiv preprint arXiv:1807.06158, 2018. 11 \n[40] B. C. Stadie, P. Abbeel, and I. Sutskever. Third-person imitation learning. arXiv:1703.01703, 2017. 11 \n[41] Y. Lu and J. Tompson. Adail: Adaptive adversarial imitation learning. NeurIPS Workshop on Learning Transferable Skills,, 2019. 11 \n[42] F. Liu, Z. Ling, T. Mu, and H. Su. State alignment-based imitation learning. arXiv preprint arXiv:1911.10947, 2019. 11 \n[43] W. Sun, A. Vemula, B. Boots, and J. Bagnell. Provably efficient imitation learning from observation alone. ArXiv, abs/1905.10948, 2019. 11 \n[44] K. Kim, Y. Gu, J. Song, S. Zhao, and S. Ermon. Domain adaptive imitation learning. arXiv, 2020. 11 \n[45] A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. Lin, N. Gimelshein, L. Antiga, A. Desmaison, A. Kopf, E. Yang, Z. DeVito, M. Raison, A. Tejani, S. Chilamkurthy, B. Steiner, L. Fang, J. Bai, and S. Chintala. Pytorch: An imperative style, high-performance deep learning library. In Advances in Neural Information Processing Systems 32. Curran Associates, Inc., 2019. 14 \n[46] A. Buslaev, A. Parinov, E. Khvedchenya, V. Iglovikov, and A. A. Kalinin. Albumentations: fast and flexible image augmentations. arXiv e-prints, 2018. 16 \n[47] D. Yarats and I. Kostrikov. Soft actor-critic (sac) implementation in pytorch. https://github.com/ denisyarats/pytorch_sac, 2020. 17 \n[48] H. van Hasselt, A. Guez, and D. Silver. Deep reinforcement learning with double q-learning. arXiv e-prints, 2015. 17 \n[49] S. Fujimoto, H. van Hoof, and D. Meger. Addressing function approximation error in actor-critic methods. In Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018, 2018. 17 \n[50] A. M. Saxe, J. L. McClelland, and S. Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. arXiv e-prints, 2013. 17 \n[51] T. Chen, S. Kornblith, M. Norouzi, and G. Hinton. A simple framework for contrastive learning of visual representations. arXiv preprint arXiv:2002.05709, 2020. 17, 18 ", + "bbox": [ + 171, + 191, + 826, + 907 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 90, + 826, + 731 + ], + "page_idx": 9 + } +] \ No newline at end of file diff --git a/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_middle.json b/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..de91025df269ea4c2a3bbf83b38c47209ce53be0 --- /dev/null +++ b/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_middle.json @@ -0,0 +1,27516 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 124, + 80, + 488, + 119 + ], + "lines": [ + { + "bbox": [ + 279, + 78, + 334, + 100 + ], + "spans": [ + { + "bbox": [ + 279, + 78, + 334, + 100 + ], + "score": 1.0, + "content": "XIRL:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 121, + 97, + 491, + 123 + ], + "spans": [ + { + "bbox": [ + 121, + 97, + 491, + 123 + ], + "score": 1.0, + "content": "Cross-embodiment Inverse Reinforcement Learning", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 172, + 143, + 439, + 177 + ], + "lines": [ + { + "bbox": [ + 171, + 143, + 441, + 157 + ], + "spans": [ + { + "bbox": [ + 171, + 143, + 262, + 157 + ], + "score": 1.0, + "content": "Kevin Zakka1,3⇤, Andy", + "type": "text" + }, + { + "bbox": [ + 263, + 144, + 288, + 155 + ], + "score": 0.4, + "content": "\\mathbf { Z e n g } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 143, + 441, + 157 + ], + "score": 1.0, + "content": ", Pete Florence2, Jonathan Tompson2,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 218, + 155, + 391, + 167 + ], + "spans": [ + { + "bbox": [ + 218, + 155, + 261, + 167 + ], + "score": 1.0, + "content": "Jeannette", + "type": "text" + }, + { + "bbox": [ + 261, + 155, + 287, + 166 + ], + "score": 0.52, + "content": "\\mathbf { B o h g } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 155, + 391, + 167 + ], + "score": 1.0, + "content": ", and Debidatta Dwibedi2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 196, + 163, + 415, + 180 + ], + "spans": [ + { + "bbox": [ + 196, + 163, + 415, + 180 + ], + "score": 1.0, + "content": "1Stanford University, 2Robotics at Google, 3UC Berkeley", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 143, + 217, + 469, + 417 + ], + "lines": [ + { + "bbox": [ + 141, + 216, + 469, + 230 + ], + "spans": [ + { + "bbox": [ + 141, + 216, + 469, + 230 + ], + "score": 1.0, + "content": "Abstract: We investigate the visual cross-embodiment imitation setting, in which agents", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 227, + 470, + 240 + ], + "spans": [ + { + "bbox": [ + 141, + 227, + 470, + 240 + ], + "score": 1.0, + "content": "learn policies from videos of other agents (such as humans) demonstrating the same task,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 237, + 470, + 250 + ], + "spans": [ + { + "bbox": [ + 141, + 237, + 470, + 250 + ], + "score": 1.0, + "content": "but with stark differences in their embodiments – shape, actions, end-effector dynamics,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "score": 1.0, + "content": "etc. In this work, we demonstrate that it is possible to automatically discover and learn", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 260, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 142, + 260, + 469, + 271 + ], + "score": 1.0, + "content": "vision-based reward functions from cross-embodiment demonstration videos that are", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 270, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 470, + 281 + ], + "score": 1.0, + "content": "robust to these differences. Specifically, we present a self-supervised method for Cross-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 281, + 470, + 292 + ], + "spans": [ + { + "bbox": [ + 142, + 281, + 470, + 292 + ], + "score": 1.0, + "content": "embodiment Inverse Reinforcement Learning (XIRL) that leverages temporal cycle-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 469, + 303 + ], + "score": 1.0, + "content": "consistency constraints to learn deep visual embeddings that capture task progression", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 301, + 469, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 469, + 313 + ], + "score": 1.0, + "content": "from offline videos of demonstrations across multiple expert agents, each performing the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 311, + 470, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 324 + ], + "score": 1.0, + "content": "same task differently due to embodiment differences. Prior to our work, producing re-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 334 + ], + "score": 1.0, + "content": "wards from self-supervised embeddings typically required alignment with a reference tra-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "jectory, which may be difficult to acquire under stark embodiment differences. We show", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "score": 1.0, + "content": "empirically that if the embeddings are aware of task progress, simply taking the negative", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 354, + 469, + 365 + ], + "spans": [ + { + "bbox": [ + 142, + 354, + 469, + 365 + ], + "score": 1.0, + "content": "distance between the current state and goal state in the learned embedding space is useful", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 469, + 375 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 469, + 375 + ], + "score": 1.0, + "content": "as a reward for training policies with reinforcement learning. We find our learned reward", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 375, + 469, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 469, + 387 + ], + "score": 1.0, + "content": "function not only works for embodiments seen during training, but also generalizes to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 385, + 470, + 397 + ], + "spans": [ + { + "bbox": [ + 142, + 385, + 470, + 397 + ], + "score": 1.0, + "content": "entirely new embodiments. Additionally, when transferring real-world human demon-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 395, + 469, + 407 + ], + "spans": [ + { + "bbox": [ + 141, + 395, + 469, + 407 + ], + "score": 1.0, + "content": "strations to a simulated robot, we find that XIRL is more sample efficient than current", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 406, + 467, + 418 + ], + "spans": [ + { + "bbox": [ + 141, + 406, + 467, + 418 + ], + "score": 1.0, + "content": "best methods. Qualitative results, code, and datasets are available at https://x-irl.github.io", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 143, + 428, + 467, + 439 + ], + "lines": [ + { + "bbox": [ + 141, + 425, + 469, + 443 + ], + "spans": [ + { + "bbox": [ + 141, + 425, + 469, + 443 + ], + "score": 1.0, + "content": "Keywords: inverse reinforcement learning, imitation learning, self-supervised learning", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 107, + 452, + 187, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 189, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 189, + 467 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "The ability to learn new tasks from third-person demonstrations holds the potential to enable robots to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 483, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 494 + ], + "score": 1.0, + "content": "leverage the vast quantities of tutorial videos that can be gleaned from the world-wide web (e.g., YouTube", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 492, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 506 + ], + "score": 1.0, + "content": "videos). However, distilling diverse and unstructured videos into motor skills with vision-based policies", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "can be daunting – as the videos themselves are often not only captured from different camera viewpoints", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "in different environments, but also with different experts that may use different tools, objects, or strategies", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "to perform the same task. Perhaps most critically, there often exists a clear embodiment gap between the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "score": 1.0, + "content": "human expert demonstrator, and the robot hardware that executes the learned policies. One approach to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "score": 1.0, + "content": "close this gap is to learn a mapping between the human and robot embodiment [1], which is a non-trivial", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 556, + 223, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 223, + 568 + ], + "score": 1.0, + "content": "intermediate problem in itself.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "score": 1.0, + "content": "Despite considerable progress in learning policies with paired observations and actions (e.g., collected via", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 581, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 595 + ], + "score": 1.0, + "content": "teleoperation) [2, 3], much less work has been done in getting robots to learn policies from tasks defined", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "only by third-person observations of demonstrations [4, 5, 6]. This is a surprisingly challenging problem,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 602, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 506, + 616 + ], + "score": 1.0, + "content": "as different embodiments are likely to use unique strategies that suit them and allow them to make progress", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "on a given task. For example, if asked to “place five pens into a cup”, a human hand is likely to scoop", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "score": 1.0, + "content": "up all pens before slipping them into the cup, whereas a two-fingered gripper might instead need to pick", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "and place each pen individually. Both strategies complete the task, but generate different state-action", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "trajectories. In this setting, it may be difficult to acquire labeled frame-to-frame correspondences between", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "expert demonstration videos and learned embodiments [6], particularly across a multitude of embodiments", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "score": 1.0, + "content": "or experts. The approach we investigate instead is whether we can successfully learn tasks through a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 677, + 436, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 436, + 689 + ], + "score": 1.0, + "content": "learned notion of task progress that is invariant to the embodiment performing the task.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 700, + 241, + 709 + ], + "lines": [ + { + "bbox": [ + 118, + 698, + 241, + 711 + ], + "spans": [ + { + "bbox": [ + 118, + 698, + 241, + 711 + ], + "score": 1.0, + "content": "⇤Work done as an intern at Google.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 731, + 324, + 741 + ], + "lines": [ + { + "bbox": [ + 106, + 729, + 324, + 743 + ], + "spans": [ + { + "bbox": [ + 106, + 729, + 324, + 743 + ], + "score": 1.0, + "content": "5th Conference on Robot Learning (CoRL 2021), London, UK.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 124, + 80, + 488, + 119 + ], + "lines": [ + { + "bbox": [ + 279, + 78, + 334, + 100 + ], + "spans": [ + { + "bbox": [ + 279, + 78, + 334, + 100 + ], + "score": 1.0, + "content": "XIRL:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 121, + 97, + 491, + 123 + ], + "spans": [ + { + "bbox": [ + 121, + 97, + 491, + 123 + ], + "score": 1.0, + "content": "Cross-embodiment Inverse Reinforcement Learning", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 172, + 143, + 439, + 177 + ], + "lines": [ + { + "bbox": [ + 171, + 143, + 441, + 157 + ], + "spans": [ + { + "bbox": [ + 171, + 143, + 262, + 157 + ], + "score": 1.0, + "content": "Kevin Zakka1,3⇤, Andy", + "type": "text" + }, + { + "bbox": [ + 263, + 144, + 288, + 155 + ], + "score": 0.4, + "content": "\\mathbf { Z e n g } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 143, + 441, + 157 + ], + "score": 1.0, + "content": ", Pete Florence2, Jonathan Tompson2,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 218, + 155, + 391, + 167 + ], + "spans": [ + { + "bbox": [ + 218, + 155, + 261, + 167 + ], + "score": 1.0, + "content": "Jeannette", + "type": "text" + }, + { + "bbox": [ + 261, + 155, + 287, + 166 + ], + "score": 0.52, + "content": "\\mathbf { B o h g } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 155, + 391, + 167 + ], + "score": 1.0, + "content": ", and Debidatta Dwibedi2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 196, + 163, + 415, + 180 + ], + "spans": [ + { + "bbox": [ + 196, + 163, + 415, + 180 + ], + "score": 1.0, + "content": "1Stanford University, 2Robotics at Google, 3UC Berkeley", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 171, + 143, + 441, + 180 + ] + }, + { + "type": "text", + "bbox": [ + 143, + 217, + 469, + 417 + ], + "lines": [ + { + "bbox": [ + 141, + 216, + 469, + 230 + ], + "spans": [ + { + "bbox": [ + 141, + 216, + 469, + 230 + ], + "score": 1.0, + "content": "Abstract: We investigate the visual cross-embodiment imitation setting, in which agents", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 227, + 470, + 240 + ], + "spans": [ + { + "bbox": [ + 141, + 227, + 470, + 240 + ], + "score": 1.0, + "content": "learn policies from videos of other agents (such as humans) demonstrating the same task,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 237, + 470, + 250 + ], + "spans": [ + { + "bbox": [ + 141, + 237, + 470, + 250 + ], + "score": 1.0, + "content": "but with stark differences in their embodiments – shape, actions, end-effector dynamics,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "score": 1.0, + "content": "etc. In this work, we demonstrate that it is possible to automatically discover and learn", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 260, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 142, + 260, + 469, + 271 + ], + "score": 1.0, + "content": "vision-based reward functions from cross-embodiment demonstration videos that are", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 270, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 470, + 281 + ], + "score": 1.0, + "content": "robust to these differences. Specifically, we present a self-supervised method for Cross-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 281, + 470, + 292 + ], + "spans": [ + { + "bbox": [ + 142, + 281, + 470, + 292 + ], + "score": 1.0, + "content": "embodiment Inverse Reinforcement Learning (XIRL) that leverages temporal cycle-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 469, + 303 + ], + "score": 1.0, + "content": "consistency constraints to learn deep visual embeddings that capture task progression", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 301, + 469, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 469, + 313 + ], + "score": 1.0, + "content": "from offline videos of demonstrations across multiple expert agents, each performing the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 311, + 470, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 324 + ], + "score": 1.0, + "content": "same task differently due to embodiment differences. Prior to our work, producing re-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 470, + 334 + ], + "score": 1.0, + "content": "wards from self-supervised embeddings typically required alignment with a reference tra-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "jectory, which may be difficult to acquire under stark embodiment differences. We show", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "score": 1.0, + "content": "empirically that if the embeddings are aware of task progress, simply taking the negative", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 354, + 469, + 365 + ], + "spans": [ + { + "bbox": [ + 142, + 354, + 469, + 365 + ], + "score": 1.0, + "content": "distance between the current state and goal state in the learned embedding space is useful", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 469, + 375 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 469, + 375 + ], + "score": 1.0, + "content": "as a reward for training policies with reinforcement learning. We find our learned reward", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 375, + 469, + 387 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 469, + 387 + ], + "score": 1.0, + "content": "function not only works for embodiments seen during training, but also generalizes to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 385, + 470, + 397 + ], + "spans": [ + { + "bbox": [ + 142, + 385, + 470, + 397 + ], + "score": 1.0, + "content": "entirely new embodiments. Additionally, when transferring real-world human demon-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 395, + 469, + 407 + ], + "spans": [ + { + "bbox": [ + 141, + 395, + 469, + 407 + ], + "score": 1.0, + "content": "strations to a simulated robot, we find that XIRL is more sample efficient than current", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 406, + 467, + 418 + ], + "spans": [ + { + "bbox": [ + 141, + 406, + 467, + 418 + ], + "score": 1.0, + "content": "best methods. Qualitative results, code, and datasets are available at https://x-irl.github.io", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14, + "bbox_fs": [ + 141, + 216, + 470, + 418 + ] + }, + { + "type": "text", + "bbox": [ + 143, + 428, + 467, + 439 + ], + "lines": [ + { + "bbox": [ + 141, + 425, + 469, + 443 + ], + "spans": [ + { + "bbox": [ + 141, + 425, + 469, + 443 + ], + "score": 1.0, + "content": "Keywords: inverse reinforcement learning, imitation learning, self-supervised learning", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 141, + 425, + 469, + 443 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 452, + 187, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 189, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 189, + 467 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "The ability to learn new tasks from third-person demonstrations holds the potential to enable robots to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 483, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 494 + ], + "score": 1.0, + "content": "leverage the vast quantities of tutorial videos that can be gleaned from the world-wide web (e.g., YouTube", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 492, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 506 + ], + "score": 1.0, + "content": "videos). However, distilling diverse and unstructured videos into motor skills with vision-based policies", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "can be daunting – as the videos themselves are often not only captured from different camera viewpoints", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "in different environments, but also with different experts that may use different tools, objects, or strategies", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "to perform the same task. Perhaps most critically, there often exists a clear embodiment gap between the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "score": 1.0, + "content": "human expert demonstrator, and the robot hardware that executes the learned policies. One approach to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "score": 1.0, + "content": "close this gap is to learn a mapping between the human and robot embodiment [1], which is a non-trivial", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 556, + 223, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 223, + 568 + ], + "score": 1.0, + "content": "intermediate problem in itself.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 471, + 506, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 585 + ], + "score": 1.0, + "content": "Despite considerable progress in learning policies with paired observations and actions (e.g., collected via", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 581, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 595 + ], + "score": 1.0, + "content": "teleoperation) [2, 3], much less work has been done in getting robots to learn policies from tasks defined", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "only by third-person observations of demonstrations [4, 5, 6]. This is a surprisingly challenging problem,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 602, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 506, + 616 + ], + "score": 1.0, + "content": "as different embodiments are likely to use unique strategies that suit them and allow them to make progress", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "on a given task. For example, if asked to “place five pens into a cup”, a human hand is likely to scoop", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "score": 1.0, + "content": "up all pens before slipping them into the cup, whereas a two-fingered gripper might instead need to pick", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "and place each pen individually. Both strategies complete the task, but generate different state-action", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "trajectories. In this setting, it may be difficult to acquire labeled frame-to-frame correspondences between", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "expert demonstration videos and learned embodiments [6], particularly across a multitude of embodiments", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "score": 1.0, + "content": "or experts. The approach we investigate instead is whether we can successfully learn tasks through a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 677, + 436, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 436, + 689 + ], + "score": 1.0, + "content": "learned notion of task progress that is invariant to the embodiment performing the task.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 570, + 506, + 689 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 73, + 503, + 238 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 73, + 503, + 238 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 73, + 503, + 238 + ], + "spans": [ + { + "bbox": [ + 108, + 73, + 503, + 238 + ], + "score": 0.971, + "type": "image", + "image_path": "80a7e6efe913971b206ca18932e755e85617cbe2190ac680c41ec9b31c2e8a60.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 73, + 503, + 128.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 128.0, + 503, + 183.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 183.0, + 503, + 238.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 245, + 504, + 269 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 245, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 254 + ], + "score": 1.0, + "content": "Figure 1. Cross-embodiment Inverse Reinforcement Learning. We learn embodiment-invariant visual representations from offline video demonstra-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 252, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 262 + ], + "score": 1.0, + "content": "tions (stick agents on the left) using TCC [7], then use the trained encoder to generate embodiment-invariant visual reward functions that can be used", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 259, + 342, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 342, + 271 + ], + "score": 1.0, + "content": "to learn policies on new embodiments (gripper on the right) with reinforcement learning.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "In this work, we propose to enable agents to imitate video demonstrations of experts – including ones with", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "score": 1.0, + "content": "different embodiments – by using a task-specific, embodiment-invariant reward formulation trained via", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "temporal cycle-consistency (TCC) [7]. We demonstrate how we can leverage an encoder trained with TCC", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "to define dense rewards for downstream reinforcement learning (RL) policies via simple distances in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "learned embedding space. Simulated experiments across four different embodiments show that these learned", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "rewards are capable of generalizing to new embodiments, enabling unseen agents to learn the task via rein-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "forcement, and surprisingly in some cases, exceeding the sample efficiency of the same agent learned with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 347, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 358 + ], + "score": 1.0, + "content": "ground truth sparse rewards. We also demonstrate the effectiveness of our approach for learning robot poli-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 357, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 368 + ], + "score": 1.0, + "content": "cies using human demonstrations on the State Pusher environment from [6], where our reward is first learned", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 368, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 506, + 379 + ], + "score": 1.0, + "content": "on real-world human demonstrations, then used to teach a Sawyer arm how to perform the task in simulation.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 397 + ], + "score": 1.0, + "content": "Our contributions are as follows: (i) We introduce Cross-embodiment Inverse Reinforcement Learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "(XIRL), an effective, label-free framework for tackling cross-embodiment visual imitation learning. Our", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "core contribution is to use self-supervised learning on third-person demonstration videos to define dense", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "reward functions amenable for downstream reinforcement learning policies, (ii) Along with XIRL, we re-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 425, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 506, + 437 + ], + "score": 1.0, + "content": "lease a cross-embodiment imitation learning benchmark, X-MAGICAL, which features multiple simulated", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "agents with different embodiments performing the same manipulation task, including one thousand expert", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 446, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 458 + ], + "score": 1.0, + "content": "demonstrations for each agent, (iii) We show that XIRL significantly outperforms alternative methods", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "on both the X-MAGICAL benchmark and the human-to-robot transfer benchmark from [6], and discuss", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "our observations, which point to interesting areas for future research, (iv) Finally, we introduce a real-world", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "dataset, X-REAL (Cross-embodiment Real demonstrations), of a manipulation task performed with nine", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 488, + 486, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 486, + 501 + ], + "score": 1.0, + "content": "different embodiments, which can be used to evaluate cross-embodiment reward learning methods2.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 508, + 193, + 521 + ], + "lines": [ + { + "bbox": [ + 104, + 507, + 195, + 523 + ], + "spans": [ + { + "bbox": [ + 104, + 507, + 195, + 523 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "Traditional formulations of imitation learning [8, 1, 9] assume access to a corpus of expert demonstration", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "data which includes both state and action trajectories of the expert policy. In the context of third-person", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "imitation learning, including when learning from expert agents with different embodiments, obtaining", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 561, + 321, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 321, + 572 + ], + "score": 1.0, + "content": "access to ground-truth actions is difficult or impossible3.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "Inferring expert actions. To address this issue, several approaches either try to infer expert actions [10, 11,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 586, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 599 + ], + "score": 1.0, + "content": "12] – for example by training an inverse dynamics model on agent interaction data [10] – or employ forward", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "prediction on the next state to imitate the expert without direct action supervision [13]. While these methods", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "successfully address learning from observation-only demonstrations, they either do not support skill transfer", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "to different policy embodiments at all, or they cannot take advantage of multiple embodiments in order to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 630, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 641 + ], + "score": 1.0, + "content": "improve generalization to unseen policy configurations. We explicitly address these problems in this work.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 504, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "Imitation via learned reward functions. In contrast to imitation via supervised methods, such as", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "BCO [10], a recent body of work [4, 5, 14, 6, 15] has focused on learning reward functions from expert", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "video data and then training RL policies to maximize this reward. In [4], the authors combine ImageNet", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "pre-trained visual features with an L2-norm distance reward to match policy and expert observations", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 700, + 344, + 722 + ], + "lines": [ + { + "bbox": [ + 118, + 699, + 332, + 712 + ], + "spans": [ + { + "bbox": [ + 118, + 699, + 332, + 712 + ], + "score": 1.0, + "content": "2 For more details regarding X-REAL, please see Appendix C.", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 710, + 344, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 344, + 723 + ], + "score": 1.0, + "content": "3 For a more comprehensive related work, please see Appendix A.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 753 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 73, + 503, + 238 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 73, + 503, + 238 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 73, + 503, + 238 + ], + "spans": [ + { + "bbox": [ + 108, + 73, + 503, + 238 + ], + "score": 0.971, + "type": "image", + "image_path": "80a7e6efe913971b206ca18932e755e85617cbe2190ac680c41ec9b31c2e8a60.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 73, + 503, + 128.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 128.0, + 503, + 183.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 183.0, + 503, + 238.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 245, + 504, + 269 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 245, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 254 + ], + "score": 1.0, + "content": "Figure 1. Cross-embodiment Inverse Reinforcement Learning. We learn embodiment-invariant visual representations from offline video demonstra-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 252, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 262 + ], + "score": 1.0, + "content": "tions (stick agents on the left) using TCC [7], then use the trained encoder to generate embodiment-invariant visual reward functions that can be used", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 259, + 342, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 342, + 271 + ], + "score": 1.0, + "content": "to learn policies on new embodiments (gripper on the right) with reinforcement learning.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 285 + ], + "score": 1.0, + "content": "In this work, we propose to enable agents to imitate video demonstrations of experts – including ones with", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "score": 1.0, + "content": "different embodiments – by using a task-specific, embodiment-invariant reward formulation trained via", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "temporal cycle-consistency (TCC) [7]. We demonstrate how we can leverage an encoder trained with TCC", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "to define dense rewards for downstream reinforcement learning (RL) policies via simple distances in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "learned embedding space. Simulated experiments across four different embodiments show that these learned", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "rewards are capable of generalizing to new embodiments, enabling unseen agents to learn the task via rein-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "forcement, and surprisingly in some cases, exceeding the sample efficiency of the same agent learned with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 347, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 358 + ], + "score": 1.0, + "content": "ground truth sparse rewards. We also demonstrate the effectiveness of our approach for learning robot poli-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 357, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 368 + ], + "score": 1.0, + "content": "cies using human demonstrations on the State Pusher environment from [6], where our reward is first learned", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 368, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 506, + 379 + ], + "score": 1.0, + "content": "on real-world human demonstrations, then used to teach a Sawyer arm how to perform the task in simulation.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 273, + 506, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 397 + ], + "score": 1.0, + "content": "Our contributions are as follows: (i) We introduce Cross-embodiment Inverse Reinforcement Learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "(XIRL), an effective, label-free framework for tackling cross-embodiment visual imitation learning. Our", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "core contribution is to use self-supervised learning on third-person demonstration videos to define dense", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "reward functions amenable for downstream reinforcement learning policies, (ii) Along with XIRL, we re-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 425, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 506, + 437 + ], + "score": 1.0, + "content": "lease a cross-embodiment imitation learning benchmark, X-MAGICAL, which features multiple simulated", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "agents with different embodiments performing the same manipulation task, including one thousand expert", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 446, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 458 + ], + "score": 1.0, + "content": "demonstrations for each agent, (iii) We show that XIRL significantly outperforms alternative methods", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "on both the X-MAGICAL benchmark and the human-to-robot transfer benchmark from [6], and discuss", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "our observations, which point to interesting areas for future research, (iv) Finally, we introduce a real-world", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "dataset, X-REAL (Cross-embodiment Real demonstrations), of a manipulation task performed with nine", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 488, + 486, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 486, + 501 + ], + "score": 1.0, + "content": "different embodiments, which can be used to evaluate cross-embodiment reward learning methods2.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 381, + 506, + 501 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 508, + 193, + 521 + ], + "lines": [ + { + "bbox": [ + 104, + 507, + 195, + 523 + ], + "spans": [ + { + "bbox": [ + 104, + 507, + 195, + 523 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "Traditional formulations of imitation learning [8, 1, 9] assume access to a corpus of expert demonstration", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "data which includes both state and action trajectories of the expert policy. In the context of third-person", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "imitation learning, including when learning from expert agents with different embodiments, obtaining", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 561, + 321, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 321, + 572 + ], + "score": 1.0, + "content": "access to ground-truth actions is difficult or impossible3.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 527, + 505, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "Inferring expert actions. To address this issue, several approaches either try to infer expert actions [10, 11,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 586, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 599 + ], + "score": 1.0, + "content": "12] – for example by training an inverse dynamics model on agent interaction data [10] – or employ forward", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "prediction on the next state to imitate the expert without direct action supervision [13]. While these methods", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "successfully address learning from observation-only demonstrations, they either do not support skill transfer", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "to different policy embodiments at all, or they cannot take advantage of multiple embodiments in order to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 630, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 641 + ], + "score": 1.0, + "content": "improve generalization to unseen policy configurations. We explicitly address these problems in this work.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 576, + 506, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 504, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "Imitation via learned reward functions. In contrast to imitation via supervised methods, such as", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "BCO [10], a recent body of work [4, 5, 14, 6, 15] has focused on learning reward functions from expert", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "video data and then training RL policies to maximize this reward. In [4], the authors combine ImageNet", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "pre-trained visual features with an L2-norm distance reward to match policy and expert observations", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "in a latent feature space. In their follow-up work [5], the reward is computed in a viewpoint-invariant", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "representation that is self-supervised on video data. While both these methods are compelling in their", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "score": 1.0, + "content": "use of cheap unlabeled data to learn invariant rewards, the use of a time index as a heuristic for defining", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "weak correspondence is a constraining limitation for tasks that need to be executed at different speeds,", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 115, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 127 + ], + "score": 1.0, + "content": "or are not strictly monotonic (e.g., have ambiguous sub-task ordering). In [14] a dense reward is learned", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 125, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 506, + 138 + ], + "score": 1.0, + "content": "via unsupervised learning on YouTube data and the authors make no assumption about time alignment.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 135, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 506, + 148 + ], + "score": 1.0, + "content": "However, in their work, the expert and learned policy are executed in the same domain and embodiment,", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 146, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 506, + 159 + ], + "score": 1.0, + "content": "an assumption we relax in our work. Framed in a multi-task learning setting, [16] propose training policies", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 156, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 506, + 169 + ], + "score": 1.0, + "content": "with morphologically different embodiments first on a similar set of proxy tasks, in order to learn a latent", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 167, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 179 + ], + "score": 1.0, + "content": "space to map between domains, and then sharing skills on a held-out task from one policy to another. A", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 178, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 504, + 189 + ], + "score": 1.0, + "content": "time-index heuristic is used to define a metric reward when performing RL training of the new task. In", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "our work, the learned embedding finds correspondences in a fully-unsupervised fashion, without the need", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "for such strict time alignment. In [17], a small sub-set of states is human labeled for goal success and a", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "convolutional network is then trained to detect successful task completion from image observations, where", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "score": 1.0, + "content": "on-policy samples are used as negatives for the classifier. By contrast, our learned embedding encodes", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 231, + 421, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 421, + 242 + ], + "score": 1.0, + "content": "task progress in its latent representation without the use of expensive human labels.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 644, + 506, + 689 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "in a latent feature space. In their follow-up work [5], the reward is computed in a viewpoint-invariant", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "representation that is self-supervised on video data. While both these methods are compelling in their", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "score": 1.0, + "content": "use of cheap unlabeled data to learn invariant rewards, the use of a time index as a heuristic for defining", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "weak correspondence is a constraining limitation for tasks that need to be executed at different speeds,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 115, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 127 + ], + "score": 1.0, + "content": "or are not strictly monotonic (e.g., have ambiguous sub-task ordering). In [14] a dense reward is learned", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 125, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 506, + 138 + ], + "score": 1.0, + "content": "via unsupervised learning on YouTube data and the authors make no assumption about time alignment.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 135, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 506, + 148 + ], + "score": 1.0, + "content": "However, in their work, the expert and learned policy are executed in the same domain and embodiment,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 146, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 506, + 159 + ], + "score": 1.0, + "content": "an assumption we relax in our work. Framed in a multi-task learning setting, [16] propose training policies", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 156, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 506, + 169 + ], + "score": 1.0, + "content": "with morphologically different embodiments first on a similar set of proxy tasks, in order to learn a latent", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 167, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 179 + ], + "score": 1.0, + "content": "space to map between domains, and then sharing skills on a held-out task from one policy to another. A", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 178, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 504, + 189 + ], + "score": 1.0, + "content": "time-index heuristic is used to define a metric reward when performing RL training of the new task. In", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 505, + 200 + ], + "score": 1.0, + "content": "our work, the learned embedding finds correspondences in a fully-unsupervised fashion, without the need", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "for such strict time alignment. In [17], a small sub-set of states is human labeled for goal success and a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "convolutional network is then trained to detect successful task completion from image observations, where", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "score": 1.0, + "content": "on-policy samples are used as negatives for the classifier. By contrast, our learned embedding encodes", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 231, + 421, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 421, + 242 + ], + "score": 1.0, + "content": "task progress in its latent representation without the use of expensive human labels.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "Imitation via domain adaptation. An additional category of approaches to third-person imitation learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "are those that perform domain adaptation of expert observations [18, 19, 20, 21]. For instance, in [18]", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "a CycleGAN [22] architecture is used to perform pixel-level image-to-image translation between policy", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 278, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 505, + 289 + ], + "score": 1.0, + "content": "domains, which is then used to construct a reward function for a model-based RL algorithm. A similar", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "model-free approach is proposed in [19]. In [20], a generative model is used to predict robot high-level", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 299, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 310 + ], + "score": 1.0, + "content": "sub-goals conditioned on a third-person demonstration video, and a lower-level control policy is trained in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "a task-agnostic manner. Similarly, [21] uses high level task conditioning from zero-shot transfer of expert", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "demonstrations, but they use KL matching to perform both high and low-level imitation. In contrast to these", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 330, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 505, + 341 + ], + "score": 1.0, + "content": "methods, the unsupervised TCC alignment in this work avoids performing explicit domain adaptation or", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 340, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 352 + ], + "score": 1.0, + "content": "pixel-level image translation by instead learning a robust and invariant feature space in a fully offline fashion.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 356, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 504, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 491, + 368 + ], + "score": 1.0, + "content": "Reinforcement learning with demonstrations. Recent work in offline-reinforcement learning", + "type": "text" + }, + { + "bbox": [ + 491, + 357, + 504, + 366 + ], + "score": 1.0, + "content": "[6]", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "score": 1.0, + "content": "explicitly tackles the problem of policy embodiment and domain shift. Their method, Reinforcement", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "Learning from Videos (RLV), uses a labelled collection of expert-policy state pairs in conjunction with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "score": 1.0, + "content": "adversarial training to learn an inverse dynamics model jointly optimized with the policy. In contrast, we", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "avoid the limitation of collecting human-labeled dense state correspondences by using a self-supervised", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "score": 1.0, + "content": "algorithm (i.e., TCC [7]) which uses cycle-consistency to automatically learn the correspondence between", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 418, + 507, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 507, + 432 + ], + "score": 1.0, + "content": "states of two domains. We also show that this formulation improves generalization to unseen embodiments.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 429, + 445, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 445, + 442 + ], + "score": 1.0, + "content": "Since the problem setup is similar to ours, we also compare to their method as a baseline.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 448, + 174, + 462 + ], + "lines": [ + { + "bbox": [ + 103, + 446, + 175, + 465 + ], + "spans": [ + { + "bbox": [ + 103, + 446, + 175, + 465 + ], + "score": 1.0, + "content": "3 Approach", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "Our overall XIRL framework (Figure 1) addresses the cross-embodiment visual imitation problem", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "(Section 3.1). The framework consists of first using TCC to self-supervise embodiment-invariant visual", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "representations (Section 3.2), then using a novel embodiment-invariant visual reward function (Section 3.3)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 500, + 437, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 437, + 513 + ], + "score": 1.0, + "content": "to perform cross-embodiment visual imitation via reinforcement learning (Section 3.4).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 107, + 517, + 217, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 218, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 218, + 529 + ], + "score": 1.0, + "content": "3.1 Problem Formulation", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "Our objective is to extract an agent-invariant definition of a task, via a learned reward function, from a", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "dataset of videos of separate agents performing the same task. In particular, we are interested in agents", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "that may solve the task in entirely different ways due to differences in their end-effector, shapes, dynamics,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "score": 1.0, + "content": "etc., which we refer to as embodiment differences. For example, consider how differently a vacuum gripper", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 574, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 589 + ], + "score": 1.0, + "content": "and a parallel-jaw gripper will grasp an object as a result of their respective end-effectors. Such a setup", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "is quite common in robotic imitation learning, where we might have access to observation data of humans", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 595, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 610 + ], + "score": 1.0, + "content": "demonstrating a task, but want to teach a robot to perform it. It is very likely that the way the human", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 607, + 361, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 361, + 619 + ], + "score": 1.0, + "content": "executes the task will diverge from how the robot would execute it.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 504, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 362, + 636 + ], + "score": 1.0, + "content": "We define a dataset of multiple agents performing the same task", + "type": "text" + }, + { + "bbox": [ + 362, + 623, + 371, + 633 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 622, + 384, + 636 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 384, + 622, + 438, + 635 + ], + "score": 0.92, + "content": "\\textstyle D = \\bigcup _ { i = 1 } ^ { n } D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 622, + 469, + 636 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 470, + 623, + 482, + 634 + ], + "score": 0.88, + "content": "D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "is an", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 340, + 646 + ], + "score": 1.0, + "content": "agent-specific dataset containing observations of only agent", + "type": "text" + }, + { + "bbox": [ + 340, + 634, + 345, + 643 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 633, + 410, + 646 + ], + "score": 1.0, + "content": "performing task", + "type": "text" + }, + { + "bbox": [ + 410, + 635, + 419, + 643 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 633, + 506, + 646 + ], + "score": 1.0, + "content": ". Each agent’s dataset", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 107, + 644, + 504, + 659 + ], + "spans": [ + { + "bbox": [ + 107, + 646, + 119, + 657 + ], + "score": 0.87, + "content": "D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 644, + 262, + 659 + ], + "score": 1.0, + "content": "is a collection of videos defined as", + "type": "text" + }, + { + "bbox": [ + 262, + 645, + 339, + 658 + ], + "score": 0.92, + "content": "{ { D } _ { i } } = \\{ v _ { i } ^ { 1 } , v _ { i } ^ { 2 } . . . v _ { i } ^ { K } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 644, + 370, + 659 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 370, + 644, + 380, + 658 + ], + "score": 0.89, + "content": "v _ { i } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 644, + 490, + 659 + ], + "score": 1.0, + "content": "represents the video of the", + "type": "text" + }, + { + "bbox": [ + 490, + 645, + 504, + 657 + ], + "score": 0.89, + "content": "j ^ { t h }", + "type": "inline_equation" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 199, + 669 + ], + "score": 1.0, + "content": "demonstration of agent", + "type": "text" + }, + { + "bbox": [ + 199, + 657, + 204, + 666 + ], + "score": 0.66, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 655, + 335, + 669 + ], + "score": 1.0, + "content": "successfully performing the task", + "type": "text" + }, + { + "bbox": [ + 335, + 658, + 343, + 666 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 655, + 474, + 669 + ], + "score": 1.0, + "content": ". We would like to highlight that", + "type": "text" + }, + { + "bbox": [ + 474, + 657, + 484, + 666 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "contains observation data, i.e., it does not store the actions taken by the respective agents. We use", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 677, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 504, + 690 + ], + "score": 1.0, + "content": "self-supervised representation learning techniques to learn task-specific representations from this dataset.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 50.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 309, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 240 + ], + "lines": [], + "index": 7.5, + "bbox_fs": [ + 105, + 73, + 506, + 242 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "Imitation via domain adaptation. An additional category of approaches to third-person imitation learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "are those that perform domain adaptation of expert observations [18, 19, 20, 21]. For instance, in [18]", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "a CycleGAN [22] architecture is used to perform pixel-level image-to-image translation between policy", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 278, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 505, + 289 + ], + "score": 1.0, + "content": "domains, which is then used to construct a reward function for a model-based RL algorithm. A similar", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 300 + ], + "score": 1.0, + "content": "model-free approach is proposed in [19]. In [20], a generative model is used to predict robot high-level", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 299, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 310 + ], + "score": 1.0, + "content": "sub-goals conditioned on a third-person demonstration video, and a lower-level control policy is trained in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "a task-agnostic manner. Similarly, [21] uses high level task conditioning from zero-shot transfer of expert", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "demonstrations, but they use KL matching to perform both high and low-level imitation. In contrast to these", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 330, + 505, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 505, + 341 + ], + "score": 1.0, + "content": "methods, the unsupervised TCC alignment in this work avoids performing explicit domain adaptation or", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 340, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 352 + ], + "score": 1.0, + "content": "pixel-level image translation by instead learning a robust and invariant feature space in a fully offline fashion.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 244, + 506, + 352 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 356, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 504, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 491, + 368 + ], + "score": 1.0, + "content": "Reinforcement learning with demonstrations. Recent work in offline-reinforcement learning", + "type": "text" + }, + { + "bbox": [ + 491, + 357, + 504, + 366 + ], + "score": 1.0, + "content": "[6]", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 379 + ], + "score": 1.0, + "content": "explicitly tackles the problem of policy embodiment and domain shift. Their method, Reinforcement", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "Learning from Videos (RLV), uses a labelled collection of expert-policy state pairs in conjunction with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 401 + ], + "score": 1.0, + "content": "adversarial training to learn an inverse dynamics model jointly optimized with the policy. In contrast, we", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "avoid the limitation of collecting human-labeled dense state correspondences by using a self-supervised", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "score": 1.0, + "content": "algorithm (i.e., TCC [7]) which uses cycle-consistency to automatically learn the correspondence between", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 418, + 507, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 507, + 432 + ], + "score": 1.0, + "content": "states of two domains. We also show that this formulation improves generalization to unseen embodiments.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 429, + 445, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 445, + 442 + ], + "score": 1.0, + "content": "Since the problem setup is similar to ours, we also compare to their method as a baseline.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 356, + 507, + 442 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 448, + 174, + 462 + ], + "lines": [ + { + "bbox": [ + 103, + 446, + 175, + 465 + ], + "spans": [ + { + "bbox": [ + 103, + 446, + 175, + 465 + ], + "score": 1.0, + "content": "3 Approach", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "Our overall XIRL framework (Figure 1) addresses the cross-embodiment visual imitation problem", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "(Section 3.1). The framework consists of first using TCC to self-supervise embodiment-invariant visual", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 502 + ], + "score": 1.0, + "content": "representations (Section 3.2), then using a novel embodiment-invariant visual reward function (Section 3.3)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 500, + 437, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 437, + 513 + ], + "score": 1.0, + "content": "to perform cross-embodiment visual imitation via reinforcement learning (Section 3.4).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 468, + 506, + 513 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 517, + 217, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 218, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 218, + 529 + ], + "score": 1.0, + "content": "3.1 Problem Formulation", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "Our objective is to extract an agent-invariant definition of a task, via a learned reward function, from a", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "dataset of videos of separate agents performing the same task. In particular, we are interested in agents", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "that may solve the task in entirely different ways due to differences in their end-effector, shapes, dynamics,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "score": 1.0, + "content": "etc., which we refer to as embodiment differences. For example, consider how differently a vacuum gripper", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 574, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 589 + ], + "score": 1.0, + "content": "and a parallel-jaw gripper will grasp an object as a result of their respective end-effectors. Such a setup", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "is quite common in robotic imitation learning, where we might have access to observation data of humans", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 595, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 610 + ], + "score": 1.0, + "content": "demonstrating a task, but want to teach a robot to perform it. It is very likely that the way the human", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 607, + 361, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 361, + 619 + ], + "score": 1.0, + "content": "executes the task will diverge from how the robot would execute it.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 533, + 506, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 504, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 362, + 636 + ], + "score": 1.0, + "content": "We define a dataset of multiple agents performing the same task", + "type": "text" + }, + { + "bbox": [ + 362, + 623, + 371, + 633 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 622, + 384, + 636 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 384, + 622, + 438, + 635 + ], + "score": 0.92, + "content": "\\textstyle D = \\bigcup _ { i = 1 } ^ { n } D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 622, + 469, + 636 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 470, + 623, + 482, + 634 + ], + "score": 0.88, + "content": "D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "is an", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 340, + 646 + ], + "score": 1.0, + "content": "agent-specific dataset containing observations of only agent", + "type": "text" + }, + { + "bbox": [ + 340, + 634, + 345, + 643 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 633, + 410, + 646 + ], + "score": 1.0, + "content": "performing task", + "type": "text" + }, + { + "bbox": [ + 410, + 635, + 419, + 643 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 633, + 506, + 646 + ], + "score": 1.0, + "content": ". Each agent’s dataset", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 107, + 644, + 504, + 659 + ], + "spans": [ + { + "bbox": [ + 107, + 646, + 119, + 657 + ], + "score": 0.87, + "content": "D _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 644, + 262, + 659 + ], + "score": 1.0, + "content": "is a collection of videos defined as", + "type": "text" + }, + { + "bbox": [ + 262, + 645, + 339, + 658 + ], + "score": 0.92, + "content": "{ { D } _ { i } } = \\{ v _ { i } ^ { 1 } , v _ { i } ^ { 2 } . . . v _ { i } ^ { K } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 644, + 370, + 659 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 370, + 644, + 380, + 658 + ], + "score": 0.89, + "content": "v _ { i } ^ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 644, + 490, + 659 + ], + "score": 1.0, + "content": "represents the video of the", + "type": "text" + }, + { + "bbox": [ + 490, + 645, + 504, + 657 + ], + "score": 0.89, + "content": "j ^ { t h }", + "type": "inline_equation" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 199, + 669 + ], + "score": 1.0, + "content": "demonstration of agent", + "type": "text" + }, + { + "bbox": [ + 199, + 657, + 204, + 666 + ], + "score": 0.66, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 655, + 335, + 669 + ], + "score": 1.0, + "content": "successfully performing the task", + "type": "text" + }, + { + "bbox": [ + 335, + 658, + 343, + 666 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 655, + 474, + 669 + ], + "score": 1.0, + "content": ". We would like to highlight that", + "type": "text" + }, + { + "bbox": [ + 474, + 657, + 484, + 666 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "contains observation data, i.e., it does not store the actions taken by the respective agents. We use", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 677, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 504, + 690 + ], + "score": 1.0, + "content": "self-supervised representation learning techniques to learn task-specific representations from this dataset.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 50.5, + "bbox_fs": [ + 105, + 622, + 506, + 690 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 124, + 69, + 488, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 124, + 69, + 488, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 69, + 488, + 192 + ], + "spans": [ + { + "bbox": [ + 124, + 69, + 488, + 192 + ], + "score": 0.972, + "type": "image", + "image_path": "d83a8d2ebcb5bc6f49888dea08e985c5543dca5689bfd625916e473bff58dfa5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 124, + 69, + 488, + 110.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 124, + 110.0, + 488, + 151.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 124, + 151.0, + 488, + 192.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 120, + 198, + 487, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 197, + 488, + 207 + ], + "spans": [ + { + "bbox": [ + 123, + 197, + 488, + 207 + ], + "score": 1.0, + "content": "Figure 2. Difference in state distributions of the across different embodiments performing the same task in X-MAGICAL (Section 4.1).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 106, + 214, + 232, + 225 + ], + "lines": [ + { + "bbox": [ + 104, + 211, + 232, + 229 + ], + "spans": [ + { + "bbox": [ + 104, + 211, + 232, + 229 + ], + "score": 1.0, + "content": "3.2 Representation Learning", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "In this work, we use TCC [7] to learn task-specific representations in a self-supervised way. The method", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "has been shown to learn useful representations on videos of the same action for temporally fine-grained", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 251, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 506, + 264 + ], + "score": 1.0, + "content": "downstream tasks. In their paper, the authors show that TCC representations can predict frame-level task", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 261, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 275 + ], + "score": 1.0, + "content": "progress, such as predicting how much water is in a cup during pouring, without requiring any human", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "annotations. Task progress can provide dense signals for learning a new task and we would like to bake", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "score": 1.0, + "content": "this property into our learned reward. Another advantage of TCC is that it does not require supervision", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "for frame-level alignment (i.e., which frames in two videos correspond to each other). Such frame-to-frame", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "score": 1.0, + "content": "correspondences are required by a prior method, RLV [6], to achieve successful reinforcement learning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 313, + 424, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 424, + 327 + ], + "score": 1.0, + "content": "on the considered tasks, but we would like to avoid this type of manual supervision.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 505, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 210, + 343 + ], + "score": 1.0, + "content": "We train an image encoder", + "type": "text" + }, + { + "bbox": [ + 210, + 331, + 218, + 342 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 330, + 303, + 343 + ], + "score": 1.0, + "content": ", that ingests an image", + "type": "text" + }, + { + "bbox": [ + 303, + 331, + 310, + 340 + ], + "score": 0.61, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 330, + 437, + 343 + ], + "score": 1.0, + "content": "and returns an embedding vector", + "type": "text" + }, + { + "bbox": [ + 438, + 330, + 456, + 342 + ], + "score": 0.91, + "content": "\\phi ( I )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 330, + 506, + 343 + ], + "score": 1.0, + "content": ", using TCC.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "TCC assumes that there exist semantic temporal correspondences between two video sequences, even", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 352, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 363 + ], + "score": 1.0, + "content": "though they are not labeled and the actions may be executed at different speeds. Note that in our case, the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "assumption holds since all sequences in our dataset originate from the same task. Furthermore, even if two", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "different agents accomplish the task very differently, there will be a common set of states or frames that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 381, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 397 + ], + "score": 1.0, + "content": "will temporally correspond. When we apply the TCC loss, we compare frames of one agent performing", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "the task with frames from another, and search for temporal similarities in how both execute the task.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "By performing multiple such comparisons and cycling-back (described in the next paragraph), TCC", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "encodes task progress in its latent representation, a property that is useful for learning task-specific, yet", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 424, + 489, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 489, + 437 + ], + "score": 1.0, + "content": "embodiment-invariant reward functions. For completeness, we describe the training technique below.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 440, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 185, + 453 + ], + "score": 1.0, + "content": "We define a dataset", + "type": "text" + }, + { + "bbox": [ + 186, + 440, + 263, + 452 + ], + "score": 0.92, + "content": "D _ { \\mathrm { a l l } } = \\{ v _ { 1 } , v _ { 2 } . . . v _ { N } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "that contains the videos of all agents executing the same task", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 450, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 115, + 461 + ], + "score": 0.68, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 450, + 506, + 463 + ], + "score": 1.0, + "content": ". We are able to merge the datasets of different agents since TCC does not require embodiment", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "labels (i.e., IDs) during training. We first sample a random batch of videos and embed all their frames", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 265, + 485 + ], + "score": 1.0, + "content": "using the aforementioned image encoder", + "type": "text" + }, + { + "bbox": [ + 266, + 473, + 272, + 483 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 471, + 335, + 485 + ], + "score": 1.0, + "content": ". For each video", + "type": "text" + }, + { + "bbox": [ + 336, + 474, + 344, + 483 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 471, + 505, + 485 + ], + "score": 1.0, + "content": ", this results in a sequence of embeddings", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 482, + 507, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 219, + 496 + ], + "score": 0.91, + "content": "V _ { i } { = } \\{ \\phi ( v _ { i } ^ { 1 } ) , \\phi ( v _ { i } ^ { 2 } ) { \\ldots } , \\phi ( v _ { i } ^ { L _ { i } } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 482, + 246, + 497 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 247, + 484, + 258, + 495 + ], + "score": 0.88, + "content": "L _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 482, + 327, + 497 + ], + "score": 1.0, + "content": "is the length of the", + "type": "text" + }, + { + "bbox": [ + 328, + 484, + 340, + 494 + ], + "score": 0.89, + "content": "i ^ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 482, + 507, + 497 + ], + "score": 1.0, + "content": "video. From this mini-batch of sequences of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 313, + 507 + ], + "score": 1.0, + "content": "video frame embeddings, we choose a pair of sequences", + "type": "text" + }, + { + "bbox": [ + 313, + 495, + 322, + 506 + ], + "score": 0.87, + "content": "V _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 495, + 338, + 507 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 339, + 495, + 349, + 507 + ], + "score": 0.88, + "content": "V _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "and compute their TCC loss. In particular,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 104, + 507, + 326, + 520 + ], + "score": 1.0, + "content": "we randomly sample a frame embedding from sequence", + "type": "text" + }, + { + "bbox": [ + 326, + 507, + 345, + 518 + ], + "score": 0.4, + "content": "V _ { i } -", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 507, + 360, + 520 + ], + "score": 1.0, + "content": "say", + "type": "text" + }, + { + "bbox": [ + 361, + 507, + 372, + 519 + ], + "score": 0.88, + "content": "V _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 507, + 456, + 520 + ], + "score": 1.0, + "content": "corresponding to the", + "type": "text" + }, + { + "bbox": [ + 456, + 507, + 468, + 517 + ], + "score": 0.88, + "content": "t ^ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "frame of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 129, + 531 + ], + "score": 1.0, + "content": "video", + "type": "text" + }, + { + "bbox": [ + 129, + 520, + 138, + 529 + ], + "score": 0.76, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 519, + 302, + 531 + ], + "score": 1.0, + "content": "– and compute the soft nearest-neighbor of", + "type": "text" + }, + { + "bbox": [ + 302, + 518, + 314, + 531 + ], + "score": 0.9, + "content": "V _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 519, + 361, + 531 + ], + "score": 1.0, + "content": "in sequence", + "type": "text" + }, + { + "bbox": [ + 361, + 519, + 372, + 531 + ], + "score": 0.87, + "content": "V _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "in the embedding space as follows:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 537, + 405, + 572 + ], + "lines": [ + { + "bbox": [ + 205, + 537, + 405, + 572 + ], + "spans": [ + { + "bbox": [ + 205, + 537, + 405, + 572 + ], + "score": 0.93, + "content": "\\widetilde { V _ { i j } ^ { t } } = \\sum _ { k } ^ { L _ { j } } \\alpha _ { k } V _ { j } ^ { k } , \\quad \\mathrm { w h e r e } \\quad \\alpha _ { k } = \\frac { e ^ { - \\| V _ { i } ^ { t } - V _ { j } ^ { k } \\| ^ { 2 } } } { \\sum _ { k } ^ { L _ { j } } e ^ { - \\| V _ { i } ^ { t } - V _ { j } ^ { k } \\| ^ { 2 } } }", + "type": "interline_equation", + "image_path": "1aa1ecc85f3ff03327a4b6dddcafdcba98280d3be0b009e0bbd148da1397a899.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 537, + 405, + 554.5 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 205, + 554.5, + 405, + 572.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 280, + 598 + ], + "score": 1.0, + "content": "We then cycle-back [7] to the first sequence", + "type": "text" + }, + { + "bbox": [ + 280, + 583, + 290, + 594 + ], + "score": 0.87, + "content": "V _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 579, + 458, + 598 + ], + "score": 1.0, + "content": "by computing the soft-nearest neighbor of", + "type": "text" + }, + { + "bbox": [ + 459, + 581, + 471, + 596 + ], + "score": 0.9, + "content": "\\widetilde { V _ { i j } ^ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 579, + 506, + 598 + ], + "score": 1.0, + "content": "with all", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 595, + 457, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 158, + 609 + ], + "score": 1.0, + "content": "the frames in", + "type": "text" + }, + { + "bbox": [ + 158, + 596, + 168, + 607 + ], + "score": 0.85, + "content": "V _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 595, + 317, + 609 + ], + "score": 1.0, + "content": ". The probability of cycling-back to the", + "type": "text" + }, + { + "bbox": [ + 317, + 596, + 331, + 606 + ], + "score": 0.9, + "content": "k ^ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 595, + 367, + 609 + ], + "score": 1.0, + "content": "frame in", + "type": "text" + }, + { + "bbox": [ + 367, + 596, + 376, + 607 + ], + "score": 0.86, + "content": "V _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 595, + 457, + 609 + ], + "score": 1.0, + "content": "can be computed as:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 613, + 354, + 650 + ], + "lines": [ + { + "bbox": [ + 257, + 613, + 354, + 650 + ], + "spans": [ + { + "bbox": [ + 257, + 613, + 354, + 650 + ], + "score": 0.94, + "content": "\\beta _ { i j t } ^ { k } = \\frac { e ^ { - \\| \\widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \\| ^ { 2 } } } { \\sum _ { k } ^ { L _ { i } } e ^ { - \\| \\widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \\| ^ { 2 } } }", + "type": "interline_equation", + "image_path": "5cf53c96374e1685f1e050502ffcece393d71ff448300d600ba1331a904ec29b.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 257, + 613, + 354, + 631.5 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 257, + 631.5, + 354, + 650.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 725 + ], + "lines": [ + { + "bbox": [ + 102, + 653, + 508, + 677 + ], + "spans": [ + { + "bbox": [ + 102, + 653, + 308, + 677 + ], + "score": 1.0, + "content": "The expected frame index we cycle-back to is then", + "type": "text" + }, + { + "bbox": [ + 308, + 657, + 372, + 672 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu _ { i j } ^ { t } = \\sum _ { k } ^ { L _ { i } } \\beta _ { i j t } ^ { k } k } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 653, + 508, + 677 + ], + "score": 1.0, + "content": ". Since we know the index of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 258, + 683 + ], + "score": 1.0, + "content": "frame that started the cycle, in this case", + "type": "text" + }, + { + "bbox": [ + 258, + 672, + 263, + 680 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 670, + 505, + 683 + ], + "score": 1.0, + "content": ", we can minimize the mean-squared (MSE) error loss between", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 681, + 509, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 111, + 695 + ], + "score": 0.74, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 681, + 350, + 703 + ], + "score": 1.0, + "content": "and the closest index retrieved via soft-nearest neighbor, i.e.,", + "type": "text" + }, + { + "bbox": [ + 351, + 683, + 363, + 698 + ], + "score": 0.9, + "content": "\\widetilde { V _ { i j } ^ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 681, + 509, + 703 + ], + "score": 1.0, + "content": ". The loss for a single frame is thus:", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 696, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 107, + 696, + 166, + 712 + ], + "score": 0.93, + "content": "L _ { i j } ^ { t } = ( \\mu _ { i j } ^ { t } - t ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 696, + 315, + 711 + ], + "score": 1.0, + "content": ". Finally, we minimize the average loss", + "type": "text" + }, + { + "bbox": [ + 315, + 700, + 322, + 707 + ], + "score": 0.87, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 696, + 415, + 711 + ], + "score": 1.0, + "content": "over all frames in video", + "type": "text" + }, + { + "bbox": [ + 415, + 699, + 424, + 709 + ], + "score": 0.82, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 696, + 506, + 711 + ], + "score": 1.0, + "content": "with all other videos", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 708, + 267, + 726 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 158, + 726 + ], + "score": 1.0, + "content": "in the dataset", + "type": "text" + }, + { + "bbox": [ + 158, + 713, + 168, + 723 + ], + "score": 0.84, + "content": "v _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 708, + 212, + 726 + ], + "score": 1.0, + "content": ", defined as", + "type": "text" + }, + { + "bbox": [ + 213, + 710, + 262, + 725 + ], + "score": 0.95, + "content": "\\begin{array} { r } { L = \\sum _ { i j t } L _ { i j } ^ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 708, + 267, + 726 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 3, + "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": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 124, + 69, + 488, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 124, + 69, + 488, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 69, + 488, + 192 + ], + "spans": [ + { + "bbox": [ + 124, + 69, + 488, + 192 + ], + "score": 0.972, + "type": "image", + "image_path": "d83a8d2ebcb5bc6f49888dea08e985c5543dca5689bfd625916e473bff58dfa5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 124, + 69, + 488, + 110.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 124, + 110.0, + 488, + 151.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 124, + 151.0, + 488, + 192.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 120, + 198, + 487, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 197, + 488, + 207 + ], + "spans": [ + { + "bbox": [ + 123, + 197, + 488, + 207 + ], + "score": 1.0, + "content": "Figure 2. Difference in state distributions of the across different embodiments performing the same task in X-MAGICAL (Section 4.1).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 106, + 214, + 232, + 225 + ], + "lines": [ + { + "bbox": [ + 104, + 211, + 232, + 229 + ], + "spans": [ + { + "bbox": [ + 104, + 211, + 232, + 229 + ], + "score": 1.0, + "content": "3.2 Representation Learning", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 243 + ], + "score": 1.0, + "content": "In this work, we use TCC [7] to learn task-specific representations in a self-supervised way. The method", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "has been shown to learn useful representations on videos of the same action for temporally fine-grained", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 251, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 506, + 264 + ], + "score": 1.0, + "content": "downstream tasks. In their paper, the authors show that TCC representations can predict frame-level task", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 261, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 275 + ], + "score": 1.0, + "content": "progress, such as predicting how much water is in a cup during pouring, without requiring any human", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "annotations. Task progress can provide dense signals for learning a new task and we would like to bake", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "score": 1.0, + "content": "this property into our learned reward. Another advantage of TCC is that it does not require supervision", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "for frame-level alignment (i.e., which frames in two videos correspond to each other). Such frame-to-frame", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "score": 1.0, + "content": "correspondences are required by a prior method, RLV [6], to achieve successful reinforcement learning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 313, + 424, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 424, + 327 + ], + "score": 1.0, + "content": "on the considered tasks, but we would like to avoid this type of manual supervision.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 230, + 506, + 327 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 505, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 210, + 343 + ], + "score": 1.0, + "content": "We train an image encoder", + "type": "text" + }, + { + "bbox": [ + 210, + 331, + 218, + 342 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 330, + 303, + 343 + ], + "score": 1.0, + "content": ", that ingests an image", + "type": "text" + }, + { + "bbox": [ + 303, + 331, + 310, + 340 + ], + "score": 0.61, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 330, + 437, + 343 + ], + "score": 1.0, + "content": "and returns an embedding vector", + "type": "text" + }, + { + "bbox": [ + 438, + 330, + 456, + 342 + ], + "score": 0.91, + "content": "\\phi ( I )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 330, + 506, + 343 + ], + "score": 1.0, + "content": ", using TCC.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "score": 1.0, + "content": "TCC assumes that there exist semantic temporal correspondences between two video sequences, even", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 352, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 363 + ], + "score": 1.0, + "content": "though they are not labeled and the actions may be executed at different speeds. Note that in our case, the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "assumption holds since all sequences in our dataset originate from the same task. Furthermore, even if two", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "different agents accomplish the task very differently, there will be a common set of states or frames that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 381, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 397 + ], + "score": 1.0, + "content": "will temporally correspond. When we apply the TCC loss, we compare frames of one agent performing", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "the task with frames from another, and search for temporal similarities in how both execute the task.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "By performing multiple such comparisons and cycling-back (described in the next paragraph), TCC", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "encodes task progress in its latent representation, a property that is useful for learning task-specific, yet", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 424, + 489, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 489, + 437 + ], + "score": 1.0, + "content": "embodiment-invariant reward functions. For completeness, we describe the training technique below.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 330, + 506, + 437 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 440, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 185, + 453 + ], + "score": 1.0, + "content": "We define a dataset", + "type": "text" + }, + { + "bbox": [ + 186, + 440, + 263, + 452 + ], + "score": 0.92, + "content": "D _ { \\mathrm { a l l } } = \\{ v _ { 1 } , v _ { 2 } . . . v _ { N } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "that contains the videos of all agents executing the same task", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 450, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 115, + 461 + ], + "score": 0.68, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 450, + 506, + 463 + ], + "score": 1.0, + "content": ". We are able to merge the datasets of different agents since TCC does not require embodiment", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "labels (i.e., IDs) during training. We first sample a random batch of videos and embed all their frames", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 265, + 485 + ], + "score": 1.0, + "content": "using the aforementioned image encoder", + "type": "text" + }, + { + "bbox": [ + 266, + 473, + 272, + 483 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 471, + 335, + 485 + ], + "score": 1.0, + "content": ". For each video", + "type": "text" + }, + { + "bbox": [ + 336, + 474, + 344, + 483 + ], + "score": 0.84, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 471, + 505, + 485 + ], + "score": 1.0, + "content": ", this results in a sequence of embeddings", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 482, + 507, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 219, + 496 + ], + "score": 0.91, + "content": "V _ { i } { = } \\{ \\phi ( v _ { i } ^ { 1 } ) , \\phi ( v _ { i } ^ { 2 } ) { \\ldots } , \\phi ( v _ { i } ^ { L _ { i } } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 482, + 246, + 497 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 247, + 484, + 258, + 495 + ], + "score": 0.88, + "content": "L _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 482, + 327, + 497 + ], + "score": 1.0, + "content": "is the length of the", + "type": "text" + }, + { + "bbox": [ + 328, + 484, + 340, + 494 + ], + "score": 0.89, + "content": "i ^ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 482, + 507, + 497 + ], + "score": 1.0, + "content": "video. From this mini-batch of sequences of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 313, + 507 + ], + "score": 1.0, + "content": "video frame embeddings, we choose a pair of sequences", + "type": "text" + }, + { + "bbox": [ + 313, + 495, + 322, + 506 + ], + "score": 0.87, + "content": "V _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 495, + 338, + 507 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 339, + 495, + 349, + 507 + ], + "score": 0.88, + "content": "V _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "and compute their TCC loss. In particular,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 104, + 507, + 326, + 520 + ], + "score": 1.0, + "content": "we randomly sample a frame embedding from sequence", + "type": "text" + }, + { + "bbox": [ + 326, + 507, + 345, + 518 + ], + "score": 0.4, + "content": "V _ { i } -", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 507, + 360, + 520 + ], + "score": 1.0, + "content": "say", + "type": "text" + }, + { + "bbox": [ + 361, + 507, + 372, + 519 + ], + "score": 0.88, + "content": "V _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 507, + 456, + 520 + ], + "score": 1.0, + "content": "corresponding to the", + "type": "text" + }, + { + "bbox": [ + 456, + 507, + 468, + 517 + ], + "score": 0.88, + "content": "t ^ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "frame of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 129, + 531 + ], + "score": 1.0, + "content": "video", + "type": "text" + }, + { + "bbox": [ + 129, + 520, + 138, + 529 + ], + "score": 0.76, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 519, + 302, + 531 + ], + "score": 1.0, + "content": "– and compute the soft nearest-neighbor of", + "type": "text" + }, + { + "bbox": [ + 302, + 518, + 314, + 531 + ], + "score": 0.9, + "content": "V _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 519, + 361, + 531 + ], + "score": 1.0, + "content": "in sequence", + "type": "text" + }, + { + "bbox": [ + 361, + 519, + 372, + 531 + ], + "score": 0.87, + "content": "V _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "in the embedding space as follows:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 439, + 507, + 531 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 537, + 405, + 572 + ], + "lines": [ + { + "bbox": [ + 205, + 537, + 405, + 572 + ], + "spans": [ + { + "bbox": [ + 205, + 537, + 405, + 572 + ], + "score": 0.93, + "content": "\\widetilde { V _ { i j } ^ { t } } = \\sum _ { k } ^ { L _ { j } } \\alpha _ { k } V _ { j } ^ { k } , \\quad \\mathrm { w h e r e } \\quad \\alpha _ { k } = \\frac { e ^ { - \\| V _ { i } ^ { t } - V _ { j } ^ { k } \\| ^ { 2 } } } { \\sum _ { k } ^ { L _ { j } } e ^ { - \\| V _ { i } ^ { t } - V _ { j } ^ { k } \\| ^ { 2 } } }", + "type": "interline_equation", + "image_path": "1aa1ecc85f3ff03327a4b6dddcafdcba98280d3be0b009e0bbd148da1397a899.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 537, + 405, + 554.5 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 205, + 554.5, + 405, + 572.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 280, + 598 + ], + "score": 1.0, + "content": "We then cycle-back [7] to the first sequence", + "type": "text" + }, + { + "bbox": [ + 280, + 583, + 290, + 594 + ], + "score": 0.87, + "content": "V _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 579, + 458, + 598 + ], + "score": 1.0, + "content": "by computing the soft-nearest neighbor of", + "type": "text" + }, + { + "bbox": [ + 459, + 581, + 471, + 596 + ], + "score": 0.9, + "content": "\\widetilde { V _ { i j } ^ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 579, + 506, + 598 + ], + "score": 1.0, + "content": "with all", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 595, + 457, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 158, + 609 + ], + "score": 1.0, + "content": "the frames in", + "type": "text" + }, + { + "bbox": [ + 158, + 596, + 168, + 607 + ], + "score": 0.85, + "content": "V _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 595, + 317, + 609 + ], + "score": 1.0, + "content": ". The probability of cycling-back to the", + "type": "text" + }, + { + "bbox": [ + 317, + 596, + 331, + 606 + ], + "score": 0.9, + "content": "k ^ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 595, + 367, + 609 + ], + "score": 1.0, + "content": "frame in", + "type": "text" + }, + { + "bbox": [ + 367, + 596, + 376, + 607 + ], + "score": 0.86, + "content": "V _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 595, + 457, + 609 + ], + "score": 1.0, + "content": "can be computed as:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 579, + 506, + 609 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 613, + 354, + 650 + ], + "lines": [ + { + "bbox": [ + 257, + 613, + 354, + 650 + ], + "spans": [ + { + "bbox": [ + 257, + 613, + 354, + 650 + ], + "score": 0.94, + "content": "\\beta _ { i j t } ^ { k } = \\frac { e ^ { - \\| \\widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \\| ^ { 2 } } } { \\sum _ { k } ^ { L _ { i } } e ^ { - \\| \\widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \\| ^ { 2 } } }", + "type": "interline_equation", + "image_path": "5cf53c96374e1685f1e050502ffcece393d71ff448300d600ba1331a904ec29b.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 257, + 613, + 354, + 631.5 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 257, + 631.5, + 354, + 650.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 725 + ], + "lines": [ + { + "bbox": [ + 102, + 653, + 508, + 677 + ], + "spans": [ + { + "bbox": [ + 102, + 653, + 308, + 677 + ], + "score": 1.0, + "content": "The expected frame index we cycle-back to is then", + "type": "text" + }, + { + "bbox": [ + 308, + 657, + 372, + 672 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mu _ { i j } ^ { t } = \\sum _ { k } ^ { L _ { i } } \\beta _ { i j t } ^ { k } k } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 653, + 508, + 677 + ], + "score": 1.0, + "content": ". Since we know the index of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 258, + 683 + ], + "score": 1.0, + "content": "frame that started the cycle, in this case", + "type": "text" + }, + { + "bbox": [ + 258, + 672, + 263, + 680 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 670, + 505, + 683 + ], + "score": 1.0, + "content": ", we can minimize the mean-squared (MSE) error loss between", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 681, + 509, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 111, + 695 + ], + "score": 0.74, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 681, + 350, + 703 + ], + "score": 1.0, + "content": "and the closest index retrieved via soft-nearest neighbor, i.e.,", + "type": "text" + }, + { + "bbox": [ + 351, + 683, + 363, + 698 + ], + "score": 0.9, + "content": "\\widetilde { V _ { i j } ^ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 681, + 509, + 703 + ], + "score": 1.0, + "content": ". The loss for a single frame is thus:", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 696, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 107, + 696, + 166, + 712 + ], + "score": 0.93, + "content": "L _ { i j } ^ { t } = ( \\mu _ { i j } ^ { t } - t ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 696, + 315, + 711 + ], + "score": 1.0, + "content": ". Finally, we minimize the average loss", + "type": "text" + }, + { + "bbox": [ + 315, + 700, + 322, + 707 + ], + "score": 0.87, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 696, + 415, + 711 + ], + "score": 1.0, + "content": "over all frames in video", + "type": "text" + }, + { + "bbox": [ + 415, + 699, + 424, + 709 + ], + "score": 0.82, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 696, + 506, + 711 + ], + "score": 1.0, + "content": "with all other videos", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 708, + 267, + 726 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 158, + 726 + ], + "score": 1.0, + "content": "in the dataset", + "type": "text" + }, + { + "bbox": [ + 158, + 713, + 168, + 723 + ], + "score": 0.84, + "content": "v _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 708, + 212, + 726 + ], + "score": 1.0, + "content": ", defined as", + "type": "text" + }, + { + "bbox": [ + 213, + 710, + 262, + 725 + ], + "score": 0.95, + "content": "\\begin{array} { r } { L = \\sum _ { i j t } L _ { i j } ^ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 708, + 267, + 726 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 102, + 653, + 509, + 726 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 208, + 95, + 400, + 168 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 221, + 77, + 390, + 86 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 220, + 77, + 391, + 86 + ], + "spans": [ + { + "bbox": [ + 220, + 77, + 391, + 86 + ], + "score": 1.0, + "content": "Table 1. Statistics of Demos of the X-MAGICAL Embodiments", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 208, + 95, + 400, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 208, + 95, + 400, + 168 + ], + "spans": [ + { + "bbox": [ + 208, + 95, + 400, + 168 + ], + "score": 0.981, + "html": "
EmbodimentMean ± Std.Dev. Demo Length (no. of frames)
Long-stick48.0 ±28.5
Medium-stick59.9 ±27.9
Short-stick81.7 ±35.0
Gripper110.8 ±39.8
", + "type": "table", + "image_path": "e8a8a00b088bfc240df0ba0bc685c6840d6d6dd62347522e1e34bdf89585ff9e.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 208, + 95, + 400, + 109.6 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 208, + 109.6, + 400, + 124.19999999999999 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 208, + 124.19999999999999, + 400, + 138.79999999999998 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 208, + 138.79999999999998, + 400, + 153.39999999999998 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 208, + 153.39999999999998, + 400, + 167.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 107, + 187, + 201, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 202, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 202, + 200 + ], + "score": 1.0, + "content": "3.3 Reward Function", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 204, + 505, + 365 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 176, + 216 + ], + "score": 1.0, + "content": "Once the encoder", + "type": "text" + }, + { + "bbox": [ + 176, + 204, + 183, + 215 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 204, + 494, + 216 + ], + "score": 1.0, + "content": "has been trained on demonstrations of different agents performing the same task", + "type": "text" + }, + { + "bbox": [ + 494, + 204, + 502, + 214 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 204, + 506, + 216 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 213, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 213, + 506, + 228 + ], + "score": 1.0, + "content": "we want to use it to transfer information about the task from one agent to another. We do this by leveraging", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 224, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 107, + 226, + 114, + 236 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 224, + 506, + 238 + ], + "score": 1.0, + "content": "to generate rewards via distances to goal observations in the learned embedding space. Specifically, we", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 210, + 248 + ], + "score": 1.0, + "content": "define the goal embedding", + "type": "text" + }, + { + "bbox": [ + 210, + 237, + 217, + 247 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "as the mean embedding of the last frame of all the demonstration videos in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 103, + 242, + 504, + 263 + ], + "spans": [ + { + "bbox": [ + 103, + 242, + 178, + 263 + ], + "score": 1.0, + "content": "our offline dataset", + "type": "text" + }, + { + "bbox": [ + 179, + 248, + 195, + 259 + ], + "score": 0.89, + "content": "D _ { \\mathrm { a l l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 242, + 245, + 263 + ], + "score": 1.0, + "content": ". Concretely,", + "type": "text" + }, + { + "bbox": [ + 246, + 246, + 313, + 259 + ], + "score": 0.93, + "content": "\\scriptstyle g = \\sum _ { i = 1 } ^ { N } \\phi ( v _ { i } ^ { L _ { i } } ) \\neq N", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 242, + 342, + 263 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 343, + 248, + 353, + 259 + ], + "score": 0.88, + "content": "L _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 242, + 438, + 263 + ], + "score": 1.0, + "content": "is the length of video", + "type": "text" + }, + { + "bbox": [ + 438, + 250, + 447, + 259 + ], + "score": 0.83, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 242, + 497, + 263 + ], + "score": 1.0, + "content": ". Our reward", + "type": "text" + }, + { + "bbox": [ + 498, + 250, + 504, + 258 + ], + "score": 0.7, + "content": "r", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 453, + 272 + ], + "score": 1.0, + "content": "then is the scaled negative distance of the current state embedding to the goal embedding", + "type": "text" + }, + { + "bbox": [ + 453, + 260, + 460, + 270 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 258, + 477, + 272 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + }, + { + "bbox": [ + 477, + 258, + 505, + 270 + ], + "score": 0.91, + "content": "r ( s ) =", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 268, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 174, + 282 + ], + "score": 0.92, + "content": "- 1 / \\kappa \\cdot \\| \\phi ( s ) - g \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 268, + 204, + 284 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 205, + 270, + 223, + 281 + ], + "score": 0.92, + "content": "\\phi ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 268, + 418, + 284 + ], + "score": 1.0, + "content": "is the state embedding at the current timestep and", + "type": "text" + }, + { + "bbox": [ + 419, + 272, + 425, + 280 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 268, + 506, + 284 + ], + "score": 1.0, + "content": "is a scale parameter", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "that ensures the distances are in a range amenable for training reinforcement learning algorithms [23]. We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 195, + 304 + ], + "score": 1.0, + "content": "found it effective to set", + "type": "text" + }, + { + "bbox": [ + 195, + 293, + 202, + 301 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "to be the average distance of the first frame’s embedding to the goal embedding", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 300, + 315 + ], + "score": 1.0, + "content": "for all the demonstrations in the dataset. Defining", + "type": "text" + }, + { + "bbox": [ + 300, + 304, + 306, + 311 + ], + "score": 0.7, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 300, + 506, + 315 + ], + "score": 1.0, + "content": "in this manner gives us several advantages: (a) it is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "dense, encoding both task completion and task progress, (b) it does not require any correspondence with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "a reference trajectory [5, 14] and (c) it sidesteps the need for a finite library of reference trajectories, unlike", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "prior work [5, 16] that define time-indexed rewards relative to some reference trajectory. Thus, agents with", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "trajectories of varying lengths (due to embodiment-specific constraints) can efficiently leverage this reward", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 353, + 464, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 464, + 366 + ], + "score": 1.0, + "content": "because the learned encoder can map different strategies to a common notion of task progress.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 370, + 230, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 231, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 231, + 385 + ], + "score": 1.0, + "content": "3.4 Reinforcement Learning", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 106, + 387, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 251, + 399 + ], + "score": 1.0, + "content": "Using the pre-trained frozen encoder", + "type": "text" + }, + { + "bbox": [ + 251, + 388, + 258, + 398 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 387, + 506, + 399 + ], + "score": 1.0, + "content": ", we define a Markov Decision Process (MDP) for any agent as", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 144, + 410 + ], + "score": 1.0, + "content": "the tuple", + "type": "text" + }, + { + "bbox": [ + 144, + 397, + 196, + 410 + ], + "score": 0.91, + "content": "\\langle \\bar { \\boldsymbol { S } } , \\boldsymbol { A } , \\boldsymbol { P } , \\boldsymbol { r } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 397, + 224, + 410 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 225, + 398, + 233, + 407 + ], + "score": 0.82, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 397, + 344, + 410 + ], + "score": 1.0, + "content": "is the set of possible states,", + "type": "text" + }, + { + "bbox": [ + 344, + 398, + 353, + 408 + ], + "score": 0.77, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 397, + 470, + 410 + ], + "score": 1.0, + "content": "is the set of possible actions,", + "type": "text" + }, + { + "bbox": [ + 471, + 398, + 480, + 407 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 408, + 504, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 497, + 420 + ], + "score": 1.0, + "content": "state transition probability matrix encoding the dynamics of the environment (including the agent) and", + "type": "text" + }, + { + "bbox": [ + 498, + 410, + 504, + 418 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "is the learned reward function (defined in Section 3.3). Notice how we are able to use the same reward", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 427, + 507, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 427, + 141, + 443 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 141, + 431, + 147, + 439 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 427, + 507, + 443 + ], + "score": 1.0, + "content": "for any agent – even ones that the encoder may not have seen during training. Furthermore,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 453 + ], + "score": 1.0, + "content": "this reward function solely depends on the learned encoder. Hence, the task represented by the MDP now", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "depends solely on how well the encoder has learned task-specific representations since we do not use the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "environment reward to either define the task or learn the policy. This is an important distinction because we", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "score": 1.0, + "content": "are expecting the encoder to generalize to new states that an agent might encounter during training, as the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "score": 1.0, + "content": "expert demonstrations in our dataset only contain successful trajectories. It is also possible to augment sparse", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "rewards (which only define task success or failure) with our learned dense reward while training policies.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 107, + 511, + 222, + 525 + ], + "lines": [ + { + "bbox": [ + 103, + 507, + 225, + 531 + ], + "spans": [ + { + "bbox": [ + 103, + 507, + 225, + 531 + ], + "score": 1.0, + "content": "4 Experimental Setup", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 107, + 531, + 237, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 238, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 238, + 544 + ], + "score": 1.0, + "content": "4.1 X-MAGICAL Benchmark", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 505, + 560 + ], + "score": 1.0, + "content": "We introduce a cross-embodiment imitation learning benchmark, X-MAGICAL, which is based on the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "score": 1.0, + "content": "imitation learning benchmark MAGICAL [24], implemented on top of the physics engine PyMunk [25].", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "In this work, we consider a simplified 2D equivalent of a common household robotic sweeping task,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 580, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 505, + 592 + ], + "score": 1.0, + "content": "wherein an agent has to push three objects into a predefined zone in the environment (colored in pink). We", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "choose this task specifically because its long-horizon nature highlights how different agent embodiments", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 601, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 612 + ], + "score": 1.0, + "content": "can generate entirely different trajectories. The reward in this environment is defined as the fraction of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 612, + 303, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 303, + 623 + ], + "score": 1.0, + "content": "debris swept into the zone at the end of the episode.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 504, + 639 + ], + "score": 1.0, + "content": "Multiple Embodiments in X-MAGICAL. We create multiple embodiments by designing agents with", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "different shapes and end-effectors that induce variations in how each agent solves a task. In Figure 1, we", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 660 + ], + "score": 1.0, + "content": "show three of these embodiments and some sample trajectories that solve the sweeping task. Please see", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "score": 1.0, + "content": "Appendix B for a detailed description of the benchmark. Three agents are shaped like a stick and they differ", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "only in length. We call them short-stick, medium-stick and long-stick based on the length of their body. The", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "agent in the last row is called gripper: it is circular in shape and has two arms that can actuate. All agents", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "are capable of two actions - a rotation around their axis and a translation in a forward/backward direction", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "along this axis (similar to the agent in the MAGICAL benchmark). All agents have a two-dimensional", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "action space and use force and torque control to change their position and orientation respectively. The", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 47 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 208, + 95, + 400, + 168 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 221, + 77, + 390, + 86 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 220, + 77, + 391, + 86 + ], + "spans": [ + { + "bbox": [ + 220, + 77, + 391, + 86 + ], + "score": 1.0, + "content": "Table 1. Statistics of Demos of the X-MAGICAL Embodiments", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 208, + 95, + 400, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 208, + 95, + 400, + 168 + ], + "spans": [ + { + "bbox": [ + 208, + 95, + 400, + 168 + ], + "score": 0.981, + "html": "
EmbodimentMean ± Std.Dev. Demo Length (no. of frames)
Long-stick48.0 ±28.5
Medium-stick59.9 ±27.9
Short-stick81.7 ±35.0
Gripper110.8 ±39.8
", + "type": "table", + "image_path": "e8a8a00b088bfc240df0ba0bc685c6840d6d6dd62347522e1e34bdf89585ff9e.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 208, + 95, + 400, + 109.6 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 208, + 109.6, + 400, + 124.19999999999999 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 208, + 124.19999999999999, + 400, + 138.79999999999998 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 208, + 138.79999999999998, + 400, + 153.39999999999998 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 208, + 153.39999999999998, + 400, + 167.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 107, + 187, + 201, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 202, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 202, + 200 + ], + "score": 1.0, + "content": "3.3 Reward Function", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 204, + 505, + 365 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 176, + 216 + ], + "score": 1.0, + "content": "Once the encoder", + "type": "text" + }, + { + "bbox": [ + 176, + 204, + 183, + 215 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 204, + 494, + 216 + ], + "score": 1.0, + "content": "has been trained on demonstrations of different agents performing the same task", + "type": "text" + }, + { + "bbox": [ + 494, + 204, + 502, + 214 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 204, + 506, + 216 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 213, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 213, + 506, + 228 + ], + "score": 1.0, + "content": "we want to use it to transfer information about the task from one agent to another. We do this by leveraging", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 224, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 107, + 226, + 114, + 236 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 224, + 506, + 238 + ], + "score": 1.0, + "content": "to generate rewards via distances to goal observations in the learned embedding space. Specifically, we", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 210, + 248 + ], + "score": 1.0, + "content": "define the goal embedding", + "type": "text" + }, + { + "bbox": [ + 210, + 237, + 217, + 247 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "as the mean embedding of the last frame of all the demonstration videos in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 103, + 242, + 504, + 263 + ], + "spans": [ + { + "bbox": [ + 103, + 242, + 178, + 263 + ], + "score": 1.0, + "content": "our offline dataset", + "type": "text" + }, + { + "bbox": [ + 179, + 248, + 195, + 259 + ], + "score": 0.89, + "content": "D _ { \\mathrm { a l l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 242, + 245, + 263 + ], + "score": 1.0, + "content": ". Concretely,", + "type": "text" + }, + { + "bbox": [ + 246, + 246, + 313, + 259 + ], + "score": 0.93, + "content": "\\scriptstyle g = \\sum _ { i = 1 } ^ { N } \\phi ( v _ { i } ^ { L _ { i } } ) \\neq N", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 242, + 342, + 263 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 343, + 248, + 353, + 259 + ], + "score": 0.88, + "content": "L _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 242, + 438, + 263 + ], + "score": 1.0, + "content": "is the length of video", + "type": "text" + }, + { + "bbox": [ + 438, + 250, + 447, + 259 + ], + "score": 0.83, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 242, + 497, + 263 + ], + "score": 1.0, + "content": ". Our reward", + "type": "text" + }, + { + "bbox": [ + 498, + 250, + 504, + 258 + ], + "score": 0.7, + "content": "r", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 453, + 272 + ], + "score": 1.0, + "content": "then is the scaled negative distance of the current state embedding to the goal embedding", + "type": "text" + }, + { + "bbox": [ + 453, + 260, + 460, + 270 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 258, + 477, + 272 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + }, + { + "bbox": [ + 477, + 258, + 505, + 270 + ], + "score": 0.91, + "content": "r ( s ) =", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 268, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 174, + 282 + ], + "score": 0.92, + "content": "- 1 / \\kappa \\cdot \\| \\phi ( s ) - g \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 268, + 204, + 284 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 205, + 270, + 223, + 281 + ], + "score": 0.92, + "content": "\\phi ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 268, + 418, + 284 + ], + "score": 1.0, + "content": "is the state embedding at the current timestep and", + "type": "text" + }, + { + "bbox": [ + 419, + 272, + 425, + 280 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 268, + 506, + 284 + ], + "score": 1.0, + "content": "is a scale parameter", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "that ensures the distances are in a range amenable for training reinforcement learning algorithms [23]. We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 195, + 304 + ], + "score": 1.0, + "content": "found it effective to set", + "type": "text" + }, + { + "bbox": [ + 195, + 293, + 202, + 301 + ], + "score": 0.78, + "content": "\\kappa", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "to be the average distance of the first frame’s embedding to the goal embedding", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 300, + 315 + ], + "score": 1.0, + "content": "for all the demonstrations in the dataset. Defining", + "type": "text" + }, + { + "bbox": [ + 300, + 304, + 306, + 311 + ], + "score": 0.7, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 300, + 506, + 315 + ], + "score": 1.0, + "content": "in this manner gives us several advantages: (a) it is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "dense, encoding both task completion and task progress, (b) it does not require any correspondence with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "a reference trajectory [5, 14] and (c) it sidesteps the need for a finite library of reference trajectories, unlike", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "prior work [5, 16] that define time-indexed rewards relative to some reference trajectory. Thus, agents with", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "trajectories of varying lengths (due to embodiment-specific constraints) can efficiently leverage this reward", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 353, + 464, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 464, + 366 + ], + "score": 1.0, + "content": "because the learned encoder can map different strategies to a common notion of task progress.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 14, + "bbox_fs": [ + 103, + 204, + 506, + 366 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 370, + 230, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 231, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 231, + 385 + ], + "score": 1.0, + "content": "3.4 Reinforcement Learning", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 106, + 387, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 251, + 399 + ], + "score": 1.0, + "content": "Using the pre-trained frozen encoder", + "type": "text" + }, + { + "bbox": [ + 251, + 388, + 258, + 398 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 387, + 506, + 399 + ], + "score": 1.0, + "content": ", we define a Markov Decision Process (MDP) for any agent as", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 144, + 410 + ], + "score": 1.0, + "content": "the tuple", + "type": "text" + }, + { + "bbox": [ + 144, + 397, + 196, + 410 + ], + "score": 0.91, + "content": "\\langle \\bar { \\boldsymbol { S } } , \\boldsymbol { A } , \\boldsymbol { P } , \\boldsymbol { r } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 397, + 224, + 410 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 225, + 398, + 233, + 407 + ], + "score": 0.82, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 397, + 344, + 410 + ], + "score": 1.0, + "content": "is the set of possible states,", + "type": "text" + }, + { + "bbox": [ + 344, + 398, + 353, + 408 + ], + "score": 0.77, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 397, + 470, + 410 + ], + "score": 1.0, + "content": "is the set of possible actions,", + "type": "text" + }, + { + "bbox": [ + 471, + 398, + 480, + 407 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 408, + 504, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 497, + 420 + ], + "score": 1.0, + "content": "state transition probability matrix encoding the dynamics of the environment (including the agent) and", + "type": "text" + }, + { + "bbox": [ + 498, + 410, + 504, + 418 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "is the learned reward function (defined in Section 3.3). Notice how we are able to use the same reward", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 427, + 507, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 427, + 141, + 443 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 141, + 431, + 147, + 439 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 427, + 507, + 443 + ], + "score": 1.0, + "content": "for any agent – even ones that the encoder may not have seen during training. Furthermore,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 453 + ], + "score": 1.0, + "content": "this reward function solely depends on the learned encoder. Hence, the task represented by the MDP now", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "depends solely on how well the encoder has learned task-specific representations since we do not use the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "environment reward to either define the task or learn the policy. This is an important distinction because we", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "score": 1.0, + "content": "are expecting the encoder to generalize to new states that an agent might encounter during training, as the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 496 + ], + "score": 1.0, + "content": "expert demonstrations in our dataset only contain successful trajectories. It is also possible to augment sparse", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "rewards (which only define task success or failure) with our learned dense reward while training policies.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 387, + 507, + 505 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 511, + 222, + 525 + ], + "lines": [ + { + "bbox": [ + 103, + 507, + 225, + 531 + ], + "spans": [ + { + "bbox": [ + 103, + 507, + 225, + 531 + ], + "score": 1.0, + "content": "4 Experimental Setup", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 107, + 531, + 237, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 238, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 238, + 544 + ], + "score": 1.0, + "content": "4.1 X-MAGICAL Benchmark", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 505, + 560 + ], + "score": 1.0, + "content": "We introduce a cross-embodiment imitation learning benchmark, X-MAGICAL, which is based on the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "score": 1.0, + "content": "imitation learning benchmark MAGICAL [24], implemented on top of the physics engine PyMunk [25].", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 582 + ], + "score": 1.0, + "content": "In this work, we consider a simplified 2D equivalent of a common household robotic sweeping task,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 580, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 505, + 592 + ], + "score": 1.0, + "content": "wherein an agent has to push three objects into a predefined zone in the environment (colored in pink). We", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "choose this task specifically because its long-horizon nature highlights how different agent embodiments", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 601, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 612 + ], + "score": 1.0, + "content": "can generate entirely different trajectories. The reward in this environment is defined as the fraction of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 612, + 303, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 303, + 623 + ], + "score": 1.0, + "content": "debris swept into the zone at the end of the episode.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 548, + 506, + 623 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 627, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 504, + 639 + ], + "score": 1.0, + "content": "Multiple Embodiments in X-MAGICAL. We create multiple embodiments by designing agents with", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "different shapes and end-effectors that induce variations in how each agent solves a task. In Figure 1, we", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 648, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 660 + ], + "score": 1.0, + "content": "show three of these embodiments and some sample trajectories that solve the sweeping task. Please see", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "score": 1.0, + "content": "Appendix B for a detailed description of the benchmark. Three agents are shaped like a stick and they differ", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "only in length. We call them short-stick, medium-stick and long-stick based on the length of their body. The", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "agent in the last row is called gripper: it is circular in shape and has two arms that can actuate. All agents", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "are capable of two actions - a rotation around their axis and a translation in a forward/backward direction", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "along this axis (similar to the agent in the MAGICAL benchmark). All agents have a two-dimensional", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "action space and use force and torque control to change their position and orientation respectively. The", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 506, + 85 + ], + "score": 1.0, + "content": "gripper agent has an additional degree of freedom for opening or closing its fingers. The default state", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "of the gripper’s fingers is open. For all agents, the state representation is a 16-dimensional vector with", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 207, + 106 + ], + "score": 1.0, + "content": "the following information:", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 208, + 94, + 231, + 105 + ], + "score": 0.89, + "content": "( { \\bar { x } } , y )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 231, + 94, + 315, + 106 + ], + "score": 1.0, + "content": "position of the agent,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 315, + 94, + 362, + 105 + ], + "score": 0.38, + "content": "( \\cos \\bar { \\theta } , \\sin \\theta _ { . } ^ { \\cdot }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 362, + 94, + 390, + 106 + ], + "score": 1.0, + "content": ") where", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 390, + 94, + 397, + 104 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 397, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "is the agent’s 2D orientation,", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 245, + 117 + ], + "score": 1.0, + "content": "and for each of the three debris: its", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 245, + 104, + 269, + 116 + ], + "score": 0.89, + "content": "( x , y )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 269, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "position, its distance to the agent and its distance to the goal", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "zone. We frame-stack [26] three consecutive state vectors to encode temporal and velocity information,", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 125, + 263, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 263, + 136 + ], + "score": 1.0, + "content": "resulting in a final state dimension of 48.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 627, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 73, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 506, + 85 + ], + "score": 1.0, + "content": "gripper agent has an additional degree of freedom for opening or closing its fingers. The default state", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "of the gripper’s fingers is open. For all agents, the state representation is a 16-dimensional vector with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 207, + 106 + ], + "score": 1.0, + "content": "the following information:", + "type": "text" + }, + { + "bbox": [ + 208, + 94, + 231, + 105 + ], + "score": 0.89, + "content": "( { \\bar { x } } , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 94, + 315, + 106 + ], + "score": 1.0, + "content": "position of the agent,", + "type": "text" + }, + { + "bbox": [ + 315, + 94, + 362, + 105 + ], + "score": 0.38, + "content": "( \\cos \\bar { \\theta } , \\sin \\theta _ { . } ^ { \\cdot }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 94, + 390, + 106 + ], + "score": 1.0, + "content": ") where", + "type": "text" + }, + { + "bbox": [ + 390, + 94, + 397, + 104 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "is the agent’s 2D orientation,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 245, + 117 + ], + "score": 1.0, + "content": "and for each of the three debris: its", + "type": "text" + }, + { + "bbox": [ + 245, + 104, + 269, + 116 + ], + "score": 0.89, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "position, its distance to the agent and its distance to the goal", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "zone. We frame-stack [26] three consecutive state vectors to encode temporal and velocity information,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 125, + 263, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 263, + 136 + ], + "score": 1.0, + "content": "resulting in a final state dimension of 48.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "score": 1.0, + "content": "Demonstrations and Different Embodiment Strategies in X-MAGICAL. To learn task-specific repre-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 151, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 506, + 164 + ], + "score": 1.0, + "content": "sentations for this task, we collect 1000 demonstrations per agent, where each demonstration consists in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 162, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 472, + 175 + ], + "score": 1.0, + "content": "sweeping all three debris, initialized with random positions, into the target zone. This is the dataset", + "type": "text" + }, + { + "bbox": [ + 472, + 163, + 488, + 173 + ], + "score": 0.91, + "content": "D _ { \\mathrm { a l l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 162, + 506, + 175 + ], + "score": 1.0, + "content": "(de-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "score": 1.0, + "content": "scribed in Section 3.1) containing observation-only agent-specific demonstrations. In Figure 2, we highlight", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "score": 1.0, + "content": "the differences that exist between the trajectories taken by these agents. Figure 2a shows a heat map of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "frequency of visits (state visitation count) of each agent at every 2D position in the grid, across all demon-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 424, + 216 + ], + "score": 1.0, + "content": "strations in the dataset. We plot the 2D projection of the state visitation count onto the", + "type": "text" + }, + { + "bbox": [ + 425, + 204, + 442, + 214 + ], + "score": 0.58, + "content": "X Y", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "plane with a bin", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "score": 1.0, + "content": "width of 0.1. Yellow encodes higher state visitation whereas blue encodes lower state visitation. We observe", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "score": 1.0, + "content": "that agent long-stick has less coverage of the environment as opposed to agent gripper, which has signifi-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "score": 1.0, + "content": "cantly more coverage. Similarly, we show the distribution of debris locations for all agents across all demon-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 258 + ], + "score": 1.0, + "content": "strations in Figure 2b. In Figure 2c, we plot a randomly sampled trajectory from each agent’s demonstration", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 268 + ], + "score": 1.0, + "content": "pool. We use transparency to encode the start (lighter) and end (darker) of the trajectory. It is clear from this", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "figure that each agent solves the task in a different manner. Additionally, there is a significant difference in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 278, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 505, + 289 + ], + "score": 1.0, + "content": "the time taken by each agent to execute this task, as shown in Table 1. Agent long-stick is able to finish the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 288, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 300 + ], + "score": 1.0, + "content": "task the quickest because of its long shape that can sweep all the debris at once, while agents short-stick and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 298, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 506, + 311 + ], + "score": 1.0, + "content": "gripper take longer because they have to frequently push or grasp one debris at a time. These differences are", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "the types of challenges that a representation must overcome to successfully generalize across embodiments.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "score": 1.0, + "content": "As such, X-MAGICAL serves to create a highly simplified version of a real-world scenario where we might", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 328, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 507, + 343 + ], + "score": 1.0, + "content": "want to learn new tasks from an observation dataset of humans performing these tasks in highly diverse ways.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 346, + 167, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 168, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 168, + 359 + ], + "score": 1.0, + "content": "4.2 Baselines", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 363, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 504, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 504, + 374 + ], + "score": 1.0, + "content": "Here, we describe the alternative reward functions we baseline our method against, color coded to match", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "their appearance in Figs. 3, 4, and 5. 1) ImageNet: We use an ImageNet pre-trained ResNet-18 encoder with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "score": 1.0, + "content": "no additional self-supervised training, i.e., we load the pre-trained weights, discard the classification head,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "and use the 512-dimensional embedding space from the previous layer. 2) Goal classifier: We follow [27]", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 405, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 416 + ], + "score": 1.0, + "content": "and train a goal frame classifier on a binary classification task where the last frame of all the demonstrations", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 416, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 504, + 427 + ], + "score": 1.0, + "content": "is considered positive and all the others are considered negatives. We use the output probabilities of the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 425, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 506, + 438 + ], + "score": 1.0, + "content": "classifier as the reward function. 3) LIFS: We implement the method from [16] which learns a feature space", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "that is invariant to different embodiments using a contrastive loss function paired with an autoencoding", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "loss. 4) TCN: single-view Time-Contrastive Network (TCN) [5] with positive and negative frame windows", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 457, + 479, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 479, + 470 + ], + "score": 1.0, + "content": "of 1 and 4 respectively. For more details regarding baseline implementations, see Appendix D.1.1.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 107, + 474, + 224, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 225, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 225, + 487 + ], + "score": 1.0, + "content": "4.3 Implementation Details", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "Our encoder for all experiments and methods is a ResNet-18 [28] initialized with ImageNet pre-trained", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 501, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 506, + 513 + ], + "score": 1.0, + "content": "weights. We replace the classification head with an embedding layer outputting a 32-dimensional vector.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 510, + 503, + 524 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 288, + 524 + ], + "score": 1.0, + "content": "The encoder is trained on images of resolution", + "type": "text" + }, + { + "bbox": [ + 288, + 512, + 327, + 522 + ], + "score": 0.9, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 510, + 482, + 524 + ], + "score": 1.0, + "content": "with ADAM [29] and a learning rate of", + "type": "text" + }, + { + "bbox": [ + 482, + 511, + 503, + 522 + ], + "score": 0.9, + "content": "1 0 ^ { - 5 }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "score": 1.0, + "content": "Note that our learned reward is agnostic to the RL algorithm used – in this work, we opt for Soft-Actor", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "Critic (SAC) [30], which is a reinforcement learning algorithm that has been successfully used to train", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 543, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 554 + ], + "score": 1.0, + "content": "policies for continuous control tasks [31]. Once the TCC encoder is trained, we use it to embed the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 554, + 347, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 347, + 565 + ], + "score": 1.0, + "content": "observation frames as the agent interacts with the environment.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 106, + 573, + 188, + 586 + ], + "lines": [ + { + "bbox": [ + 103, + 570, + 190, + 590 + ], + "spans": [ + { + "bbox": [ + 103, + 570, + 190, + 590 + ], + "score": 1.0, + "content": "5 Experiments", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 593, + 505, + 698 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "We execute a series of experiments to evaluate whether the learned reward functions are effective at visual", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "imitation. Specifically, our experiments seek to answer the following questions: first (Section 5.1), in", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 612, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 339, + 627 + ], + "score": 1.0, + "content": "the same-embodiment case, where the demonstration dataset", + "type": "text" + }, + { + "bbox": [ + 339, + 614, + 349, + 624 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 612, + 506, + 627 + ], + "score": 1.0, + "content": "contains the embodiment of the learning", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "score": 1.0, + "content": "agent, does our method enable successful reinforcement learning for that agent? Next (Section 5.2), we", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 635, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 459, + 647 + ], + "score": 1.0, + "content": "investigate our primary interest, the cross-embodiment case, where the demonstration dataset", + "type": "text" + }, + { + "bbox": [ + 459, + 635, + 469, + 645 + ], + "score": 0.76, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 635, + 506, + 647 + ], + "score": 1.0, + "content": "does not", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "contain the embodiment of the learning agent. To additionally test our approach using real-world data", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "score": 1.0, + "content": "(Section 5.3), we use the dataset from [6] to leverage real-world human demonstrations to learn policies", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "score": 1.0, + "content": "in simulation. Note that each embodiment’s performance is evaluated over 50 episodes and all figures", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 439, + 689 + ], + "score": 1.0, + "content": "plot the mean performance over 5 random seeds, with a standard deviation shading of", + "type": "text" + }, + { + "bbox": [ + 440, + 677, + 460, + 687 + ], + "score": 0.82, + "content": "\\pm 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 676, + 506, + 689 + ], + "score": 1.0, + "content": ". Videos of", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 688, + 269, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 269, + 699 + ], + "score": 1.0, + "content": "our results are in the supplementary video.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 49.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 136 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 73, + 506, + 136 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 506, + 153 + ], + "score": 1.0, + "content": "Demonstrations and Different Embodiment Strategies in X-MAGICAL. To learn task-specific repre-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 151, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 506, + 164 + ], + "score": 1.0, + "content": "sentations for this task, we collect 1000 demonstrations per agent, where each demonstration consists in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 162, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 472, + 175 + ], + "score": 1.0, + "content": "sweeping all three debris, initialized with random positions, into the target zone. This is the dataset", + "type": "text" + }, + { + "bbox": [ + 472, + 163, + 488, + 173 + ], + "score": 0.91, + "content": "D _ { \\mathrm { a l l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 162, + 506, + 175 + ], + "score": 1.0, + "content": "(de-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "score": 1.0, + "content": "scribed in Section 3.1) containing observation-only agent-specific demonstrations. In Figure 2, we highlight", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "score": 1.0, + "content": "the differences that exist between the trajectories taken by these agents. Figure 2a shows a heat map of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 193, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 506, + 206 + ], + "score": 1.0, + "content": "frequency of visits (state visitation count) of each agent at every 2D position in the grid, across all demon-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 424, + 216 + ], + "score": 1.0, + "content": "strations in the dataset. We plot the 2D projection of the state visitation count onto the", + "type": "text" + }, + { + "bbox": [ + 425, + 204, + 442, + 214 + ], + "score": 0.58, + "content": "X Y", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "plane with a bin", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 226 + ], + "score": 1.0, + "content": "width of 0.1. Yellow encodes higher state visitation whereas blue encodes lower state visitation. We observe", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 238 + ], + "score": 1.0, + "content": "that agent long-stick has less coverage of the environment as opposed to agent gripper, which has signifi-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "score": 1.0, + "content": "cantly more coverage. Similarly, we show the distribution of debris locations for all agents across all demon-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 258 + ], + "score": 1.0, + "content": "strations in Figure 2b. In Figure 2c, we plot a randomly sampled trajectory from each agent’s demonstration", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 257, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 268 + ], + "score": 1.0, + "content": "pool. We use transparency to encode the start (lighter) and end (darker) of the trajectory. It is clear from this", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "figure that each agent solves the task in a different manner. Additionally, there is a significant difference in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 278, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 505, + 289 + ], + "score": 1.0, + "content": "the time taken by each agent to execute this task, as shown in Table 1. Agent long-stick is able to finish the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 288, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 300 + ], + "score": 1.0, + "content": "task the quickest because of its long shape that can sweep all the debris at once, while agents short-stick and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 298, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 506, + 311 + ], + "score": 1.0, + "content": "gripper take longer because they have to frequently push or grasp one debris at a time. These differences are", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "the types of challenges that a representation must overcome to successfully generalize across embodiments.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "score": 1.0, + "content": "As such, X-MAGICAL serves to create a highly simplified version of a real-world scenario where we might", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 328, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 507, + 343 + ], + "score": 1.0, + "content": "want to learn new tasks from an observation dataset of humans performing these tasks in highly diverse ways.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 15, + "bbox_fs": [ + 104, + 140, + 507, + 343 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 346, + 167, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 168, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 168, + 359 + ], + "score": 1.0, + "content": "4.2 Baselines", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 363, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 504, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 504, + 374 + ], + "score": 1.0, + "content": "Here, we describe the alternative reward functions we baseline our method against, color coded to match", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "their appearance in Figs. 3, 4, and 5. 1) ImageNet: We use an ImageNet pre-trained ResNet-18 encoder with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "score": 1.0, + "content": "no additional self-supervised training, i.e., we load the pre-trained weights, discard the classification head,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "and use the 512-dimensional embedding space from the previous layer. 2) Goal classifier: We follow [27]", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 405, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 416 + ], + "score": 1.0, + "content": "and train a goal frame classifier on a binary classification task where the last frame of all the demonstrations", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 416, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 504, + 427 + ], + "score": 1.0, + "content": "is considered positive and all the others are considered negatives. We use the output probabilities of the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 425, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 506, + 438 + ], + "score": 1.0, + "content": "classifier as the reward function. 3) LIFS: We implement the method from [16] which learns a feature space", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 435, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 450 + ], + "score": 1.0, + "content": "that is invariant to different embodiments using a contrastive loss function paired with an autoencoding", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "loss. 4) TCN: single-view Time-Contrastive Network (TCN) [5] with positive and negative frame windows", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 457, + 479, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 479, + 470 + ], + "score": 1.0, + "content": "of 1 and 4 respectively. For more details regarding baseline implementations, see Appendix D.1.1.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 363, + 506, + 470 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 474, + 224, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 225, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 225, + 487 + ], + "score": 1.0, + "content": "4.3 Implementation Details", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 491, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "Our encoder for all experiments and methods is a ResNet-18 [28] initialized with ImageNet pre-trained", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 501, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 506, + 513 + ], + "score": 1.0, + "content": "weights. We replace the classification head with an embedding layer outputting a 32-dimensional vector.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 510, + 503, + 524 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 288, + 524 + ], + "score": 1.0, + "content": "The encoder is trained on images of resolution", + "type": "text" + }, + { + "bbox": [ + 288, + 512, + 327, + 522 + ], + "score": 0.9, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 510, + 482, + 524 + ], + "score": 1.0, + "content": "with ADAM [29] and a learning rate of", + "type": "text" + }, + { + "bbox": [ + 482, + 511, + 503, + 522 + ], + "score": 0.9, + "content": "1 0 ^ { - 5 }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "score": 1.0, + "content": "Note that our learned reward is agnostic to the RL algorithm used – in this work, we opt for Soft-Actor", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "Critic (SAC) [30], which is a reinforcement learning algorithm that has been successfully used to train", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 543, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 554 + ], + "score": 1.0, + "content": "policies for continuous control tasks [31]. Once the TCC encoder is trained, we use it to embed the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 554, + 347, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 347, + 565 + ], + "score": 1.0, + "content": "observation frames as the agent interacts with the environment.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 491, + 506, + 565 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 573, + 188, + 586 + ], + "lines": [ + { + "bbox": [ + 103, + 570, + 190, + 590 + ], + "spans": [ + { + "bbox": [ + 103, + 570, + 190, + 590 + ], + "score": 1.0, + "content": "5 Experiments", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 593, + 505, + 698 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "We execute a series of experiments to evaluate whether the learned reward functions are effective at visual", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "imitation. Specifically, our experiments seek to answer the following questions: first (Section 5.1), in", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 612, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 339, + 627 + ], + "score": 1.0, + "content": "the same-embodiment case, where the demonstration dataset", + "type": "text" + }, + { + "bbox": [ + 339, + 614, + 349, + 624 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 612, + 506, + 627 + ], + "score": 1.0, + "content": "contains the embodiment of the learning", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "score": 1.0, + "content": "agent, does our method enable successful reinforcement learning for that agent? Next (Section 5.2), we", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 635, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 459, + 647 + ], + "score": 1.0, + "content": "investigate our primary interest, the cross-embodiment case, where the demonstration dataset", + "type": "text" + }, + { + "bbox": [ + 459, + 635, + 469, + 645 + ], + "score": 0.76, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 635, + 506, + 647 + ], + "score": 1.0, + "content": "does not", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "contain the embodiment of the learning agent. To additionally test our approach using real-world data", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "score": 1.0, + "content": "(Section 5.3), we use the dataset from [6] to leverage real-world human demonstrations to learn policies", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "score": 1.0, + "content": "in simulation. Note that each embodiment’s performance is evaluated over 50 episodes and all figures", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 439, + 689 + ], + "score": 1.0, + "content": "plot the mean performance over 5 random seeds, with a standard deviation shading of", + "type": "text" + }, + { + "bbox": [ + 440, + 677, + 460, + 687 + ], + "score": 0.82, + "content": "\\pm 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 676, + 506, + 689 + ], + "score": 1.0, + "content": ". Videos of", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 688, + 269, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 269, + 699 + ], + "score": 1.0, + "content": "our results are in the supplementary video.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 49.5, + "bbox_fs": [ + 105, + 592, + 506, + 699 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 72, + 503, + 155 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 72, + 503, + 155 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 72, + 503, + 155 + ], + "spans": [ + { + "bbox": [ + 107, + 72, + 503, + 155 + ], + "score": 0.962, + "type": "image", + "image_path": "43e882c2e5c9ae9bc4a4cb89eead1e6c094266389993350975196c84fc86b2ae.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 72, + 503, + 99.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 99.66666666666667, + 503, + 127.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 127.33333333333334, + 503, + 155.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 107, + 178, + 503, + 261 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 105, + 161, + 506, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 170 + ], + "score": 1.0, + "content": "Figure 3. Same-embodiment setting: Comparison of XIRL with other baseline reward functions, using SAC [30] for RL policy learning on the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 167, + 187, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 187, + 177 + ], + "score": 1.0, + "content": "X-MAGICAL sweeping task.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "image_body", + "bbox": [ + 107, + 178, + 503, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 178, + 503, + 261 + ], + "spans": [ + { + "bbox": [ + 107, + 178, + 503, + 261 + ], + "score": 0.961, + "type": "image", + "image_path": "aad585723541b372d579fefbbb51f0a4e09326d6305a358a51fe8ad3884e021e.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 178, + 503, + 205.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 205.66666666666666, + 503, + 233.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 233.33333333333331, + 503, + 261.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 266, + 502, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 266, + 504, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 504, + 276 + ], + "score": 1.0, + "content": "Figure 4. Cross-embodiment setting: XIRL performs favorably when compared with other baseline reward functions, trained on observation-only", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 273, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 284 + ], + "score": 1.0, + "content": "demonstrations from different embodiments. Each agent{long-stick, medium-stick, short-stick, gripper} is shown using demonstrations from the other", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 282, + 349, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 349, + 291 + ], + "score": 1.0, + "content": "3 embodiments, with SAC [30] for RL policy learning on the X-MAGICAL sweeping task.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 106, + 292, + 381, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 381, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 381, + 304 + ], + "score": 1.0, + "content": "5.1 Results on Learning from Same-Embodiment Demonstrations", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "In this experiment, we want to validate whether our approach of using a reward function trained with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "TCC is good enough to train agents to perform the task defined in a dataset of expert demonstrations.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 328, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 506, + 341 + ], + "score": 1.0, + "content": "Note that the learned reward function has to be robust enough such that it can provide a useful signal for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "new states an agent might encounter while learning a policy and interacting with the environment. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "Figure 3, we compare our method XIRL with baselines described in Section 4.2. We find XIRL is more", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "sample-efficient than the other learned reward baselines. We attribute this sample efficiency to the fact that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "the TCC embeddings encode task progress which helps the agent learn to reach for objects and goal zones", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "while interacting with the environment, rather than exploring in a purely random manner. This experiment", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 390, + 478, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 478, + 405 + ], + "score": 1.0, + "content": "provides evidence that XIRL’s reward function is suitable for downstream reinforcement learning.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 106, + 408, + 381, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 382, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 382, + 421 + ], + "score": 1.0, + "content": "5.2 Results on Learning from Cross-Embodiment Demonstrations", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 437 + ], + "score": 1.0, + "content": "After verifying that XIRL works on the embodiments it was trained with, we move to the experiments that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "answer the core question in our work: can XIRL generalize to unseen embodiments? In this section we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "conduct experiments where the reward function is learned using embodiments that are different from the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "ones on which the policy is trained. As noted in Table 1, the timescales with which the agents execute the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "task can vary significantly. We conduct four experiments, each one corresponding to holding-out one agent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "from the expert demonstration set. In each such experiment, we train an encoder on demonstrations from", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "the remaining three agents. We compare with reward functions learned using TCN, LIFS, and goal frame", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "classifiers. While both TCC and TCN are contrastive losses, the former makes explicit comparisons across", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "different embodiments, whereas the latter implicitly relies on an encoder shared across embodiments to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "learn the cross-embodiment representation. In Figure 4, we show that XIRL generalizes to new agents", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 530, + 331, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 331, + 542 + ], + "score": 1.0, + "content": "significantly better than the other learned reward baselines.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 107, + 546, + 430, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 432, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 432, + 560 + ], + "score": 1.0, + "content": "5.3 Results on Learning from Real-World Cross-Embodiment Demonstrations", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 563, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "In this experiment, we test how well we can learn rewards from more challenging real-world human", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "demonstration videos. To do so, we use the dataset and State Pusher environment introduced in [6]. We", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 597 + ], + "score": 1.0, + "content": "train two XIRL encoders: XIRL (sim only) trained on 5 teleoperated simulated trajectories (i.e., no domain", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "score": 1.0, + "content": "shift) and XIRL (real only) trained solely on the real-world human demonstrations without using any form", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "of human labeling of paired frames. We compare our results to training the policy on the sparse reward", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "from the environment and the RLV method presented in [6]. As demonstrated in Figure 5, we find our", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "approach can improve the sample-efficiency of learning in the environment, compared to using RLV or", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 636, + 225, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 225, + 649 + ], + "score": 1.0, + "content": "solely the environment reward.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + }, + { + "type": "title", + "bbox": [ + 106, + 653, + 465, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 466, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 466, + 666 + ], + "score": 1.0, + "content": "5.4 Qualitative comparison between learned reward functions vs. handcrafted rewards", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 670, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 669, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 683 + ], + "score": 1.0, + "content": "In Figures 6 and 7, we visualize and compare the XIRL reward function with the environment’s reward", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 680, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 506, + 693 + ], + "score": 1.0, + "content": "(ground truth) for the Sweeping task from X-MAGICAL (see Sec. 4.1 for details) and the State Pusher and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 213, + 705 + ], + "score": 1.0, + "content": "Drawer Opening tasks from", + "type": "text" + }, + { + "bbox": [ + 213, + 692, + 228, + 703 + ], + "score": 0.71, + "content": "[ 6 ] ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 691, + 505, + 705 + ], + "score": 1.0, + "content": ". We find that the learned reward is highly correlated with the ground truth", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 712, + 492, + 722 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 494, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 494, + 723 + ], + "score": 1.0, + "content": "4 For additional qualitative visualizations on a real-world dataset with multiple embodiments, see Appendix C.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 72, + 503, + 155 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 72, + 503, + 155 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 72, + 503, + 155 + ], + "spans": [ + { + "bbox": [ + 107, + 72, + 503, + 155 + ], + "score": 0.962, + "type": "image", + "image_path": "43e882c2e5c9ae9bc4a4cb89eead1e6c094266389993350975196c84fc86b2ae.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 72, + 503, + 99.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 99.66666666666667, + 503, + 127.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 127.33333333333334, + 503, + 155.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 107, + 178, + 503, + 261 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 105, + 161, + 506, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 170 + ], + "score": 1.0, + "content": "Figure 3. Same-embodiment setting: Comparison of XIRL with other baseline reward functions, using SAC [30] for RL policy learning on the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 167, + 187, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 187, + 177 + ], + "score": 1.0, + "content": "X-MAGICAL sweeping task.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "image_body", + "bbox": [ + 107, + 178, + 503, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 178, + 503, + 261 + ], + "spans": [ + { + "bbox": [ + 107, + 178, + 503, + 261 + ], + "score": 0.961, + "type": "image", + "image_path": "aad585723541b372d579fefbbb51f0a4e09326d6305a358a51fe8ad3884e021e.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 178, + 503, + 205.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 205.66666666666666, + 503, + 233.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 233.33333333333331, + 503, + 261.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 266, + 502, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 266, + 504, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 504, + 276 + ], + "score": 1.0, + "content": "Figure 4. Cross-embodiment setting: XIRL performs favorably when compared with other baseline reward functions, trained on observation-only", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 273, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 284 + ], + "score": 1.0, + "content": "demonstrations from different embodiments. Each agent{long-stick, medium-stick, short-stick, gripper} is shown using demonstrations from the other", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 282, + 349, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 349, + 291 + ], + "score": 1.0, + "content": "3 embodiments, with SAC [30] for RL policy learning on the X-MAGICAL sweeping task.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 106, + 292, + 381, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 381, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 381, + 304 + ], + "score": 1.0, + "content": "5.1 Results on Learning from Same-Embodiment Demonstrations", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "In this experiment, we want to validate whether our approach of using a reward function trained with", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "TCC is good enough to train agents to perform the task defined in a dataset of expert demonstrations.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 328, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 506, + 341 + ], + "score": 1.0, + "content": "Note that the learned reward function has to be robust enough such that it can provide a useful signal for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "new states an agent might encounter while learning a policy and interacting with the environment. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "Figure 3, we compare our method XIRL with baselines described in Section 4.2. We find XIRL is more", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "sample-efficient than the other learned reward baselines. We attribute this sample efficiency to the fact that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "the TCC embeddings encode task progress which helps the agent learn to reach for objects and goal zones", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "while interacting with the environment, rather than exploring in a purely random manner. This experiment", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 390, + 478, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 478, + 405 + ], + "score": 1.0, + "content": "provides evidence that XIRL’s reward function is suitable for downstream reinforcement learning.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 308, + 506, + 405 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 408, + 381, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 382, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 382, + 421 + ], + "score": 1.0, + "content": "5.2 Results on Learning from Cross-Embodiment Demonstrations", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 437 + ], + "score": 1.0, + "content": "After verifying that XIRL works on the embodiments it was trained with, we move to the experiments that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "answer the core question in our work: can XIRL generalize to unseen embodiments? In this section we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "conduct experiments where the reward function is learned using embodiments that are different from the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "ones on which the policy is trained. As noted in Table 1, the timescales with which the agents execute the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "task can vary significantly. We conduct four experiments, each one corresponding to holding-out one agent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "from the expert demonstration set. In each such experiment, we train an encoder on demonstrations from", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "the remaining three agents. We compare with reward functions learned using TCN, LIFS, and goal frame", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "classifiers. While both TCC and TCN are contrastive losses, the former makes explicit comparisons across", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "different embodiments, whereas the latter implicitly relies on an encoder shared across embodiments to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "learn the cross-embodiment representation. In Figure 4, we show that XIRL generalizes to new agents", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 530, + 331, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 331, + 542 + ], + "score": 1.0, + "content": "significantly better than the other learned reward baselines.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 425, + 506, + 542 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 546, + 430, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 432, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 432, + 560 + ], + "score": 1.0, + "content": "5.3 Results on Learning from Real-World Cross-Embodiment Demonstrations", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 563, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "In this experiment, we test how well we can learn rewards from more challenging real-world human", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 586 + ], + "score": 1.0, + "content": "demonstration videos. To do so, we use the dataset and State Pusher environment introduced in [6]. We", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 597 + ], + "score": 1.0, + "content": "train two XIRL encoders: XIRL (sim only) trained on 5 teleoperated simulated trajectories (i.e., no domain", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 608 + ], + "score": 1.0, + "content": "shift) and XIRL (real only) trained solely on the real-world human demonstrations without using any form", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "of human labeling of paired frames. We compare our results to training the policy on the sparse reward", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "from the environment and the RLV method presented in [6]. As demonstrated in Figure 5, we find our", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "approach can improve the sample-efficiency of learning in the environment, compared to using RLV or", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 636, + 225, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 225, + 649 + ], + "score": 1.0, + "content": "solely the environment reward.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 563, + 506, + 649 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 653, + 465, + 665 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 466, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 466, + 666 + ], + "score": 1.0, + "content": "5.4 Qualitative comparison between learned reward functions vs. handcrafted rewards", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 670, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 669, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 683 + ], + "score": 1.0, + "content": "In Figures 6 and 7, we visualize and compare the XIRL reward function with the environment’s reward", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 680, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 506, + 693 + ], + "score": 1.0, + "content": "(ground truth) for the Sweeping task from X-MAGICAL (see Sec. 4.1 for details) and the State Pusher and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 213, + 705 + ], + "score": 1.0, + "content": "Drawer Opening tasks from", + "type": "text" + }, + { + "bbox": [ + 213, + 692, + 228, + 703 + ], + "score": 0.71, + "content": "[ 6 ] ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 691, + 505, + 705 + ], + "score": 1.0, + "content": ". We find that the learned reward is highly correlated with the ground truth", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "reward from the environment for both successful demos (first column in Figures 6 and 7) and unsuccessful", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "score": 1.0, + "content": "demos (second column in Figures 6 and 7). It is especially encouraging to see that in a sparser reward", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "environment like the Drawer Opening task, XIRL provides a dense signal that should allow the agent to", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "score": 1.0, + "content": "learn the task more efficiently. Additionally, we can see that in the example of the failed collision trajectory", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 265, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 104, + 265, + 506, + 279 + ], + "score": 1.0, + "content": "(i.e., second row third column in Fig. 7), where the arm collides with the drawer rather than opening it,", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "XIRL is able to provide it with a partial reward (i.e., for correctly moving towards the drawer) as opposed", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 287, + 286, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 286, + 299 + ], + "score": 1.0, + "content": "to the environment reward which remains zero.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 669, + 506, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 154, + 70, + 458, + 179 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 154, + 70, + 458, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 154, + 70, + 458, + 179 + ], + "spans": [ + { + "bbox": [ + 154, + 70, + 458, + 179 + ], + "score": 0.972, + "type": "image", + "image_path": "336f6e56fadde7992fbb34f9016b8184166d06e85e5dd38fc2086c18cc15eab3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 154, + 70, + 458, + 106.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 154, + 106.33333333333334, + 458, + 142.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 154, + 142.66666666666669, + 458, + 179.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 185, + 504, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 185, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 506, + 194 + ], + "score": 1.0, + "content": "Figure 5. Real-world-demo cross-embodiment setting: Comparison of XIRL with baselines using the simulated State Pusher environment from [6].", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 194, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 202 + ], + "score": 1.0, + "content": "XIRL (real only) leverages real-world demonstration videos of humans (left, row 2) to teach a robot arm in sim (left, row 1), but unlike [6], we do", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 201, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 271, + 209 + ], + "score": 1.0, + "content": "not use human-labeled data of paired frame correspondences.", + "type": "text" + }, + { + "bbox": [ + 271, + 201, + 288, + 208 + ], + "score": 0.27, + "content": "\\mathrm { R L V ^ { \\ast } }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 201, + 506, + 209 + ], + "score": 1.0, + "content": "denotes results taken verbatim from [6] which uses a different implementation of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 207, + 183, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 183, + 218 + ], + "score": 1.0, + "content": "SAC for RL policy learning.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 506, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "reward from the environment for both successful demos (first column in Figures 6 and 7) and unsuccessful", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 247 + ], + "score": 1.0, + "content": "demos (second column in Figures 6 and 7). It is especially encouraging to see that in a sparser reward", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "environment like the Drawer Opening task, XIRL provides a dense signal that should allow the agent to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "score": 1.0, + "content": "learn the task more efficiently. Additionally, we can see that in the example of the failed collision trajectory", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 265, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 104, + 265, + 506, + 279 + ], + "score": 1.0, + "content": "(i.e., second row third column in Fig. 7), where the arm collides with the drawer rather than opening it,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "XIRL is able to provide it with a partial reward (i.e., for correctly moving towards the drawer) as opposed", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 287, + 286, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 286, + 299 + ], + "score": 1.0, + "content": "to the environment reward which remains zero.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10 + }, + { + "type": "image", + "bbox": [ + 186, + 308, + 424, + 376 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 186, + 308, + 424, + 376 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 186, + 308, + 424, + 376 + ], + "spans": [ + { + "bbox": [ + 186, + 308, + 424, + 376 + ], + "score": 0.962, + "type": "image", + "image_path": "7dc35f5c98241570164e1208386c3d21140466f479c4540f2cf56d7b06bd8fa5.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 186, + 308, + 424, + 321.6 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 186, + 321.6, + 424, + 335.20000000000005 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 186, + 335.20000000000005, + 424, + 348.80000000000007 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 186, + 348.80000000000007, + 424, + 362.4000000000001 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 186, + 362.4000000000001, + 424, + 376.0000000000001 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 16 + }, + { + "type": "image", + "bbox": [ + 146, + 408, + 463, + 534 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 106, + 383, + 504, + 406 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 382, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 506, + 392 + ], + "score": 1.0, + "content": "Figure 6. X-MAGICAL demo cross-embodiment setting: Visualizing our learned reward function XIRL vs. the environment’s sparse reward on a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 390, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 399 + ], + "score": 1.0, + "content": "successful and unsuccessful demonstration, for the short-stick agent on the X-MAGICAL sweeping task. The learned reward was trained on the three", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 399, + 142, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 142, + 406 + ], + "score": 1.0, + "content": "other agents.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "image_body", + "bbox": [ + 146, + 408, + 463, + 534 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 146, + 408, + 463, + 534 + ], + "spans": [ + { + "bbox": [ + 146, + 408, + 463, + 534 + ], + "score": 0.976, + "type": "image", + "image_path": "af497430173dbd9d9ebdd0f01e8662f043721632071535ec3723b518aa43e7bc.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 146, + 408, + 463, + 450.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 146, + 450.0, + 463, + 492.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 146, + 492.0, + 463, + 534.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 541, + 504, + 558 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 551 + ], + "score": 1.0, + "content": "Figure 7. Real-world-demo cross-embodiment setting: Visualizing our learned XIRL reward function vs. the environment’s sparse reward on the State", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 549, + 264, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 264, + 558 + ], + "score": 1.0, + "content": "Pusher (top) and Drawer Opening (bottom) tasks from [6].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 106, + 575, + 180, + 588 + ], + "lines": [ + { + "bbox": [ + 104, + 573, + 182, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 182, + 591 + ], + "score": 1.0, + "content": "6 Conclusion", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "This paper presents XIRL, a framework for learning vision-based reward functions from videos of expert", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "score": 1.0, + "content": "demonstrators exhibiting different embodiments. XIRL uses TCC to self-supervise a deep visual encoder", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "from videos, and uses this encoder to generate rewards via simple distances to goal observations in the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "embedding space. XIRL enables unseen agents with new embodiments to learn the demonstrated tasks", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "via IRL. Reward functions from XIRL are fully self-supervised from videos, and we can successfully", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "learn tasks without requiring manually paired video frames [6] between the demonstrator and learner. In", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 659, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 670 + ], + "score": 1.0, + "content": "this sense, our method presents favorable scalability to an arbitrary number of embodiments or experts", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "with varying skill levels. Experiments show that policies learned via XIRL are more sample efficient", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 679, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 692 + ], + "score": 1.0, + "content": "than multiple baseline alternatives, including TCN [5], LIFS [16], and RLV [6]. While our experiments", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "demonstrate promising results for learning policies in simulated environments using rewards learned from", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "both simulated and real-world videos, we have yet to show policy learning on a real robot, which we look", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 711, + 226, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 226, + 723 + ], + "score": 1.0, + "content": "forward to trying post-COVID.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 154, + 70, + 458, + 179 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 154, + 70, + 458, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 154, + 70, + 458, + 179 + ], + "spans": [ + { + "bbox": [ + 154, + 70, + 458, + 179 + ], + "score": 0.972, + "type": "image", + "image_path": "336f6e56fadde7992fbb34f9016b8184166d06e85e5dd38fc2086c18cc15eab3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 154, + 70, + 458, + 106.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 154, + 106.33333333333334, + 458, + 142.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 154, + 142.66666666666669, + 458, + 179.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 185, + 504, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 185, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 506, + 194 + ], + "score": 1.0, + "content": "Figure 5. Real-world-demo cross-embodiment setting: Comparison of XIRL with baselines using the simulated State Pusher environment from [6].", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 194, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 202 + ], + "score": 1.0, + "content": "XIRL (real only) leverages real-world demonstration videos of humans (left, row 2) to teach a robot arm in sim (left, row 1), but unlike [6], we do", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 201, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 271, + 209 + ], + "score": 1.0, + "content": "not use human-labeled data of paired frame correspondences.", + "type": "text" + }, + { + "bbox": [ + 271, + 201, + 288, + 208 + ], + "score": 0.27, + "content": "\\mathrm { R L V ^ { \\ast } }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 201, + 506, + 209 + ], + "score": 1.0, + "content": "denotes results taken verbatim from [6] which uses a different implementation of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 207, + 183, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 183, + 218 + ], + "score": 1.0, + "content": "SAC for RL policy learning.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 506, + 298 + ], + "lines": [], + "index": 10, + "bbox_fs": [ + 104, + 224, + 506, + 299 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 186, + 308, + 424, + 376 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 186, + 308, + 424, + 376 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 186, + 308, + 424, + 376 + ], + "spans": [ + { + "bbox": [ + 186, + 308, + 424, + 376 + ], + "score": 0.962, + "type": "image", + "image_path": "7dc35f5c98241570164e1208386c3d21140466f479c4540f2cf56d7b06bd8fa5.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 186, + 308, + 424, + 321.6 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 186, + 321.6, + 424, + 335.20000000000005 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 186, + 335.20000000000005, + 424, + 348.80000000000007 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 186, + 348.80000000000007, + 424, + 362.4000000000001 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 186, + 362.4000000000001, + 424, + 376.0000000000001 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 16 + }, + { + "type": "image", + "bbox": [ + 146, + 408, + 463, + 534 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 106, + 383, + 504, + 406 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 382, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 506, + 392 + ], + "score": 1.0, + "content": "Figure 6. X-MAGICAL demo cross-embodiment setting: Visualizing our learned reward function XIRL vs. the environment’s sparse reward on a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 390, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 399 + ], + "score": 1.0, + "content": "successful and unsuccessful demonstration, for the short-stick agent on the X-MAGICAL sweeping task. The learned reward was trained on the three", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 399, + 142, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 142, + 406 + ], + "score": 1.0, + "content": "other agents.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "image_body", + "bbox": [ + 146, + 408, + 463, + 534 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 146, + 408, + 463, + 534 + ], + "spans": [ + { + "bbox": [ + 146, + 408, + 463, + 534 + ], + "score": 0.976, + "type": "image", + "image_path": "af497430173dbd9d9ebdd0f01e8662f043721632071535ec3723b518aa43e7bc.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 146, + 408, + 463, + 450.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 146, + 450.0, + 463, + 492.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 146, + 492.0, + 463, + 534.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 541, + 504, + 558 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 551 + ], + "score": 1.0, + "content": "Figure 7. Real-world-demo cross-embodiment setting: Visualizing our learned XIRL reward function vs. the environment’s sparse reward on the State", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 549, + 264, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 264, + 558 + ], + "score": 1.0, + "content": "Pusher (top) and Drawer Opening (bottom) tasks from [6].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 106, + 575, + 180, + 588 + ], + "lines": [ + { + "bbox": [ + 104, + 573, + 182, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 182, + 591 + ], + "score": 1.0, + "content": "6 Conclusion", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "This paper presents XIRL, a framework for learning vision-based reward functions from videos of expert", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 619 + ], + "score": 1.0, + "content": "demonstrators exhibiting different embodiments. XIRL uses TCC to self-supervise a deep visual encoder", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "from videos, and uses this encoder to generate rewards via simple distances to goal observations in the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "embedding space. XIRL enables unseen agents with new embodiments to learn the demonstrated tasks", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "via IRL. Reward functions from XIRL are fully self-supervised from videos, and we can successfully", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "learn tasks without requiring manually paired video frames [6] between the demonstrator and learner. In", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 659, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 670 + ], + "score": 1.0, + "content": "this sense, our method presents favorable scalability to an arbitrary number of embodiments or experts", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "with varying skill levels. Experiments show that policies learned via XIRL are more sample efficient", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 679, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 692 + ], + "score": 1.0, + "content": "than multiple baseline alternatives, including TCN [5], LIFS [16], and RLV [6]. While our experiments", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "demonstrate promising results for learning policies in simulated environments using rewards learned from", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "both simulated and real-world videos, we have yet to show policy learning on a real robot, which we look", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 711, + 226, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 226, + 723 + ], + "score": 1.0, + "content": "forward to trying post-COVID.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 596, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 197, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 198, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 198, + 87 + ], + "score": 1.0, + "content": "Acknowledgments", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 91, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 91, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 505, + 103 + ], + "score": 1.0, + "content": "We would like to thank Alex Nichol, Nick Hynes, Sean Kirmani, Brent Yi and Jimmy Wu for fruitful", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 114 + ], + "score": 1.0, + "content": "technical discussions, Sam Toyer for invaluable help with setting up the simulated benchmark, and Karl", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 111, + 317, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 317, + 125 + ], + "score": 1.0, + "content": "Schmeckpeper for discussions and help related to RLV.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 106, + 132, + 161, + 144 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 162, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 162, + 145 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 105, + 152, + 506, + 719 + ], + "lines": [ + { + "bbox": [ + 109, + 149, + 507, + 164 + ], + "spans": [ + { + "bbox": [ + 109, + 149, + 507, + 164 + ], + "score": 1.0, + "content": "[1] B. D. Argall, S. Chernova, M. Veloso, and B. Browning. A survey of robot learning from demonstration.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 123, + 159, + 320, + 172 + ], + "spans": [ + { + "bbox": [ + 123, + 159, + 320, + 172 + ], + "score": 1.0, + "content": "Robotics and autonomous systems, 57(5), 2009. 1, 2, 11", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 171, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 110, + 171, + 506, + 185 + ], + "score": 1.0, + "content": "[2] T. Zhang, Z. McCarthy, O. Jow, D. Lee, X. Chen, K. Goldberg, and P. Abbeel. Deep imitation learning for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 124, + 182, + 421, + 194 + ], + "spans": [ + { + "bbox": [ + 124, + 182, + 421, + 194 + ], + "score": 1.0, + "content": "complex manipulation tasks from virtual reality teleoperation. In ICRA. IEEE, 2018. 1", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 110, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "[3] P. Florence, L. Manuelli, and R. Tedrake. Self-supervised correspondence in visuomotor policy learning. IEEE", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 124, + 203, + 193, + 215 + ], + "spans": [ + { + "bbox": [ + 124, + 203, + 193, + 215 + ], + "score": 1.0, + "content": "RAL, 5(2), 2019. 1", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 109, + 214, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 109, + 214, + 506, + 228 + ], + "score": 1.0, + "content": "[4] P. Sermanet, K. Xu, and S. Levine. Unsupervised perceptual rewards for imitation learning. arXiv preprint", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 124, + 224, + 242, + 236 + ], + "spans": [ + { + "bbox": [ + 124, + 224, + 242, + 236 + ], + "score": 1.0, + "content": "arXiv:1612.06699, 2016. 1, 2, 11", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 110, + 235, + 507, + 249 + ], + "spans": [ + { + "bbox": [ + 110, + 235, + 507, + 249 + ], + "score": 1.0, + "content": "[5] P. Sermanet, C. Lynch, Y. Chebotar, J. Hsu, E. Jang, S. Schaal, and S. Levine. Time-contrastive networks:", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 124, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 124, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "Self-supervised learning from video. In 2018 IEEE International Conference on Robotics and Automation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 124, + 255, + 338, + 267 + ], + "spans": [ + { + "bbox": [ + 124, + 255, + 338, + 267 + ], + "score": 1.0, + "content": "(ICRA), pages 1134–1141. IEEE, 2018. 1, 2, 3, 5, 6, 8, 11, 16", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 110, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 110, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "[6] K. Schmeckpeper, O. Rybkin, K. Daniilidis, S. Levine, and C. Finn. Reinforcement learning with videos:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 123, + 275, + 399, + 289 + ], + "spans": [ + { + "bbox": [ + 123, + 275, + 399, + 289 + ], + "score": 1.0, + "content": "Combining offline observations with interaction, 2020. 1, 2, 3, 4, 6, 7, 8, 11, 20", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 110, + 287, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 110, + 287, + 506, + 301 + ], + "score": 1.0, + "content": "[7] D. Dwibedi, Y. Aytar, J. Tompson, P. Sermanet, and A. Zisserman. Temporal cycle-consistency learning. In", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 124, + 298, + 477, + 310 + ], + "spans": [ + { + "bbox": [ + 124, + 298, + 477, + 310 + ], + "score": 1.0, + "content": "The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. 2, 3, 4, 12, 16", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 109, + 308, + 419, + 321 + ], + "spans": [ + { + "bbox": [ + 109, + 308, + 419, + 321 + ], + "score": 1.0, + "content": "[8] C. Atkeson and S. Schaal. Robot learning from demonstration. In ICML, 1997. 2, 11", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 109, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 109, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "[9] T. Osa, J. Pajarinen, G. Neumann, J. Bagnell, P. Abbeel, and J. Peters. An algorithmic perspective on imitation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 123, + 329, + 318, + 343 + ], + "spans": [ + { + "bbox": [ + 123, + 329, + 318, + 343 + ], + "score": 1.0, + "content": "learning. Found. Trends Robotics, 7:1–179, 2018. 2, 11", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 341, + 453, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 453, + 355 + ], + "score": 1.0, + "content": "[10] F. Torabi, G. Warnell, and P. Stone. Behavioral cloning from observation. In IJCAI, 2018. 2, 11", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "[11] A. D. Edwards, H. Sahni, Y. Schroecker, and C. L. Isbell. Imitating latent policies from observation. arXiv", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 123, + 363, + 263, + 375 + ], + "spans": [ + { + "bbox": [ + 123, + 363, + 263, + 375 + ], + "score": 1.0, + "content": "preprint arXiv:1805.07914, 2018. 2, 11", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 375, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 506, + 388 + ], + "score": 1.0, + "content": "[12] I. Radosavovic, X. Wang, L. Pinto, and J. Malik. State-only imitation learning for dexterous manipulation. arXiv", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 123, + 384, + 263, + 397 + ], + "spans": [ + { + "bbox": [ + 123, + 384, + 263, + 397 + ], + "score": 1.0, + "content": "preprint arXiv:2004.04650, 2020. 2, 11", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 395, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 506, + 410 + ], + "score": 1.0, + "content": "[13] D. Pathak, P. Mahmoudieh, G. Luo, P. Agrawal, D. Chen, Y. Shentu, E. Shelhamer, J. Malik, A. A. Efros, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 124, + 404, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 124, + 404, + 506, + 419 + ], + "score": 1.0, + "content": "T. Darrell. Zero-shot visual imitation. In Proceedings of the IEEE conference on computer vision and pattern", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 123, + 415, + 313, + 428 + ], + "spans": [ + { + "bbox": [ + 123, + 415, + 313, + 428 + ], + "score": 1.0, + "content": "recognition workshops, pages 2050–2053, 2018. 2, 11", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 424, + 507, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 507, + 442 + ], + "score": 1.0, + "content": "[14] Y. Aytar, T. Pfaff, D. Budden, T. Paine, Z. Wang, and N. de Freitas. Playing hard exploration games by watching", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 123, + 436, + 471, + 449 + ], + "spans": [ + { + "bbox": [ + 123, + 436, + 471, + 449 + ], + "score": 1.0, + "content": "youtube. In Advances in Neural Information Processing Systems, pages 2930–2941, 2018. 2, 3, 5, 11", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 449, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 461 + ], + "score": 1.0, + "content": "[15] O. Mees, M. Merklinger, G. Kalweit, and W. Burgard. Adversarial skill networks: Unsupervised robot skill", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 123, + 457, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 123, + 457, + 506, + 472 + ], + "score": 1.0, + "content": "learning from video. In 2020 IEEE International Conference on Robotics and Automation (ICRA), pages", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 124, + 468, + 233, + 479 + ], + "spans": [ + { + "bbox": [ + 124, + 468, + 233, + 479 + ], + "score": 1.0, + "content": "4188–4194. IEEE, 2020. 2, 11", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "[16] A. Gupta, C. Devin, Y. Liu, P. Abbeel, and S. Levine. Learning invariant feature spaces to transfer skills with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 123, + 488, + 289, + 501 + ], + "spans": [ + { + "bbox": [ + 123, + 488, + 289, + 501 + ], + "score": 1.0, + "content": "reinforcement learning, 2017. 3, 5, 6, 8, 11, 16", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "[17] A. Singh, L. Yang, K. Hartikainen, C. Finn, and S. Levine. End-to-end robotic reinforcement learning without", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 123, + 510, + 356, + 523 + ], + "spans": [ + { + "bbox": [ + 123, + 510, + 356, + 523 + ], + "score": 1.0, + "content": "reward engineering. arXiv preprint arXiv:1904.07854, 2019. 3, 11", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "score": 1.0, + "content": "[18] L. Smith, N. Dhawan, M. Zhang, P. Abbeel, and S. Levine. Avid: Learning multi-stage tasks via pixel-level", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 124, + 532, + 384, + 543 + ], + "spans": [ + { + "bbox": [ + 124, + 532, + 384, + 543 + ], + "score": 1.0, + "content": "translation of human videos. arXiv preprint arXiv:1912.04443, 2019. 3, 11", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "[19] Y. Liu, A. Gupta, P. Abbeel, and S. Levine. Imitation from observation: Learning to imitate behaviors from", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 124, + 553, + 338, + 565 + ], + "spans": [ + { + "bbox": [ + 124, + 553, + 338, + 565 + ], + "score": 1.0, + "content": "raw video via context translation. In ICRA. IEEE, 2018. 3, 11", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 564, + 507, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 507, + 577 + ], + "score": 1.0, + "content": "[20] P. Sharma, D. Pathak, and A. Gupta. Third-person visual imitation learning via decoupled hierarchical controller.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 124, + 574, + 423, + 586 + ], + "spans": [ + { + "bbox": [ + 124, + 574, + 423, + 586 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems, pages 2597–2607, 2019. 3, 11", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 585, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 506, + 599 + ], + "score": 1.0, + "content": "[21] D. Hejna, L. Pinto, and P. Abbeel. Hierarchically decoupled imitation for morphological transfer. In International", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 124, + 595, + 378, + 609 + ], + "spans": [ + { + "bbox": [ + 124, + 595, + 378, + 609 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pages 4159–4171. PMLR, 2020. 3, 11", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 605, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 506, + 621 + ], + "score": 1.0, + "content": "[22] J.-Y. Zhu, T. Park, P. Isola, and A. A. Efros. Unpaired image-to-image translation using cycle-consistent", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 123, + 615, + 276, + 630 + ], + "spans": [ + { + "bbox": [ + 123, + 615, + 276, + 630 + ], + "score": 1.0, + "content": "adversarial networks. In ICCV, 2017. 3, 11", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 626, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 642 + ], + "score": 1.0, + "content": "[23] P. Henderson, R. Islam, P. Bachman, J. Pineau, D. Precup, and D. Meger. Deep reinforcement learning that", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 123, + 637, + 450, + 650 + ], + "spans": [ + { + "bbox": [ + 123, + 637, + 450, + 650 + ], + "score": 1.0, + "content": "matters. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 32, 2018. 5", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "score": 1.0, + "content": "[24] S. Toyer, R. Shah, A. Critch, and S. Russell. The magical benchmark for robust imitation. arXiv preprint", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 124, + 659, + 234, + 671 + ], + "spans": [ + { + "bbox": [ + 124, + 659, + 234, + 671 + ], + "score": 1.0, + "content": "arXiv:2011.00401, 2020. 5, 12", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "[25] V. Blomqvist. Pymunk: A easy-to-use pythonic rigid body 2d physics library (version 6.0.0), 2007. URL", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 123, + 679, + 237, + 695 + ], + "spans": [ + { + "bbox": [ + 123, + 679, + 237, + 695 + ], + "score": 1.0, + "content": "https://www.pymunk.org. 5", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "[26] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. Riedmiller, A. K.", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 124, + 702, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 124, + 702, + 506, + 713 + ], + "score": 1.0, + "content": "Fidjeland, G. Ostrovski, et al. Human-level control through deep reinforcement learning. nature, 518(7540):", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 125, + 709, + 191, + 722 + ], + "spans": [ + { + "bbox": [ + 125, + 709, + 191, + 722 + ], + "score": 1.0, + "content": "529–533, 2015. 6", + "type": "text" + } + ], + "index": 58 + } + ], + "index": 31.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 197, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 198, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 198, + 87 + ], + "score": 1.0, + "content": "Acknowledgments", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 91, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 91, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 505, + 103 + ], + "score": 1.0, + "content": "We would like to thank Alex Nichol, Nick Hynes, Sean Kirmani, Brent Yi and Jimmy Wu for fruitful", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 114 + ], + "score": 1.0, + "content": "technical discussions, Sam Toyer for invaluable help with setting up the simulated benchmark, and Karl", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 111, + 317, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 317, + 125 + ], + "score": 1.0, + "content": "Schmeckpeper for discussions and help related to RLV.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 91, + 505, + 125 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 132, + 161, + 144 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 162, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 162, + 145 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "list", + "bbox": [ + 105, + 152, + 506, + 719 + ], + "lines": [ + { + "bbox": [ + 109, + 149, + 507, + 164 + ], + "spans": [ + { + "bbox": [ + 109, + 149, + 507, + 164 + ], + "score": 1.0, + "content": "[1] B. D. Argall, S. Chernova, M. Veloso, and B. Browning. A survey of robot learning from demonstration.", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 159, + 320, + 172 + ], + "spans": [ + { + "bbox": [ + 123, + 159, + 320, + 172 + ], + "score": 1.0, + "content": "Robotics and autonomous systems, 57(5), 2009. 1, 2, 11", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 171, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 110, + 171, + 506, + 185 + ], + "score": 1.0, + "content": "[2] T. Zhang, Z. McCarthy, O. Jow, D. Lee, X. Chen, K. Goldberg, and P. Abbeel. Deep imitation learning for", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 182, + 421, + 194 + ], + "spans": [ + { + "bbox": [ + 124, + 182, + 421, + 194 + ], + "score": 1.0, + "content": "complex manipulation tasks from virtual reality teleoperation. In ICRA. IEEE, 2018. 1", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 110, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "[3] P. Florence, L. Manuelli, and R. Tedrake. Self-supervised correspondence in visuomotor policy learning. IEEE", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 203, + 193, + 215 + ], + "spans": [ + { + "bbox": [ + 124, + 203, + 193, + 215 + ], + "score": 1.0, + "content": "RAL, 5(2), 2019. 1", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 214, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 109, + 214, + 506, + 228 + ], + "score": 1.0, + "content": "[4] P. Sermanet, K. Xu, and S. Levine. Unsupervised perceptual rewards for imitation learning. arXiv preprint", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 224, + 242, + 236 + ], + "spans": [ + { + "bbox": [ + 124, + 224, + 242, + 236 + ], + "score": 1.0, + "content": "arXiv:1612.06699, 2016. 1, 2, 11", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 235, + 507, + 249 + ], + "spans": [ + { + "bbox": [ + 110, + 235, + 507, + 249 + ], + "score": 1.0, + "content": "[5] P. Sermanet, C. Lynch, Y. Chebotar, J. Hsu, E. Jang, S. Schaal, and S. Levine. Time-contrastive networks:", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 124, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "Self-supervised learning from video. In 2018 IEEE International Conference on Robotics and Automation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 124, + 255, + 338, + 267 + ], + "spans": [ + { + "bbox": [ + 124, + 255, + 338, + 267 + ], + "score": 1.0, + "content": "(ICRA), pages 1134–1141. IEEE, 2018. 1, 2, 3, 5, 6, 8, 11, 16", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 110, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "[6] K. Schmeckpeper, O. Rybkin, K. Daniilidis, S. Levine, and C. Finn. Reinforcement learning with videos:", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 275, + 399, + 289 + ], + "spans": [ + { + "bbox": [ + 123, + 275, + 399, + 289 + ], + "score": 1.0, + "content": "Combining offline observations with interaction, 2020. 1, 2, 3, 4, 6, 7, 8, 11, 20", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 287, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 110, + 287, + 506, + 301 + ], + "score": 1.0, + "content": "[7] D. Dwibedi, Y. Aytar, J. Tompson, P. Sermanet, and A. Zisserman. Temporal cycle-consistency learning. In", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 298, + 477, + 310 + ], + "spans": [ + { + "bbox": [ + 124, + 298, + 477, + 310 + ], + "score": 1.0, + "content": "The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. 2, 3, 4, 12, 16", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 308, + 419, + 321 + ], + "spans": [ + { + "bbox": [ + 109, + 308, + 419, + 321 + ], + "score": 1.0, + "content": "[8] C. Atkeson and S. Schaal. Robot learning from demonstration. In ICML, 1997. 2, 11", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 109, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "[9] T. Osa, J. Pajarinen, G. Neumann, J. Bagnell, P. Abbeel, and J. Peters. An algorithmic perspective on imitation", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 329, + 318, + 343 + ], + "spans": [ + { + "bbox": [ + 123, + 329, + 318, + 343 + ], + "score": 1.0, + "content": "learning. Found. Trends Robotics, 7:1–179, 2018. 2, 11", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 341, + 453, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 453, + 355 + ], + "score": 1.0, + "content": "[10] F. Torabi, G. Warnell, and P. Stone. Behavioral cloning from observation. In IJCAI, 2018. 2, 11", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "[11] A. D. Edwards, H. Sahni, Y. Schroecker, and C. L. Isbell. Imitating latent policies from observation. arXiv", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 363, + 263, + 375 + ], + "spans": [ + { + "bbox": [ + 123, + 363, + 263, + 375 + ], + "score": 1.0, + "content": "preprint arXiv:1805.07914, 2018. 2, 11", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 375, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 506, + 388 + ], + "score": 1.0, + "content": "[12] I. Radosavovic, X. Wang, L. Pinto, and J. Malik. State-only imitation learning for dexterous manipulation. arXiv", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 384, + 263, + 397 + ], + "spans": [ + { + "bbox": [ + 123, + 384, + 263, + 397 + ], + "score": 1.0, + "content": "preprint arXiv:2004.04650, 2020. 2, 11", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 395, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 104, + 395, + 506, + 410 + ], + "score": 1.0, + "content": "[13] D. Pathak, P. Mahmoudieh, G. Luo, P. Agrawal, D. Chen, Y. Shentu, E. Shelhamer, J. Malik, A. A. Efros, and", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 404, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 124, + 404, + 506, + 419 + ], + "score": 1.0, + "content": "T. Darrell. Zero-shot visual imitation. In Proceedings of the IEEE conference on computer vision and pattern", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 123, + 415, + 313, + 428 + ], + "spans": [ + { + "bbox": [ + 123, + 415, + 313, + 428 + ], + "score": 1.0, + "content": "recognition workshops, pages 2050–2053, 2018. 2, 11", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 424, + 507, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 507, + 442 + ], + "score": 1.0, + "content": "[14] Y. Aytar, T. Pfaff, D. Budden, T. Paine, Z. Wang, and N. de Freitas. Playing hard exploration games by watching", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 436, + 471, + 449 + ], + "spans": [ + { + "bbox": [ + 123, + 436, + 471, + 449 + ], + "score": 1.0, + "content": "youtube. In Advances in Neural Information Processing Systems, pages 2930–2941, 2018. 2, 3, 5, 11", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 449, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 461 + ], + "score": 1.0, + "content": "[15] O. Mees, M. Merklinger, G. Kalweit, and W. Burgard. Adversarial skill networks: Unsupervised robot skill", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 457, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 123, + 457, + 506, + 472 + ], + "score": 1.0, + "content": "learning from video. In 2020 IEEE International Conference on Robotics and Automation (ICRA), pages", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 124, + 468, + 233, + 479 + ], + "spans": [ + { + "bbox": [ + 124, + 468, + 233, + 479 + ], + "score": 1.0, + "content": "4188–4194. IEEE, 2020. 2, 11", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "[16] A. Gupta, C. Devin, Y. Liu, P. Abbeel, and S. Levine. Learning invariant feature spaces to transfer skills with", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 488, + 289, + 501 + ], + "spans": [ + { + "bbox": [ + 123, + 488, + 289, + 501 + ], + "score": 1.0, + "content": "reinforcement learning, 2017. 3, 5, 6, 8, 11, 16", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "[17] A. Singh, L. Yang, K. Hartikainen, C. Finn, and S. Levine. End-to-end robotic reinforcement learning without", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 510, + 356, + 523 + ], + "spans": [ + { + "bbox": [ + 123, + 510, + 356, + 523 + ], + "score": 1.0, + "content": "reward engineering. arXiv preprint arXiv:1904.07854, 2019. 3, 11", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 535 + ], + "score": 1.0, + "content": "[18] L. Smith, N. Dhawan, M. Zhang, P. Abbeel, and S. Levine. Avid: Learning multi-stage tasks via pixel-level", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 532, + 384, + 543 + ], + "spans": [ + { + "bbox": [ + 124, + 532, + 384, + 543 + ], + "score": 1.0, + "content": "translation of human videos. arXiv preprint arXiv:1912.04443, 2019. 3, 11", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "[19] Y. Liu, A. Gupta, P. Abbeel, and S. Levine. Imitation from observation: Learning to imitate behaviors from", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 553, + 338, + 565 + ], + "spans": [ + { + "bbox": [ + 124, + 553, + 338, + 565 + ], + "score": 1.0, + "content": "raw video via context translation. In ICRA. IEEE, 2018. 3, 11", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 564, + 507, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 507, + 577 + ], + "score": 1.0, + "content": "[20] P. Sharma, D. Pathak, and A. Gupta. Third-person visual imitation learning via decoupled hierarchical controller.", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 574, + 423, + 586 + ], + "spans": [ + { + "bbox": [ + 124, + 574, + 423, + 586 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems, pages 2597–2607, 2019. 3, 11", + "type": "text" + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 585, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 506, + 599 + ], + "score": 1.0, + "content": "[21] D. Hejna, L. Pinto, and P. Abbeel. Hierarchically decoupled imitation for morphological transfer. In International", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 595, + 378, + 609 + ], + "spans": [ + { + "bbox": [ + 124, + 595, + 378, + 609 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pages 4159–4171. PMLR, 2020. 3, 11", + "type": "text" + } + ], + "index": 47, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 605, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 506, + 621 + ], + "score": 1.0, + "content": "[22] J.-Y. Zhu, T. Park, P. Isola, and A. A. Efros. Unpaired image-to-image translation using cycle-consistent", + "type": "text" + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 615, + 276, + 630 + ], + "spans": [ + { + "bbox": [ + 123, + 615, + 276, + 630 + ], + "score": 1.0, + "content": "adversarial networks. In ICCV, 2017. 3, 11", + "type": "text" + } + ], + "index": 49, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 626, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 642 + ], + "score": 1.0, + "content": "[23] P. Henderson, R. Islam, P. Bachman, J. Pineau, D. Precup, and D. Meger. Deep reinforcement learning that", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 637, + 450, + 650 + ], + "spans": [ + { + "bbox": [ + 123, + 637, + 450, + 650 + ], + "score": 1.0, + "content": "matters. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 32, 2018. 5", + "type": "text" + } + ], + "index": 51, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "score": 1.0, + "content": "[24] S. Toyer, R. Shah, A. Critch, and S. Russell. The magical benchmark for robust imitation. arXiv preprint", + "type": "text" + } + ], + "index": 52, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 659, + 234, + 671 + ], + "spans": [ + { + "bbox": [ + 124, + 659, + 234, + 671 + ], + "score": 1.0, + "content": "arXiv:2011.00401, 2020. 5, 12", + "type": "text" + } + ], + "index": 53, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "[25] V. Blomqvist. Pymunk: A easy-to-use pythonic rigid body 2d physics library (version 6.0.0), 2007. URL", + "type": "text" + } + ], + "index": 54, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 679, + 237, + 695 + ], + "spans": [ + { + "bbox": [ + 123, + 679, + 237, + 695 + ], + "score": 1.0, + "content": "https://www.pymunk.org. 5", + "type": "text" + } + ], + "index": 55, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "[26] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. Riedmiller, A. K.", + "type": "text" + } + ], + "index": 56, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 702, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 124, + 702, + 506, + 713 + ], + "score": 1.0, + "content": "Fidjeland, G. Ostrovski, et al. Human-level control through deep reinforcement learning. nature, 518(7540):", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 125, + 709, + 191, + 722 + ], + "spans": [ + { + "bbox": [ + 125, + 709, + 191, + 722 + ], + "score": 1.0, + "content": "529–533, 2015. 6", + "type": "text" + } + ], + "index": 58, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 86 + ], + "score": 1.0, + "content": "[27] M. Vecerik, O. Sushkov, D. Barker, T. Rothorl, T. Hester, and J. Scholz. A practical approach to insertion with ¨", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 124, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "variable socket position using deep reinforcement learning. In 2019 International Conference on Robotics and", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 123, + 92, + 329, + 104 + ], + "spans": [ + { + "bbox": [ + 123, + 92, + 329, + 104 + ], + "score": 1.0, + "content": "Automation (ICRA), pages 754–760. IEEE, 2019. 6, 15, 16", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "score": 1.0, + "content": "[28] K. He, X. Zhang, S. Ren, and J. Sun. Deep residual learning for image recognition. 2016 IEEE Conference", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 112, + 398, + 126 + ], + "spans": [ + { + "bbox": [ + 123, + 112, + 398, + 126 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition (CVPR), pages 770–778, 2016. 6", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 123, + 491, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 491, + 137 + ], + "score": 1.0, + "content": "[29] D. P. Kingma and J. Ba. Adam: A method for stochastic optimization. arXiv preprint:1412.6980, 2014. 6", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 133, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 104, + 133, + 506, + 149 + ], + "score": 1.0, + "content": "[30] T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 144, + 454, + 157 + ], + "spans": [ + { + "bbox": [ + 123, + 144, + 454, + 157 + ], + "score": 1.0, + "content": "reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290, 2018. 6, 7, 17", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "[31] T. Haarnoja, A. Zhou, K. Hartikainen, G. Tucker, S. Ha, J. Tan, V. Kumar, H. Zhu, A. Gupta, P. Abbeel, and", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 164, + 465, + 178 + ], + "spans": [ + { + "bbox": [ + 123, + 164, + 465, + 178 + ], + "score": 1.0, + "content": "S. Levine. Soft actor-critic algorithms and applications. arXiv preprint arXiv:1812.05905, 2018. 6", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "[32] C. Yang, X. Ma, W. Huang, F. Sun, H. Liu, J. Huang, and C. Gan. Imitation learning from observations by", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 186, + 394, + 197 + ], + "spans": [ + { + "bbox": [ + 124, + 186, + 394, + 197 + ], + "score": 1.0, + "content": "minimizing inverse dynamics disagreement. ArXiv, abs/1910.04417, 2019. 11", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 196, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 209 + ], + "score": 1.0, + "content": "[33] L. Shao, T. Migimatsu, Q. Zhang, K. Yang, and J. Bohg. Concept2robot: Learning manipulation concepts from", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 206, + 406, + 217 + ], + "spans": [ + { + "bbox": [ + 124, + 206, + 406, + 217 + ], + "score": 1.0, + "content": "instructions and human demonstrations. Robotics: Science and Systems, 2020. 11", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "[34] G. Berseth and C. Pal. Visual imitation learning with recurrent siamese networks. ArXiv, abs/1901.07186, 2019. 11", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 226, + 507, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 507, + 242 + ], + "score": 1.0, + "content": "[35] B. D. Ziebart, A. L. Maas, J. A. Bagnell, and A. K. Dey. Maximum entropy inverse reinforcement learning.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 237, + 356, + 251 + ], + "spans": [ + { + "bbox": [ + 123, + 237, + 356, + 251 + ], + "score": 1.0, + "content": "In Aaai, volume 8, pages 1433–1438. Chicago, IL, USA, 2008. 11", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 246, + 507, + 263 + ], + "spans": [ + { + "bbox": [ + 104, + 246, + 507, + 263 + ], + "score": 1.0, + "content": "[36] B. D. Ziebart, J. A. Bagnell, and A. K. Dey. Modeling interaction via the principle of maximum causal entropy.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 258, + 193, + 268 + ], + "spans": [ + { + "bbox": [ + 124, + 258, + 193, + 268 + ], + "score": 1.0, + "content": "In ICML, 2010. 11", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 268, + 507, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 507, + 282 + ], + "score": 1.0, + "content": "[37] I. J. Goodfellow, J. Pouget-Abadie, M. Mirza, B. Xu, D. Warde-Farley, S. Ozair, A. Courville, and Y. Bengio.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 279, + 386, + 290 + ], + "spans": [ + { + "bbox": [ + 125, + 279, + 386, + 290 + ], + "score": 1.0, + "content": "Generative adversarial networks. arXiv preprint arXiv:1406.2661, 2014. 11", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 288, + 417, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 417, + 303 + ], + "score": 1.0, + "content": "[38] J. Ho and S. Ermon. Generative adversarial imitation learning. In NeurIPS, 2016. 11", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 298, + 507, + 315 + ], + "spans": [ + { + "bbox": [ + 104, + 298, + 507, + 315 + ], + "score": 1.0, + "content": "[39] F. Torabi, G. Warnell, and P. Stone. Generative adversarial imitation from observation. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 311, + 225, + 321 + ], + "spans": [ + { + "bbox": [ + 124, + 311, + 225, + 321 + ], + "score": 1.0, + "content": "arXiv:1807.06158, 2018. 11", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 321, + 479, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 479, + 334 + ], + "score": 1.0, + "content": "[40] B. C. Stadie, P. Abbeel, and I. Sutskever. Third-person imitation learning. arXiv:1703.01703, 2017. 11", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 330, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 345 + ], + "score": 1.0, + "content": "[41] Y. Lu and J. Tompson. Adail: Adaptive adversarial imitation learning. NeurIPS Workshop on Learning", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 342, + 228, + 354 + ], + "spans": [ + { + "bbox": [ + 124, + 342, + 228, + 354 + ], + "score": 1.0, + "content": "Transferable Skills,, 2019. 11", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 351, + 508, + 366 + ], + "spans": [ + { + "bbox": [ + 104, + 351, + 508, + 366 + ], + "score": 1.0, + "content": "[42] F. Liu, Z. Ling, T. Mu, and H. Su. State alignment-based imitation learning. arXiv preprint arXiv:1911.10947,", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 361, + 160, + 374 + ], + "spans": [ + { + "bbox": [ + 123, + 361, + 160, + 374 + ], + "score": 1.0, + "content": "2019. 11", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 371, + 507, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 507, + 386 + ], + "score": 1.0, + "content": "[43] W. Sun, A. Vemula, B. Boots, and J. Bagnell. Provably efficient imitation learning from observation alone.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 383, + 241, + 394 + ], + "spans": [ + { + "bbox": [ + 124, + 383, + 241, + 394 + ], + "score": 1.0, + "content": "ArXiv, abs/1905.10948, 2019. 11", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 393, + 474, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 474, + 406 + ], + "score": 1.0, + "content": "[44] K. Kim, Y. Gu, J. Song, S. Zhao, and S. Ermon. Domain adaptive imitation learning. arXiv, 2020. 11", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 404, + 507, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 507, + 418 + ], + "score": 1.0, + "content": "[45] A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. Lin, N. Gimelshein, L. Antiga,", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 414, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 124, + 414, + 506, + 426 + ], + "score": 1.0, + "content": "A. Desmaison, A. Kopf, E. Yang, Z. DeVito, M. Raison, A. Tejani, S. Chilamkurthy, B. Steiner, L. Fang, J. Bai,", + "type": "text", + "cross_page": true + } + ], + "index": 33 + }, + { + "bbox": [ + 124, + 424, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 124, + 424, + 506, + 436 + ], + "score": 1.0, + "content": "and S. Chintala. Pytorch: An imperative style, high-performance deep learning library. In Advances in Neural", + "type": "text", + "cross_page": true + } + ], + "index": 34 + }, + { + "bbox": [ + 124, + 433, + 367, + 445 + ], + "spans": [ + { + "bbox": [ + 124, + 433, + 367, + 445 + ], + "score": 1.0, + "content": "Information Processing Systems 32. Curran Associates, Inc., 2019. 14", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "[46] A. Buslaev, A. Parinov, E. Khvedchenya, V. Iglovikov, and A. A. Kalinin. Albumentations: fast and flexible", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 454, + 290, + 465 + ], + "spans": [ + { + "bbox": [ + 123, + 454, + 290, + 465 + ], + "score": 1.0, + "content": "image augmentations. arXiv e-prints, 2018. 16", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 463, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 505, + 478 + ], + "score": 1.0, + "content": "[47] D. Yarats and I. Kostrikov. Soft actor-critic (sac) implementation in pytorch. https://github.com/", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 474, + 267, + 488 + ], + "spans": [ + { + "bbox": [ + 124, + 474, + 267, + 488 + ], + "score": 1.0, + "content": "denisyarats/pytorch_sac, 2020. 17", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 484, + 507, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 507, + 499 + ], + "score": 1.0, + "content": "[48] H. van Hasselt, A. Guez, and D. Silver. Deep reinforcement learning with double q-learning. arXiv e-prints,", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 494, + 160, + 507 + ], + "spans": [ + { + "bbox": [ + 123, + 494, + 160, + 507 + ], + "score": 1.0, + "content": "2015. 17", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 506, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 518 + ], + "score": 1.0, + "content": "[49] S. Fujimoto, H. van Hoof, and D. Meger. Addressing function approximation error in actor-critic methods.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 515, + 507, + 528 + ], + "spans": [ + { + "bbox": [ + 124, + 515, + 507, + 528 + ], + "score": 1.0, + "content": "In Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsmassan,", + "type": "text", + "cross_page": true + } + ], + "index": 43 + }, + { + "bbox": [ + 124, + 524, + 290, + 537 + ], + "spans": [ + { + "bbox": [ + 124, + 524, + 290, + 537 + ], + "score": 1.0, + "content": "Stockholm, Sweden, July 10-15, 2018, 2018. 17", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "score": 1.0, + "content": "[50] A. M. Saxe, J. L. McClelland, and S. Ganguli. Exact solutions to the nonlinear dynamics of learning in deep", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 545, + 292, + 558 + ], + "spans": [ + { + "bbox": [ + 124, + 545, + 292, + 558 + ], + "score": 1.0, + "content": "linear neural networks. arXiv e-prints, 2013. 17", + "type": "text", + "cross_page": true + } + ], + "index": 46, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "[51] T. Chen, S. Kornblith, M. Norouzi, and G. Hinton. A simple framework for contrastive learning of visual", + "type": "text", + "cross_page": true + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 566, + 347, + 578 + ], + "spans": [ + { + "bbox": [ + 124, + 566, + 347, + 578 + ], + "score": 1.0, + "content": "representations. arXiv preprint arXiv:2002.05709, 2020. 17, 18", + "type": "text", + "cross_page": true + } + ], + "index": 48, + "is_list_end_line": true + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 149, + 507, + 722 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 506, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 86 + ], + "score": 1.0, + "content": "[27] M. Vecerik, O. Sushkov, D. Barker, T. Rothorl, T. Hester, and J. Scholz. A practical approach to insertion with ¨", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 124, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 124, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "variable socket position using deep reinforcement learning. In 2019 International Conference on Robotics and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 123, + 92, + 329, + 104 + ], + "spans": [ + { + "bbox": [ + 123, + 92, + 329, + 104 + ], + "score": 1.0, + "content": "Automation (ICRA), pages 754–760. IEEE, 2019. 6, 15, 16", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "score": 1.0, + "content": "[28] K. He, X. Zhang, S. Ren, and J. Sun. Deep residual learning for image recognition. 2016 IEEE Conference", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 123, + 112, + 398, + 126 + ], + "spans": [ + { + "bbox": [ + 123, + 112, + 398, + 126 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition (CVPR), pages 770–778, 2016. 6", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 123, + 491, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 491, + 137 + ], + "score": 1.0, + "content": "[29] D. P. Kingma and J. Ba. Adam: A method for stochastic optimization. arXiv preprint:1412.6980, 2014. 6", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 133, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 104, + 133, + 506, + 149 + ], + "score": 1.0, + "content": "[30] T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 123, + 144, + 454, + 157 + ], + "spans": [ + { + "bbox": [ + 123, + 144, + 454, + 157 + ], + "score": 1.0, + "content": "reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290, 2018. 6, 7, 17", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "[31] T. Haarnoja, A. Zhou, K. Hartikainen, G. Tucker, S. Ha, J. Tan, V. Kumar, H. Zhu, A. Gupta, P. Abbeel, and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 123, + 164, + 465, + 178 + ], + "spans": [ + { + "bbox": [ + 123, + 164, + 465, + 178 + ], + "score": 1.0, + "content": "S. Levine. Soft actor-critic algorithms and applications. arXiv preprint arXiv:1812.05905, 2018. 6", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "[32] C. Yang, X. Ma, W. Huang, F. Sun, H. Liu, J. Huang, and C. Gan. Imitation learning from observations by", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 124, + 186, + 394, + 197 + ], + "spans": [ + { + "bbox": [ + 124, + 186, + 394, + 197 + ], + "score": 1.0, + "content": "minimizing inverse dynamics disagreement. ArXiv, abs/1910.04417, 2019. 11", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 196, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 209 + ], + "score": 1.0, + "content": "[33] L. Shao, T. Migimatsu, Q. Zhang, K. Yang, and J. Bohg. Concept2robot: Learning manipulation concepts from", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 124, + 206, + 406, + 217 + ], + "spans": [ + { + "bbox": [ + 124, + 206, + 406, + 217 + ], + "score": 1.0, + "content": "instructions and human demonstrations. Robotics: Science and Systems, 2020. 11", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "[34] G. Berseth and C. Pal. Visual imitation learning with recurrent siamese networks. ArXiv, abs/1901.07186, 2019. 11", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 226, + 507, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 507, + 242 + ], + "score": 1.0, + "content": "[35] B. D. Ziebart, A. L. Maas, J. A. Bagnell, and A. K. Dey. Maximum entropy inverse reinforcement learning.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 123, + 237, + 356, + 251 + ], + "spans": [ + { + "bbox": [ + 123, + 237, + 356, + 251 + ], + "score": 1.0, + "content": "In Aaai, volume 8, pages 1433–1438. Chicago, IL, USA, 2008. 11", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 246, + 507, + 263 + ], + "spans": [ + { + "bbox": [ + 104, + 246, + 507, + 263 + ], + "score": 1.0, + "content": "[36] B. D. Ziebart, J. A. Bagnell, and A. K. Dey. Modeling interaction via the principle of maximum causal entropy.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 124, + 258, + 193, + 268 + ], + "spans": [ + { + "bbox": [ + 124, + 258, + 193, + 268 + ], + "score": 1.0, + "content": "In ICML, 2010. 11", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 268, + 507, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 507, + 282 + ], + "score": 1.0, + "content": "[37] I. J. Goodfellow, J. Pouget-Abadie, M. Mirza, B. Xu, D. Warde-Farley, S. Ozair, A. Courville, and Y. Bengio.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 125, + 279, + 386, + 290 + ], + "spans": [ + { + "bbox": [ + 125, + 279, + 386, + 290 + ], + "score": 1.0, + "content": "Generative adversarial networks. arXiv preprint arXiv:1406.2661, 2014. 11", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 288, + 417, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 417, + 303 + ], + "score": 1.0, + "content": "[38] J. Ho and S. Ermon. Generative adversarial imitation learning. In NeurIPS, 2016. 11", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 298, + 507, + 315 + ], + "spans": [ + { + "bbox": [ + 104, + 298, + 507, + 315 + ], + "score": 1.0, + "content": "[39] F. Torabi, G. Warnell, and P. Stone. Generative adversarial imitation from observation. arXiv preprint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 124, + 311, + 225, + 321 + ], + "spans": [ + { + "bbox": [ + 124, + 311, + 225, + 321 + ], + "score": 1.0, + "content": "arXiv:1807.06158, 2018. 11", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 321, + 479, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 479, + 334 + ], + "score": 1.0, + "content": "[40] B. C. Stadie, P. Abbeel, and I. Sutskever. Third-person imitation learning. arXiv:1703.01703, 2017. 11", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 330, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 345 + ], + "score": 1.0, + "content": "[41] Y. Lu and J. Tompson. Adail: Adaptive adversarial imitation learning. NeurIPS Workshop on Learning", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 124, + 342, + 228, + 354 + ], + "spans": [ + { + "bbox": [ + 124, + 342, + 228, + 354 + ], + "score": 1.0, + "content": "Transferable Skills,, 2019. 11", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 351, + 508, + 366 + ], + "spans": [ + { + "bbox": [ + 104, + 351, + 508, + 366 + ], + "score": 1.0, + "content": "[42] F. Liu, Z. Ling, T. Mu, and H. Su. State alignment-based imitation learning. arXiv preprint arXiv:1911.10947,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 123, + 361, + 160, + 374 + ], + "spans": [ + { + "bbox": [ + 123, + 361, + 160, + 374 + ], + "score": 1.0, + "content": "2019. 11", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 371, + 507, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 507, + 386 + ], + "score": 1.0, + "content": "[43] W. Sun, A. Vemula, B. Boots, and J. Bagnell. Provably efficient imitation learning from observation alone.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 124, + 383, + 241, + 394 + ], + "spans": [ + { + "bbox": [ + 124, + 383, + 241, + 394 + ], + "score": 1.0, + "content": "ArXiv, abs/1905.10948, 2019. 11", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 393, + 474, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 474, + 406 + ], + "score": 1.0, + "content": "[44] K. Kim, Y. Gu, J. Song, S. Zhao, and S. Ermon. Domain adaptive imitation learning. arXiv, 2020. 11", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 404, + 507, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 507, + 418 + ], + "score": 1.0, + "content": "[45] A. Paszke, S. Gross, F. Massa, A. Lerer, J. Bradbury, G. Chanan, T. Killeen, Z. Lin, N. Gimelshein, L. Antiga,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 124, + 414, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 124, + 414, + 506, + 426 + ], + "score": 1.0, + "content": "A. Desmaison, A. Kopf, E. Yang, Z. DeVito, M. Raison, A. Tejani, S. Chilamkurthy, B. Steiner, L. Fang, J. Bai,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 124, + 424, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 124, + 424, + 506, + 436 + ], + "score": 1.0, + "content": "and S. Chintala. Pytorch: An imperative style, high-performance deep learning library. In Advances in Neural", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 124, + 433, + 367, + 445 + ], + "spans": [ + { + "bbox": [ + 124, + 433, + 367, + 445 + ], + "score": 1.0, + "content": "Information Processing Systems 32. Curran Associates, Inc., 2019. 14", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "[46] A. Buslaev, A. Parinov, E. Khvedchenya, V. Iglovikov, and A. A. Kalinin. Albumentations: fast and flexible", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 123, + 454, + 290, + 465 + ], + "spans": [ + { + "bbox": [ + 123, + 454, + 290, + 465 + ], + "score": 1.0, + "content": "image augmentations. arXiv e-prints, 2018. 16", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 463, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 505, + 478 + ], + "score": 1.0, + "content": "[47] D. Yarats and I. Kostrikov. Soft actor-critic (sac) implementation in pytorch. https://github.com/", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 124, + 474, + 267, + 488 + ], + "spans": [ + { + "bbox": [ + 124, + 474, + 267, + 488 + ], + "score": 1.0, + "content": "denisyarats/pytorch_sac, 2020. 17", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 484, + 507, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 507, + 499 + ], + "score": 1.0, + "content": "[48] H. van Hasselt, A. Guez, and D. Silver. Deep reinforcement learning with double q-learning. arXiv e-prints,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 123, + 494, + 160, + 507 + ], + "spans": [ + { + "bbox": [ + 123, + 494, + 160, + 507 + ], + "score": 1.0, + "content": "2015. 17", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 506, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 518 + ], + "score": 1.0, + "content": "[49] S. Fujimoto, H. van Hoof, and D. Meger. Addressing function approximation error in actor-critic methods.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 124, + 515, + 507, + 528 + ], + "spans": [ + { + "bbox": [ + 124, + 515, + 507, + 528 + ], + "score": 1.0, + "content": "In Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsmassan,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 124, + 524, + 290, + 537 + ], + "spans": [ + { + "bbox": [ + 124, + 524, + 290, + 537 + ], + "score": 1.0, + "content": "Stockholm, Sweden, July 10-15, 2018, 2018. 17", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 549 + ], + "score": 1.0, + "content": "[50] A. M. Saxe, J. L. McClelland, and S. Ganguli. Exact solutions to the nonlinear dynamics of learning in deep", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 124, + 545, + 292, + 558 + ], + "spans": [ + { + "bbox": [ + 124, + 545, + 292, + 558 + ], + "score": 1.0, + "content": "linear neural networks. arXiv e-prints, 2013. 17", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "[51] T. Chen, S. Kornblith, M. Norouzi, and G. Hinton. A simple framework for contrastive learning of visual", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 124, + 566, + 347, + 578 + ], + "spans": [ + { + "bbox": [ + 124, + 566, + 347, + 578 + ], + "score": 1.0, + "content": "representations. arXiv preprint arXiv:2002.05709, 2020. 17, 18", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 24 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 72, + 506, + 579 + ], + "lines": [], + "index": 24, + "bbox_fs": [ + 104, + 73, + 508, + 578 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_model.json b/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_model.json new file mode 100644 index 0000000000000000000000000000000000000000..28433bec26b91022dfaba6f3ba185831f5eef0b3 --- /dev/null +++ b/parse/train/RO4DM85Z4P7/RO4DM85Z4P7_model.json @@ -0,0 +1,17220 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 605, + 1303, + 605, + 1303, + 1160, + 398, + 1160 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1312, + 1403, + 1312, + 1403, + 1576, + 298, + 1576 + ], + "score": 0.98 + }, + { + "category_id": 0, + "poly": [ + 347, + 224, + 1358, + 224, + 1358, + 333, + 347, + 333 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 480, + 398, + 1222, + 398, + 1222, + 494, + 480, + 494 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 1589, + 1404, + 1589, + 1404, + 1911, + 298, + 1911 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 334, + 1945, + 670, + 1945, + 670, + 1972, + 334, + 1972 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 298, + 2031, + 902, + 2031, + 902, + 2059, + 298, + 2059 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 299, + 1256, + 520, + 1256, + 520, + 1293, + 299, + 1293 + ], + "score": 0.902 + }, + { + "category_id": 1, + "poly": [ + 399, + 1190, + 1299, + 1190, + 1299, + 1221, + 399, + 1221 + ], + "score": 0.891 + }, + { + "category_id": 13, + "poly": [ + 727, + 433, + 798, + 433, + 798, + 462, + 727, + 462 + ], + "score": 0.52, + "latex": "\\mathbf { B o h g } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 731, + 401, + 801, + 401, + 801, + 432, + 731, + 432 + ], + "score": 0.4, + "latex": "\\mathbf { Z e n g } ^ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 219.0, + 928.0, + 219.0, + 928.0, + 279.0, + 777.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 271.0, + 1365.0, + 271.0, + 1365.0, + 342.0, + 337.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1940.0, + 670.0, + 1940.0, + 670.0, + 1976.0, + 330.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2027.0, + 902.0, + 2027.0, + 902.0, + 2064.0, + 295.0, + 2064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1254.0, + 525.0, + 1254.0, + 525.0, + 1299.0, + 292.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 602.0, + 1305.0, + 602.0, + 1305.0, + 640.0, + 393.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 633.0, + 1306.0, + 633.0, + 1306.0, + 668.0, + 393.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 660.0, + 1307.0, + 660.0, + 1307.0, + 697.0, + 393.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 693.0, + 1304.0, + 693.0, + 1304.0, + 725.0, + 394.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 724.0, + 1305.0, + 724.0, + 1305.0, + 753.0, + 396.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 750.0, + 1307.0, + 750.0, + 1307.0, + 783.0, + 393.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 781.0, + 1307.0, + 781.0, + 1307.0, + 813.0, + 395.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 809.0, + 1305.0, + 809.0, + 1305.0, + 843.0, + 394.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 837.0, + 1304.0, + 837.0, + 1304.0, + 871.0, + 394.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 865.0, + 1308.0, + 865.0, + 1308.0, + 902.0, + 392.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 897.0, + 1307.0, + 897.0, + 1307.0, + 929.0, + 394.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 925.0, + 1305.0, + 925.0, + 1305.0, + 957.0, + 392.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 953.0, + 1306.0, + 953.0, + 1306.0, + 991.0, + 392.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 984.0, + 1305.0, + 984.0, + 1305.0, + 1016.0, + 395.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1012.0, + 1305.0, + 1012.0, + 1305.0, + 1044.0, + 393.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1042.0, + 1305.0, + 1042.0, + 1305.0, + 1077.0, + 394.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1072.0, + 1307.0, + 1072.0, + 1307.0, + 1104.0, + 395.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1099.0, + 1305.0, + 1099.0, + 1305.0, + 1132.0, + 393.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1128.0, + 1299.0, + 1128.0, + 1299.0, + 1162.0, + 394.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1347.0, + 294.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1343.0, + 1404.0, + 1343.0, + 1404.0, + 1374.0, + 296.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1369.0, + 1405.0, + 1369.0, + 1405.0, + 1406.0, + 293.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 1405.0, + 1398.0, + 1405.0, + 1434.0, + 294.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1428.0, + 1405.0, + 1428.0, + 1405.0, + 1466.0, + 292.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1459.0, + 1404.0, + 1459.0, + 1404.0, + 1495.0, + 294.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1488.0, + 1405.0, + 1488.0, + 1405.0, + 1524.0, + 294.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1515.0, + 1407.0, + 1515.0, + 1407.0, + 1554.0, + 293.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1546.0, + 621.0, + 1546.0, + 621.0, + 1578.0, + 293.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 399.0, + 730.0, + 399.0, + 730.0, + 438.0, + 477.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 399.0, + 1227.0, + 399.0, + 1227.0, + 438.0, + 802.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 433.0, + 726.0, + 433.0, + 726.0, + 464.0, + 608.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 433.0, + 1087.0, + 433.0, + 1087.0, + 464.0, + 799.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 455.0, + 1155.0, + 455.0, + 1155.0, + 501.0, + 545.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1586.0, + 1406.0, + 1586.0, + 1406.0, + 1625.0, + 293.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1615.0, + 1405.0, + 1615.0, + 1405.0, + 1654.0, + 293.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1647.0, + 1408.0, + 1647.0, + 1408.0, + 1684.0, + 294.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1673.0, + 1406.0, + 1673.0, + 1406.0, + 1713.0, + 293.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1705.0, + 1405.0, + 1705.0, + 1405.0, + 1742.0, + 294.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1734.0, + 1407.0, + 1734.0, + 1407.0, + 1772.0, + 293.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1766.0, + 1405.0, + 1766.0, + 1405.0, + 1799.0, + 296.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1795.0, + 1405.0, + 1795.0, + 1405.0, + 1828.0, + 296.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1823.0, + 1406.0, + 1823.0, + 1406.0, + 1857.0, + 293.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 1404.0, + 1853.0, + 1404.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1882.0, + 1213.0, + 1882.0, + 1213.0, + 1915.0, + 296.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1183.0, + 1305.0, + 1183.0, + 1305.0, + 1232.0, + 392.0, + 1232.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1065, + 1404, + 1065, + 1404, + 1389, + 298, + 1389 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 760, + 1405, + 760, + 1405, + 1052, + 298, + 1052 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1468, + 1403, + 1468, + 1403, + 1589, + 298, + 1589 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1602, + 1403, + 1602, + 1403, + 1781, + 299, + 1781 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 302, + 203, + 1399, + 203, + 1399, + 662, + 302, + 662 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1793, + 1402, + 1793, + 1402, + 1910, + 299, + 1910 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 298, + 682, + 1401, + 682, + 1401, + 749, + 298, + 749 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 331, + 1947, + 957, + 1947, + 957, + 2007, + 331, + 2007 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 298, + 1412, + 538, + 1412, + 538, + 1449, + 298, + 1449 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2085, + 841, + 2085 + ], + "score": 0.764 + }, + { + "category_id": 15, + "poly": [ + 326.0, + 217.0, + 470.0, + 217.0, + 470.0, + 237.0, + 326.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 214.0, + 675.0, + 214.0, + 675.0, + 238.0, + 525.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 214.0, + 877.0, + 214.0, + 877.0, + 238.0, + 727.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 249.0, + 365.0, + 249.0, + 365.0, + 269.0, + 323.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 238.0, + 407.0, + 238.0, + 407.0, + 267.0, + 383.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 234.0, + 469.0, + 234.0, + 469.0, + 260.0, + 408.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 233.0, + 496.0, + 233.0, + 496.0, + 250.0, + 471.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 239.0, + 545.0, + 239.0, + 545.0, + 253.0, + 528.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 258.0, + 571.0, + 258.0, + 571.0, + 274.0, + 555.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 255.0, + 634.0, + 255.0, + 634.0, + 273.0, + 617.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 234.0, + 692.0, + 234.0, + 692.0, + 255.0, + 640.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 247.0, + 718.0, + 247.0, + 718.0, + 257.0, + 710.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 257.0, + 771.0, + 257.0, + 771.0, + 272.0, + 753.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 234.0, + 898.0, + 234.0, + 898.0, + 257.0, + 781.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 249.0, + 937.0, + 249.0, + 937.0, + 320.0, + 908.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 341.0, + 730.0, + 341.0, + 730.0, + 370.0, + 465.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 375.0, + 456.0, + 375.0, + 456.0, + 408.0, + 417.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 388.0, + 546.0, + 388.0, + 546.0, + 405.0, + 521.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 386.0, + 670.0, + 386.0, + 670.0, + 406.0, + 649.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 379.0, + 1221.0, + 379.0, + 1221.0, + 406.0, + 1102.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 404.0, + 541.0, + 404.0, + 541.0, + 424.0, + 520.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 404.0, + 1384.0, + 404.0, + 1384.0, + 420.0, + 1322.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 434.0, + 452.0, + 434.0, + 452.0, + 451.0, + 417.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 417.0, + 514.0, + 417.0, + 514.0, + 483.0, + 489.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 418.0, + 540.0, + 418.0, + 540.0, + 455.0, + 520.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 419.0, + 672.0, + 419.0, + 672.0, + 472.0, + 646.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 419.0, + 702.0, + 419.0, + 702.0, + 481.0, + 681.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 430.0, + 1173.0, + 430.0, + 1173.0, + 457.0, + 1036.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 413.0, + 1296.0, + 413.0, + 1296.0, + 479.0, + 1274.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 450.0, + 540.0, + 450.0, + 540.0, + 466.0, + 523.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 462.0, + 540.0, + 462.0, + 540.0, + 484.0, + 520.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 464.0, + 668.0, + 464.0, + 668.0, + 482.0, + 645.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 465.0, + 1107.0, + 465.0, + 1107.0, + 475.0, + 1097.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 480.0, + 540.0, + 480.0, + 540.0, + 501.0, + 520.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 480.0, + 668.0, + 480.0, + 668.0, + 501.0, + 650.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 474.0, + 1013.0, + 474.0, + 1013.0, + 502.0, + 939.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 474.0, + 1140.0, + 474.0, + 1140.0, + 502.0, + 1065.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 474.0, + 1259.0, + 474.0, + 1259.0, + 502.0, + 1188.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 480.0, + 1377.0, + 480.0, + 1377.0, + 506.0, + 1336.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 500.0, + 543.0, + 500.0, + 543.0, + 514.0, + 524.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 500.0, + 666.0, + 500.0, + 666.0, + 515.0, + 646.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 501.0, + 1107.0, + 501.0, + 1107.0, + 512.0, + 1097.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 501.0, + 1231.0, + 501.0, + 1231.0, + 514.0, + 1220.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 515.0, + 1092.0, + 515.0, + 1092.0, + 529.0, + 1066.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 512.0, + 1221.0, + 512.0, + 1221.0, + 530.0, + 1187.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 531.0, + 965.0, + 531.0, + 965.0, + 550.0, + 940.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 535.0, + 1001.0, + 535.0, + 1001.0, + 546.0, + 989.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 527.0, + 1130.0, + 527.0, + 1130.0, + 551.0, + 1079.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 564.0, + 786.0, + 564.0, + 786.0, + 583.0, + 404.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 564.0, + 984.0, + 564.0, + 984.0, + 581.0, + 968.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 597.0, + 773.0, + 597.0, + 773.0, + 625.0, + 420.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 595.0, + 1392.0, + 595.0, + 1392.0, + 630.0, + 929.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 618.0, + 727.0, + 618.0, + 727.0, + 646.0, + 469.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 618.0, + 1385.0, + 618.0, + 1385.0, + 651.0, + 933.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 642.0, + 1281.0, + 642.0, + 1281.0, + 666.0, + 1040.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.75, + 245.5, + 733.75, + 245.5, + 733.75, + 257.0, + 726.75, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.75, + 406.0, + 669.75, + 406.0, + 669.75, + 421.0, + 646.75, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.25, + 512.0, + 1270.25, + 512.0, + 1270.25, + 537.0, + 1230.25, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 683.0, + 1405.0, + 683.0, + 1405.0, + 708.0, + 296.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 1405.0, + 702.0, + 1405.0, + 730.0, + 293.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 722.0, + 952.0, + 722.0, + 952.0, + 753.0, + 293.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1943.0, + 924.0, + 1943.0, + 924.0, + 1979.0, + 330.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1973.0, + 958.0, + 1973.0, + 958.0, + 2011.0, + 331.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1409.0, + 542.0, + 1409.0, + 542.0, + 1454.0, + 290.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2094.0, + 839.0, + 2094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1061.0, + 1405.0, + 1061.0, + 1405.0, + 1103.0, + 293.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1093.0, + 1405.0, + 1093.0, + 1405.0, + 1129.0, + 293.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1122.0, + 1406.0, + 1122.0, + 1406.0, + 1158.0, + 292.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1154.0, + 1408.0, + 1154.0, + 1408.0, + 1187.0, + 293.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1181.0, + 1406.0, + 1181.0, + 1406.0, + 1215.0, + 293.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1245.0, + 294.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1240.0, + 1406.0, + 1240.0, + 1406.0, + 1274.0, + 294.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1269.0, + 1405.0, + 1269.0, + 1405.0, + 1303.0, + 294.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1299.0, + 1405.0, + 1299.0, + 1405.0, + 1331.0, + 293.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1327.0, + 1405.0, + 1327.0, + 1405.0, + 1362.0, + 293.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 1351.0, + 1357.0, + 1351.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 759.0, + 1403.0, + 759.0, + 1403.0, + 793.0, + 293.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 788.0, + 1406.0, + 788.0, + 1406.0, + 823.0, + 295.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 818.0, + 1403.0, + 818.0, + 1403.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 845.0, + 1405.0, + 845.0, + 1405.0, + 882.0, + 293.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 875.0, + 1406.0, + 875.0, + 1406.0, + 910.0, + 295.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 905.0, + 1407.0, + 905.0, + 1407.0, + 939.0, + 295.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 934.0, + 1405.0, + 934.0, + 1405.0, + 968.0, + 295.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 964.0, + 1408.0, + 964.0, + 1408.0, + 995.0, + 293.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 993.0, + 1405.0, + 993.0, + 1405.0, + 1024.0, + 295.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1024.0, + 1407.0, + 1024.0, + 1407.0, + 1054.0, + 296.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1465.0, + 1405.0, + 1465.0, + 1405.0, + 1502.0, + 292.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1496.0, + 1405.0, + 1496.0, + 1405.0, + 1531.0, + 294.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1526.0, + 1404.0, + 1526.0, + 1404.0, + 1561.0, + 294.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 894.0, + 1560.0, + 894.0, + 1589.0, + 293.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1602.0, + 1407.0, + 1602.0, + 1407.0, + 1637.0, + 295.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1630.0, + 1405.0, + 1630.0, + 1405.0, + 1665.0, + 294.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1660.0, + 1407.0, + 1660.0, + 1407.0, + 1695.0, + 292.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1690.0, + 1405.0, + 1690.0, + 1405.0, + 1725.0, + 294.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1721.0, + 1404.0, + 1721.0, + 1404.0, + 1753.0, + 295.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1750.0, + 1408.0, + 1750.0, + 1408.0, + 1782.0, + 294.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1407.0, + 1789.0, + 1407.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1818.0, + 1407.0, + 1818.0, + 1407.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1850.0, + 1404.0, + 1850.0, + 1404.0, + 1884.0, + 295.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1915.0, + 293.0, + 1915.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 202, + 1405, + 202, + 1405, + 669, + 298, + 669 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 683, + 1403, + 683, + 1403, + 977, + 298, + 977 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 989, + 1404, + 989, + 1404, + 1225, + 298, + 1225 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1482, + 1404, + 1482, + 1404, + 1718, + 297, + 1718 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1730, + 1402, + 1730, + 1402, + 1914, + 299, + 1914 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 299, + 1437, + 605, + 1437, + 605, + 1469, + 299, + 1469 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 298, + 1247, + 485, + 1247, + 485, + 1285, + 298, + 1285 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 298, + 1303, + 1403, + 1303, + 1403, + 1421, + 298, + 1421 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.659 + }, + { + "category_id": 2, + "poly": [ + 842, + 2061, + 859, + 2061, + 859, + 2084, + 842, + 2084 + ], + "score": 0.301 + }, + { + "category_id": 13, + "poly": [ + 1068, + 1730, + 1219, + 1730, + 1219, + 1764, + 1068, + 1764 + ], + "score": 0.92, + "latex": "\\textstyle D = \\bigcup _ { i = 1 } ^ { n } D _ { i }" + }, + { + "category_id": 13, + "poly": [ + 729, + 1792, + 943, + 1792, + 943, + 1829, + 729, + 1829 + ], + "score": 0.92, + "latex": "{ { D } _ { i } } = \\{ v _ { i } ^ { 1 } , v _ { i } ^ { 2 } . . . v _ { i } ^ { K } \\}" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1790, + 1057, + 1790, + 1057, + 1829, + 1029, + 1829 + ], + "score": 0.89, + "latex": "v _ { i } ^ { j }" + }, + { + "category_id": 13, + "poly": [ + 1363, + 1792, + 1400, + 1792, + 1400, + 1827, + 1363, + 1827 + ], + "score": 0.89, + "latex": "j ^ { t h }" + }, + { + "category_id": 13, + "poly": [ + 1306, + 1733, + 1340, + 1733, + 1340, + 1762, + 1306, + 1762 + ], + "score": 0.88, + "latex": "D _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1796, + 332, + 1796, + 332, + 1826, + 298, + 1826 + ], + "score": 0.87, + "latex": "D _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1826, + 1346, + 1826, + 1346, + 1852, + 1319, + 1852 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1733, + 1032, + 1733, + 1032, + 1759, + 1008, + 1759 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 932, + 1829, + 953, + 1829, + 953, + 1852, + 932, + 1852 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1765, + 1164, + 1765, + 1164, + 1788, + 1141, + 1788 + ], + "score": 0.79, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 946, + 1763, + 959, + 1763, + 959, + 1788, + 946, + 1788 + ], + "score": 0.76, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 555, + 1827, + 569, + 1827, + 569, + 1852, + 555, + 1852 + ], + "score": 0.66, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1435.0, + 607.0, + 1435.0, + 607.0, + 1472.0, + 295.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1241.0, + 488.0, + 1241.0, + 488.0, + 1293.0, + 288.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 203.0, + 1405.0, + 203.0, + 1405.0, + 238.0, + 295.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 232.0, + 1406.0, + 232.0, + 1406.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 290.0, + 1407.0, + 290.0, + 1407.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 353.0, + 292.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 348.0, + 1408.0, + 348.0, + 1408.0, + 384.0, + 295.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 376.0, + 1407.0, + 376.0, + 1407.0, + 413.0, + 293.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 406.0, + 1406.0, + 406.0, + 1406.0, + 442.0, + 295.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 436.0, + 1407.0, + 436.0, + 1407.0, + 470.0, + 293.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 465.0, + 1405.0, + 465.0, + 1405.0, + 499.0, + 293.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 495.0, + 1402.0, + 495.0, + 1402.0, + 527.0, + 296.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 524.0, + 1403.0, + 524.0, + 1403.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 551.0, + 1406.0, + 551.0, + 1406.0, + 587.0, + 293.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 581.0, + 1405.0, + 581.0, + 1405.0, + 616.0, + 295.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 609.0, + 1403.0, + 609.0, + 1403.0, + 644.0, + 295.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 642.0, + 1172.0, + 642.0, + 1172.0, + 673.0, + 296.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 1404.0, + 680.0, + 1404.0, + 718.0, + 293.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 712.0, + 1404.0, + 712.0, + 1404.0, + 746.0, + 294.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 740.0, + 1404.0, + 740.0, + 1404.0, + 777.0, + 293.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 773.0, + 1404.0, + 773.0, + 1404.0, + 804.0, + 296.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 799.0, + 1405.0, + 799.0, + 1405.0, + 834.0, + 293.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 831.0, + 1404.0, + 831.0, + 1404.0, + 862.0, + 297.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 857.0, + 1407.0, + 857.0, + 1407.0, + 893.0, + 292.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 888.0, + 1405.0, + 888.0, + 1405.0, + 922.0, + 294.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 919.0, + 1404.0, + 919.0, + 1404.0, + 949.0, + 296.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 946.0, + 1408.0, + 946.0, + 1408.0, + 980.0, + 293.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 990.0, + 1364.0, + 990.0, + 1364.0, + 1023.0, + 297.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 994.0, + 1400.0, + 994.0, + 1400.0, + 1019.0, + 1366.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1018.0, + 1406.0, + 1018.0, + 1406.0, + 1054.0, + 293.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1048.0, + 1404.0, + 1048.0, + 1404.0, + 1085.0, + 294.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1075.0, + 1406.0, + 1075.0, + 1406.0, + 1114.0, + 292.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1106.0, + 1405.0, + 1106.0, + 1405.0, + 1142.0, + 294.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1133.0, + 1405.0, + 1133.0, + 1405.0, + 1170.0, + 294.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1163.0, + 1409.0, + 1163.0, + 1409.0, + 1200.0, + 294.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1194.0, + 1238.0, + 1194.0, + 1238.0, + 1230.0, + 294.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 1407.0, + 1481.0, + 1407.0, + 1519.0, + 294.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1509.0, + 1406.0, + 1509.0, + 1406.0, + 1548.0, + 294.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1542.0, + 1406.0, + 1542.0, + 1406.0, + 1575.0, + 295.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 1406.0, + 1567.0, + 1406.0, + 1608.0, + 294.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1596.0, + 1405.0, + 1596.0, + 1405.0, + 1638.0, + 292.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1630.0, + 1404.0, + 1630.0, + 1404.0, + 1663.0, + 295.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1655.0, + 1405.0, + 1655.0, + 1405.0, + 1695.0, + 292.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1688.0, + 1005.0, + 1688.0, + 1005.0, + 1721.0, + 296.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 1007.0, + 1728.0, + 1007.0, + 1767.0, + 294.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1728.0, + 1067.0, + 1728.0, + 1067.0, + 1767.0, + 1033.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1728.0, + 1305.0, + 1728.0, + 1305.0, + 1767.0, + 1220.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1728.0, + 1407.0, + 1728.0, + 1407.0, + 1767.0, + 1341.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1760.0, + 945.0, + 1760.0, + 945.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1760.0, + 1140.0, + 1760.0, + 1140.0, + 1795.0, + 960.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1760.0, + 1407.0, + 1760.0, + 1407.0, + 1795.0, + 1165.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1789.0, + 297.0, + 1789.0, + 297.0, + 1833.0, + 292.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1789.0, + 728.0, + 1789.0, + 728.0, + 1833.0, + 333.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 1789.0, + 1028.0, + 1789.0, + 1028.0, + 1833.0, + 944.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1789.0, + 1362.0, + 1789.0, + 1362.0, + 1833.0, + 1058.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1789.0, + 1408.0, + 1789.0, + 1408.0, + 1833.0, + 1401.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 554.0, + 1822.0, + 554.0, + 1861.0, + 294.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1822.0, + 931.0, + 1822.0, + 931.0, + 1861.0, + 570.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1822.0, + 1318.0, + 1822.0, + 1318.0, + 1861.0, + 954.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1822.0, + 1407.0, + 1822.0, + 1407.0, + 1861.0, + 1347.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1883.0, + 1401.0, + 1883.0, + 1401.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1302.0, + 1404.0, + 1302.0, + 1404.0, + 1336.0, + 296.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1331.0, + 1404.0, + 1331.0, + 1404.0, + 1365.0, + 296.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1359.0, + 1407.0, + 1359.0, + 1407.0, + 1396.0, + 293.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1391.0, + 1215.0, + 1391.0, + 1215.0, + 1425.0, + 296.0, + 1425.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 917, + 1405, + 917, + 1405, + 1213, + 297, + 1213 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1223, + 1405, + 1223, + 1405, + 1475, + 297, + 1475 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 640, + 1405, + 640, + 1405, + 906, + 297, + 906 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1826, + 1405, + 1826, + 1405, + 2015, + 297, + 2015 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 346, + 192, + 1356, + 192, + 1356, + 535, + 346, + 535 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 713, + 1706, + 984, + 1706, + 984, + 1810, + 713, + 1810 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 572, + 1495, + 1123, + 1495, + 1123, + 1591, + 572, + 1591 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 295, + 1616, + 1406, + 1616, + 1406, + 1690, + 295, + 1690 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 297, + 595, + 645, + 595, + 645, + 627, + 297, + 627 + ], + "score": 0.916 + }, + { + "category_id": 4, + "poly": [ + 336, + 550, + 1353, + 550, + 1353, + 575, + 336, + 575 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.783 + }, + { + "category_id": 13, + "poly": [ + 592, + 1974, + 730, + 1974, + 730, + 2014, + 592, + 2014 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { L = \\sum _ { i j t } L _ { i j } ^ { t } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 714, + 1705, + 985, + 1705, + 985, + 1808, + 714, + 1808 + ], + "score": 0.94, + "latex": "\\beta _ { i j t } ^ { k } = \\frac { e ^ { - \\| \\widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \\| ^ { 2 } } } { \\sum _ { k } ^ { L _ { i } } e ^ { - \\| \\widetilde { V _ { i j } ^ { t } } - V _ { i } ^ { k } \\| ^ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1936, + 463, + 1936, + 463, + 1978, + 298, + 1978 + ], + "score": 0.93, + "latex": "L _ { i j } ^ { t } = ( \\mu _ { i j } ^ { t } - t ) ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 572, + 1494, + 1126, + 1494, + 1126, + 1591, + 572, + 1591 + ], + "score": 0.93, + "latex": "\\widetilde { V _ { i j } ^ { t } } = \\sum _ { k } ^ { L _ { j } } \\alpha _ { k } V _ { j } ^ { k } , \\quad \\mathrm { w h e r e } \\quad \\alpha _ { k } = \\frac { e ^ { - \\| V _ { i } ^ { t } - V _ { j } ^ { k } \\| ^ { 2 } } } { \\sum _ { k } ^ { L _ { j } } e ^ { - \\| V _ { i } ^ { t } - V _ { j } ^ { k } \\| ^ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 858, + 1826, + 1036, + 1826, + 1036, + 1869, + 858, + 1869 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mu _ { i j } ^ { t } = \\sum _ { k } ^ { L _ { i } } \\beta _ { i j t } ^ { k } k } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 517, + 1224, + 732, + 1224, + 732, + 1257, + 517, + 1257 + ], + "score": 0.92, + "latex": "D _ { \\mathrm { a l l } } = \\{ v _ { 1 } , v _ { 2 } . . . v _ { N } \\}" + }, + { + "category_id": 13, + "poly": [ + 1217, + 919, + 1269, + 919, + 1269, + 952, + 1217, + 952 + ], + "score": 0.91, + "latex": "\\phi ( I )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1343, + 609, + 1343, + 609, + 1380, + 297, + 1380 + ], + "score": 0.91, + "latex": "V _ { i } { = } \\{ \\phi ( v _ { i } ^ { 1 } ) , \\phi ( v _ { i } ^ { 2 } ) { \\ldots } , \\phi ( v _ { i } ^ { L _ { i } } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1614, + 1309, + 1614, + 1309, + 1658, + 1275, + 1658 + ], + "score": 0.9, + "latex": "\\widetilde { V _ { i j } ^ { t } }" + }, + { + "category_id": 13, + "poly": [ + 840, + 1441, + 873, + 1441, + 873, + 1475, + 840, + 1475 + ], + "score": 0.9, + "latex": "V _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 975, + 1898, + 1010, + 1898, + 1010, + 1941, + 975, + 1941 + ], + "score": 0.9, + "latex": "\\widetilde { V _ { i j } ^ { t } }" + }, + { + "category_id": 13, + "poly": [ + 883, + 1656, + 921, + 1656, + 921, + 1685, + 883, + 1685 + ], + "score": 0.9, + "latex": "k ^ { t h }" + }, + { + "category_id": 13, + "poly": [ + 912, + 1345, + 945, + 1345, + 945, + 1374, + 912, + 1374 + ], + "score": 0.89, + "latex": "i ^ { t h }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1411, + 1300, + 1411, + 1300, + 1437, + 1268, + 1437 + ], + "score": 0.88, + "latex": "t ^ { t h }" + }, + { + "category_id": 13, + "poly": [ + 687, + 1347, + 717, + 1347, + 717, + 1377, + 687, + 1377 + ], + "score": 0.88, + "latex": "L _ { i }" + }, + { + "category_id": 13, + "poly": [ + 942, + 1377, + 971, + 1377, + 971, + 1409, + 942, + 1409 + ], + "score": 0.88, + "latex": "V _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1409, + 1036, + 1409, + 1036, + 1443, + 1003, + 1443 + ], + "score": 0.88, + "latex": "V _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1444, + 1034, + 1444, + 1034, + 1476, + 1005, + 1476 + ], + "score": 0.87, + "latex": "V _ { j }" + }, + { + "category_id": 13, + "poly": [ + 877, + 1946, + 897, + 1946, + 897, + 1966, + 877, + 1966 + ], + "score": 0.87, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 871, + 1377, + 897, + 1377, + 897, + 1406, + 871, + 1406 + ], + "score": 0.87, + "latex": "V _ { i }" + }, + { + "category_id": 13, + "poly": [ + 779, + 1621, + 806, + 1621, + 806, + 1650, + 779, + 1650 + ], + "score": 0.87, + "latex": "V _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1021, + 1658, + 1047, + 1658, + 1047, + 1688, + 1021, + 1688 + ], + "score": 0.86, + "latex": "V _ { i }" + }, + { + "category_id": 13, + "poly": [ + 441, + 1658, + 468, + 1658, + 468, + 1688, + 441, + 1688 + ], + "score": 0.85, + "latex": "V _ { i }" + }, + { + "category_id": 13, + "poly": [ + 441, + 1981, + 467, + 1981, + 467, + 2009, + 441, + 2009 + ], + "score": 0.84, + "latex": "v _ { j }" + }, + { + "category_id": 13, + "poly": [ + 934, + 1317, + 958, + 1317, + 958, + 1343, + 934, + 1343 + ], + "score": 0.84, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 739, + 1314, + 757, + 1314, + 757, + 1344, + 739, + 1344 + ], + "score": 0.83, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 586, + 920, + 606, + 920, + 606, + 950, + 586, + 950 + ], + "score": 0.83, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1944, + 1179, + 1944, + 1179, + 1970, + 1155, + 1970 + ], + "score": 0.82, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 361, + 1446, + 386, + 1446, + 386, + 1472, + 361, + 1472 + ], + "score": 0.76, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 719, + 1867, + 732, + 1867, + 732, + 1891, + 719, + 1891 + ], + "score": 0.75, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 297, + 1907, + 311, + 1907, + 311, + 1931, + 297, + 1931 + ], + "score": 0.74, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 297, + 1255, + 320, + 1255, + 320, + 1281, + 297, + 1281 + ], + "score": 0.68, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 843, + 920, + 862, + 920, + 862, + 946, + 843, + 946 + ], + "score": 0.61, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 907, + 1411, + 959, + 1411, + 959, + 1440, + 907, + 1440 + ], + "score": 0.4, + "latex": "V _ { i } -" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 195.0, + 486.0, + 195.0, + 486.0, + 218.0, + 408.0, + 218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 196.0, + 636.0, + 196.0, + 636.0, + 216.0, + 528.0, + 216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 195.0, + 837.0, + 195.0, + 837.0, + 218.0, + 758.0, + 218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 195.0, + 985.0, + 195.0, + 985.0, + 217.0, + 880.0, + 217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 195.0, + 1186.0, + 195.0, + 1186.0, + 218.0, + 1108.0, + 218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 195.0, + 1337.0, + 195.0, + 1337.0, + 217.0, + 1230.0, + 217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 212.0, + 383.0, + 212.0, + 383.0, + 230.0, + 357.0, + 230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 212.0, + 731.0, + 212.0, + 731.0, + 230.0, + 708.0, + 230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 240.0, + 380.0, + 240.0, + 380.0, + 257.0, + 357.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 240.0, + 732.0, + 240.0, + 732.0, + 257.0, + 708.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 238.0, + 1083.0, + 238.0, + 1083.0, + 259.0, + 1056.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 268.0, + 385.0, + 268.0, + 385.0, + 289.0, + 355.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 268.0, + 734.0, + 268.0, + 734.0, + 289.0, + 705.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 277.0, + 1085.0, + 277.0, + 1085.0, + 298.0, + 1056.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 300.0, + 380.0, + 300.0, + 380.0, + 313.0, + 357.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 298.0, + 732.0, + 298.0, + 732.0, + 315.0, + 703.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 327.0, + 382.0, + 327.0, + 382.0, + 343.0, + 354.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 327.0, + 732.0, + 327.0, + 732.0, + 344.0, + 703.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 316.0, + 1083.0, + 316.0, + 1083.0, + 337.0, + 1050.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 342.0, + 489.0, + 342.0, + 489.0, + 360.0, + 405.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 342.0, + 613.0, + 342.0, + 613.0, + 360.0, + 552.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 340.0, + 839.0, + 340.0, + 839.0, + 359.0, + 755.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 343.0, + 964.0, + 343.0, + 964.0, + 361.0, + 902.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 339.0, + 1190.0, + 339.0, + 1190.0, + 361.0, + 1105.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 340.0, + 1315.0, + 340.0, + 1315.0, + 364.0, + 1252.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 357.0, + 383.0, + 357.0, + 383.0, + 373.0, + 357.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 355.0, + 733.0, + 355.0, + 733.0, + 373.0, + 708.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 384.0, + 382.0, + 384.0, + 382.0, + 403.0, + 357.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 384.0, + 732.0, + 384.0, + 732.0, + 403.0, + 708.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 383.0, + 1083.0, + 383.0, + 1083.0, + 400.0, + 1057.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 413.0, + 383.0, + 413.0, + 383.0, + 430.0, + 357.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 413.0, + 732.0, + 413.0, + 732.0, + 430.0, + 708.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 422.0, + 1083.0, + 422.0, + 1083.0, + 440.0, + 1057.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 442.0, + 379.0, + 442.0, + 379.0, + 458.0, + 356.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 443.0, + 728.0, + 443.0, + 728.0, + 457.0, + 709.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 460.0, + 1083.0, + 460.0, + 1083.0, + 480.0, + 1050.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 471.0, + 383.0, + 471.0, + 383.0, + 487.0, + 356.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 471.0, + 732.0, + 471.0, + 732.0, + 487.0, + 708.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 487.0, + 395.0, + 487.0, + 395.0, + 497.0, + 386.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 485.0, + 454.0, + 485.0, + 454.0, + 500.0, + 441.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 483.0, + 534.0, + 483.0, + 534.0, + 500.0, + 500.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 485.0, + 590.0, + 485.0, + 590.0, + 500.0, + 577.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 485.0, + 805.0, + 485.0, + 805.0, + 500.0, + 790.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 482.0, + 887.0, + 482.0, + 887.0, + 502.0, + 848.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 485.0, + 941.0, + 485.0, + 941.0, + 500.0, + 926.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 487.0, + 997.0, + 487.0, + 997.0, + 497.0, + 987.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 480.0, + 1196.0, + 480.0, + 1196.0, + 504.0, + 1085.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 481.0, + 1330.0, + 481.0, + 1330.0, + 503.0, + 1220.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 512.0, + 590.0, + 512.0, + 590.0, + 538.0, + 409.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 513.0, + 941.0, + 513.0, + 941.0, + 535.0, + 758.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 512.0, + 1355.0, + 512.0, + 1355.0, + 537.0, + 1044.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 588.0, + 647.0, + 588.0, + 647.0, + 637.0, + 290.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 548.0, + 1356.0, + 548.0, + 1356.0, + 577.0, + 343.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 863.0, + 2058.0, + 863.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 917.0, + 585.0, + 917.0, + 585.0, + 955.0, + 294.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 917.0, + 842.0, + 917.0, + 842.0, + 955.0, + 607.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 917.0, + 1216.0, + 917.0, + 1216.0, + 955.0, + 863.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 917.0, + 1408.0, + 917.0, + 1408.0, + 955.0, + 1270.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 946.0, + 1407.0, + 946.0, + 1407.0, + 983.0, + 292.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 978.0, + 1405.0, + 978.0, + 1405.0, + 1009.0, + 296.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1006.0, + 1403.0, + 1006.0, + 1403.0, + 1040.0, + 295.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1033.0, + 1407.0, + 1033.0, + 1407.0, + 1069.0, + 294.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1060.0, + 1407.0, + 1060.0, + 1407.0, + 1103.0, + 292.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1093.0, + 1408.0, + 1093.0, + 1408.0, + 1128.0, + 295.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1122.0, + 1406.0, + 1122.0, + 1406.0, + 1157.0, + 294.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1153.0, + 1406.0, + 1153.0, + 1406.0, + 1188.0, + 295.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1179.0, + 1361.0, + 1179.0, + 1361.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1221.0, + 516.0, + 1221.0, + 516.0, + 1260.0, + 292.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1221.0, + 1407.0, + 1221.0, + 1407.0, + 1260.0, + 733.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1251.0, + 1406.0, + 1251.0, + 1406.0, + 1288.0, + 321.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1281.0, + 1405.0, + 1281.0, + 1405.0, + 1318.0, + 294.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 738.0, + 1311.0, + 738.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1311.0, + 933.0, + 1311.0, + 933.0, + 1348.0, + 758.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1311.0, + 1403.0, + 1311.0, + 1403.0, + 1348.0, + 959.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1340.0, + 296.0, + 1340.0, + 296.0, + 1382.0, + 292.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1340.0, + 686.0, + 1340.0, + 686.0, + 1382.0, + 610.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1340.0, + 911.0, + 1340.0, + 911.0, + 1382.0, + 718.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1340.0, + 1410.0, + 1340.0, + 1410.0, + 1382.0, + 946.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1376.0, + 870.0, + 1376.0, + 870.0, + 1410.0, + 295.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1376.0, + 941.0, + 1376.0, + 941.0, + 1410.0, + 898.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1376.0, + 1407.0, + 1376.0, + 1407.0, + 1410.0, + 972.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1409.0, + 906.0, + 1409.0, + 906.0, + 1445.0, + 291.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1409.0, + 1002.0, + 1409.0, + 1002.0, + 1445.0, + 960.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1409.0, + 1267.0, + 1409.0, + 1267.0, + 1445.0, + 1037.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1409.0, + 1408.0, + 1409.0, + 1408.0, + 1445.0, + 1301.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1442.0, + 360.0, + 1442.0, + 360.0, + 1476.0, + 295.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1442.0, + 839.0, + 1442.0, + 839.0, + 1476.0, + 387.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1442.0, + 1004.0, + 1442.0, + 1004.0, + 1476.0, + 874.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1442.0, + 1407.0, + 1442.0, + 1407.0, + 1476.0, + 1035.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1406.0, + 641.0, + 1406.0, + 676.0, + 294.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 670.0, + 1406.0, + 670.0, + 1406.0, + 706.0, + 294.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 699.0, + 1407.0, + 699.0, + 1407.0, + 734.0, + 294.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 727.0, + 1406.0, + 727.0, + 1406.0, + 765.0, + 292.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 758.0, + 1405.0, + 758.0, + 1405.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 1405.0, + 787.0, + 1405.0, + 823.0, + 295.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 816.0, + 1405.0, + 816.0, + 1405.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 843.0, + 1406.0, + 843.0, + 1406.0, + 884.0, + 292.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 872.0, + 1179.0, + 872.0, + 1179.0, + 910.0, + 294.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1816.0, + 857.0, + 1816.0, + 857.0, + 1881.0, + 286.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1816.0, + 1413.0, + 1816.0, + 1413.0, + 1881.0, + 1037.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1862.0, + 718.0, + 1862.0, + 718.0, + 1899.0, + 295.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1862.0, + 1405.0, + 1862.0, + 1405.0, + 1899.0, + 733.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1892.0, + 296.0, + 1892.0, + 296.0, + 1953.0, + 286.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1892.0, + 974.0, + 1892.0, + 974.0, + 1953.0, + 312.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1892.0, + 1416.0, + 1892.0, + 1416.0, + 1953.0, + 1011.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1935.0, + 297.0, + 1935.0, + 297.0, + 1976.0, + 292.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1935.0, + 876.0, + 1935.0, + 876.0, + 1976.0, + 464.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1935.0, + 1154.0, + 1935.0, + 1154.0, + 1976.0, + 898.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1935.0, + 1408.0, + 1935.0, + 1408.0, + 1976.0, + 1180.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1969.0, + 440.0, + 1969.0, + 440.0, + 2019.0, + 290.0, + 2019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1969.0, + 591.0, + 1969.0, + 591.0, + 2019.0, + 468.0, + 2019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1969.0, + 743.0, + 1969.0, + 743.0, + 2019.0, + 731.0, + 2019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1611.0, + 778.0, + 1611.0, + 778.0, + 1663.0, + 292.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1611.0, + 1274.0, + 1611.0, + 1274.0, + 1663.0, + 807.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1611.0, + 1408.0, + 1611.0, + 1408.0, + 1663.0, + 1310.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1654.0, + 440.0, + 1654.0, + 440.0, + 1692.0, + 295.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1654.0, + 882.0, + 1654.0, + 882.0, + 1692.0, + 469.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1654.0, + 1020.0, + 1654.0, + 1020.0, + 1692.0, + 922.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1654.0, + 1272.0, + 1654.0, + 1272.0, + 1692.0, + 1048.0, + 1692.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1076, + 1405, + 1076, + 1405, + 1399, + 297, + 1399 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1523, + 1404, + 1523, + 1404, + 1730, + 298, + 1730 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 568, + 1405, + 568, + 1405, + 1014, + 297, + 1014 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 580, + 265, + 1113, + 265, + 1113, + 468, + 580, + 468 + ], + "score": 0.981, + "html": "
EmbodimentMean ± Std.Dev. Demo Length (no. of frames)
Long-stick48.0 ±28.5
Medium-stick59.9 ±27.9
Short-stick81.7 ±35.0
Gripper110.8 ±39.8
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1741, + 1404, + 1741, + 1404, + 2007, + 298, + 2007 + ], + "score": 0.981 + }, + { + "category_id": 0, + "poly": [ + 298, + 521, + 559, + 521, + 559, + 553, + 298, + 553 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 299, + 1477, + 659, + 1477, + 659, + 1510, + 299, + 1510 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 299, + 1030, + 639, + 1030, + 639, + 1062, + 299, + 1062 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 299, + 1420, + 619, + 1420, + 619, + 1459, + 299, + 1459 + ], + "score": 0.903 + }, + { + "category_id": 6, + "poly": [ + 616, + 216, + 1086, + 216, + 1086, + 239, + 616, + 239 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2085, + 841, + 2085 + ], + "score": 0.72 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.093 + }, + { + "category_id": 13, + "poly": [ + 684, + 685, + 870, + 685, + 870, + 722, + 684, + 722 + ], + "score": 0.93, + "latex": "\\scriptstyle g = \\sum _ { i = 1 } ^ { N } \\phi ( v _ { i } ^ { L _ { i } } ) \\neq N" + }, + { + "category_id": 13, + "poly": [ + 570, + 750, + 621, + 750, + 621, + 783, + 570, + 783 + ], + "score": 0.92, + "latex": "\\phi ( s )" + }, + { + "category_id": 13, + "poly": [ + 297, + 749, + 486, + 749, + 486, + 784, + 297, + 784 + ], + "score": 0.92, + "latex": "- 1 / \\kappa \\cdot \\| \\phi ( s ) - g \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 402, + 1105, + 546, + 1105, + 546, + 1139, + 402, + 1139 + ], + "score": 0.91, + "latex": "\\langle \\bar { \\boldsymbol { S } } , \\boldsymbol { A } , \\boldsymbol { P } , \\boldsymbol { r } \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1326, + 719, + 1405, + 719, + 1405, + 752, + 1326, + 752 + ], + "score": 0.91, + "latex": "r ( s ) =" + }, + { + "category_id": 13, + "poly": [ + 498, + 690, + 542, + 690, + 542, + 720, + 498, + 720 + ], + "score": 0.89, + "latex": "D _ { \\mathrm { a l l } }" + }, + { + "category_id": 13, + "poly": [ + 953, + 690, + 983, + 690, + 983, + 720, + 953, + 720 + ], + "score": 0.88, + "latex": "L _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 628, + 317, + 628, + 317, + 657, + 298, + 657 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 491, + 569, + 511, + 569, + 511, + 599, + 491, + 599 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 699, + 1078, + 718, + 1078, + 718, + 1108, + 699, + 1108 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1218, + 695, + 1243, + 695, + 1243, + 720, + 1218, + 720 + ], + "score": 0.83, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1309, + 1107, + 1334, + 1107, + 1334, + 1133, + 1309, + 1133 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 625, + 1107, + 648, + 1107, + 648, + 1133, + 625, + 1133 + ], + "score": 0.82, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 585, + 660, + 604, + 660, + 604, + 687, + 585, + 687 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1374, + 569, + 1397, + 569, + 1397, + 595, + 1374, + 595 + ], + "score": 0.79, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 544, + 815, + 563, + 815, + 563, + 837, + 544, + 837 + ], + "score": 0.78, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 1164, + 756, + 1183, + 756, + 1183, + 778, + 1164, + 778 + ], + "score": 0.78, + "latex": "\\kappa" + }, + { + "category_id": 13, + "poly": [ + 1260, + 724, + 1279, + 724, + 1279, + 751, + 1260, + 751 + ], + "score": 0.77, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 958, + 1107, + 983, + 1107, + 983, + 1134, + 958, + 1134 + ], + "score": 0.77, + "latex": "\\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 1384, + 1140, + 1401, + 1140, + 1401, + 1162, + 1384, + 1162 + ], + "score": 0.72, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 393, + 1199, + 410, + 1199, + 410, + 1220, + 393, + 1220 + ], + "score": 0.71, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1384, + 696, + 1401, + 696, + 1401, + 717, + 1384, + 717 + ], + "score": 0.7, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 835, + 845, + 851, + 845, + 851, + 866, + 835, + 866 + ], + "score": 0.7, + "latex": "r" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 517.0, + 563.0, + 517.0, + 563.0, + 557.0, + 293.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1475.0, + 662.0, + 1475.0, + 662.0, + 1512.0, + 293.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1023.0, + 642.0, + 1023.0, + 642.0, + 1070.0, + 292.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1411.0, + 626.0, + 1411.0, + 626.0, + 1476.0, + 287.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 216.0, + 1088.0, + 216.0, + 1088.0, + 240.0, + 613.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 860.0, + 2060.0, + 860.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2092.0, + 838.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1075.0, + 698.0, + 1075.0, + 698.0, + 1111.0, + 295.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1075.0, + 1406.0, + 1075.0, + 1406.0, + 1111.0, + 719.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1103.0, + 401.0, + 1103.0, + 401.0, + 1141.0, + 294.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 1103.0, + 624.0, + 1103.0, + 624.0, + 1141.0, + 547.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1103.0, + 957.0, + 1103.0, + 957.0, + 1141.0, + 649.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1103.0, + 1308.0, + 1103.0, + 1308.0, + 1141.0, + 984.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1103.0, + 1405.0, + 1103.0, + 1405.0, + 1141.0, + 1335.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1136.0, + 1383.0, + 1136.0, + 1383.0, + 1169.0, + 295.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1136.0, + 1405.0, + 1136.0, + 1405.0, + 1169.0, + 1402.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1199.0, + 292.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1187.0, + 392.0, + 1187.0, + 392.0, + 1232.0, + 291.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1187.0, + 1410.0, + 1187.0, + 1410.0, + 1232.0, + 411.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1219.0, + 1407.0, + 1219.0, + 1407.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1252.0, + 1405.0, + 1252.0, + 1405.0, + 1285.0, + 296.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 1406.0, + 1280.0, + 1406.0, + 1317.0, + 294.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1312.0, + 1403.0, + 1312.0, + 1403.0, + 1345.0, + 295.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1406.0, + 1337.0, + 1406.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1366.0, + 1403.0, + 1366.0, + 1403.0, + 1404.0, + 292.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1523.0, + 1404.0, + 1523.0, + 1404.0, + 1557.0, + 296.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1552.0, + 1407.0, + 1552.0, + 1407.0, + 1588.0, + 292.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1583.0, + 1406.0, + 1583.0, + 1406.0, + 1617.0, + 294.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1612.0, + 1404.0, + 1612.0, + 1404.0, + 1646.0, + 294.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1641.0, + 1404.0, + 1641.0, + 1404.0, + 1674.0, + 294.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1671.0, + 1406.0, + 1671.0, + 1406.0, + 1702.0, + 293.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1700.0, + 843.0, + 1700.0, + 843.0, + 1733.0, + 294.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 567.0, + 490.0, + 567.0, + 490.0, + 601.0, + 296.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 567.0, + 1373.0, + 567.0, + 1373.0, + 601.0, + 512.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 567.0, + 1407.0, + 567.0, + 1407.0, + 601.0, + 1398.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 592.0, + 1406.0, + 592.0, + 1406.0, + 636.0, + 291.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 624.0, + 297.0, + 624.0, + 297.0, + 662.0, + 294.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 624.0, + 1406.0, + 624.0, + 1406.0, + 662.0, + 318.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 654.0, + 584.0, + 654.0, + 584.0, + 689.0, + 295.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 654.0, + 1405.0, + 654.0, + 1405.0, + 689.0, + 605.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 674.0, + 497.0, + 674.0, + 497.0, + 731.0, + 287.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 674.0, + 683.0, + 674.0, + 683.0, + 731.0, + 543.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 674.0, + 952.0, + 674.0, + 952.0, + 731.0, + 871.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 674.0, + 1217.0, + 674.0, + 1217.0, + 731.0, + 984.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 674.0, + 1383.0, + 674.0, + 1383.0, + 731.0, + 1244.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 674.0, + 1412.0, + 674.0, + 1412.0, + 731.0, + 1402.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 1259.0, + 718.0, + 1259.0, + 756.0, + 294.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 718.0, + 1325.0, + 718.0, + 1325.0, + 756.0, + 1280.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 746.0, + 569.0, + 746.0, + 569.0, + 790.0, + 487.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 746.0, + 1163.0, + 746.0, + 1163.0, + 790.0, + 622.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 746.0, + 1408.0, + 746.0, + 1408.0, + 790.0, + 1184.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 1405.0, + 780.0, + 1405.0, + 814.0, + 295.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 806.0, + 543.0, + 806.0, + 543.0, + 847.0, + 292.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 806.0, + 1405.0, + 806.0, + 1405.0, + 847.0, + 564.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 835.0, + 834.0, + 835.0, + 834.0, + 875.0, + 292.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 835.0, + 1407.0, + 835.0, + 1407.0, + 875.0, + 852.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 867.0, + 1403.0, + 867.0, + 1403.0, + 901.0, + 295.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 897.0, + 1405.0, + 897.0, + 1405.0, + 931.0, + 294.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 926.0, + 1405.0, + 926.0, + 1405.0, + 959.0, + 292.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 956.0, + 1406.0, + 956.0, + 1406.0, + 990.0, + 295.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 982.0, + 1289.0, + 982.0, + 1289.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1743.0, + 1402.0, + 1743.0, + 1402.0, + 1775.0, + 296.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1770.0, + 1406.0, + 1770.0, + 1406.0, + 1807.0, + 293.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1800.0, + 1406.0, + 1800.0, + 1406.0, + 1836.0, + 294.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1828.0, + 1407.0, + 1828.0, + 1407.0, + 1866.0, + 292.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1859.0, + 1405.0, + 1859.0, + 1405.0, + 1894.0, + 293.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1888.0, + 1404.0, + 1888.0, + 1404.0, + 1924.0, + 293.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1917.0, + 1405.0, + 1917.0, + 1405.0, + 1952.0, + 293.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1405.0, + 1946.0, + 1405.0, + 1982.0, + 294.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1976.0, + 1404.0, + 1976.0, + 1404.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 394, + 1405, + 394, + 1405, + 947, + 298, + 947 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1648, + 1404, + 1648, + 1404, + 1941, + 298, + 1941 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1009, + 1404, + 1009, + 1404, + 1303, + 298, + 1303 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1364, + 1405, + 1364, + 1405, + 1570, + 298, + 1570 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 202, + 1405, + 202, + 1405, + 378, + 298, + 378 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 297, + 1592, + 523, + 1592, + 523, + 1630, + 297, + 1630 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 299, + 1318, + 624, + 1318, + 624, + 1350, + 299, + 1350 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 298, + 963, + 465, + 963, + 465, + 994, + 298, + 994 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2084, + 840, + 2084 + ], + "score": 0.783 + }, + { + "category_id": 13, + "poly": [ + 1313, + 453, + 1358, + 453, + 1358, + 482, + 1313, + 482 + ], + "score": 0.91, + "latex": "D _ { \\mathrm { a l l } }" + }, + { + "category_id": 13, + "poly": [ + 801, + 1423, + 909, + 1423, + 909, + 1451, + 801, + 1451 + ], + "score": 0.9, + "latex": "2 2 4 \\times 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 1341, + 1421, + 1398, + 1421, + 1398, + 1451, + 1341, + 1451 + ], + "score": 0.9, + "latex": "1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 682, + 291, + 748, + 291, + 748, + 323, + 682, + 323 + ], + "score": 0.89, + "latex": "( x , y )" + }, + { + "category_id": 13, + "poly": [ + 578, + 262, + 642, + 262, + 642, + 294, + 578, + 294 + ], + "score": 0.89, + "latex": "( { \\bar { x } } , y )" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1881, + 1280, + 1881, + 1280, + 1910, + 1223, + 1910 + ], + "score": 0.82, + "latex": "\\pm 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1085, + 263, + 1103, + 263, + 1103, + 289, + 1085, + 289 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 943, + 1708, + 970, + 1708, + 970, + 1734, + 943, + 1734 + ], + "score": 0.78, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1276, + 1766, + 1303, + 1766, + 1303, + 1792, + 1276, + 1792 + ], + "score": 0.76, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1181, + 569, + 1230, + 569, + 1230, + 596, + 1181, + 596 + ], + "score": 0.58, + "latex": "X Y" + }, + { + "category_id": 13, + "poly": [ + 876, + 262, + 1006, + 262, + 1006, + 292, + 876, + 292 + ], + "score": 0.38, + "latex": "( \\cos \\bar { \\theta } , \\sin \\theta _ { . } ^ { \\cdot }" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1586.0, + 528.0, + 1586.0, + 528.0, + 1640.0, + 288.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 626.0, + 1315.0, + 626.0, + 1355.0, + 294.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 469.0, + 959.0, + 469.0, + 998.0, + 293.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 863.0, + 2059.0, + 863.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 390.0, + 1408.0, + 390.0, + 1408.0, + 427.0, + 293.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 422.0, + 1406.0, + 422.0, + 1406.0, + 458.0, + 295.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 451.0, + 1312.0, + 451.0, + 1312.0, + 487.0, + 295.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 451.0, + 1408.0, + 451.0, + 1408.0, + 487.0, + 1359.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 477.0, + 1406.0, + 477.0, + 1406.0, + 517.0, + 292.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 507.0, + 1405.0, + 507.0, + 1405.0, + 546.0, + 293.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 538.0, + 1407.0, + 538.0, + 1407.0, + 574.0, + 295.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 568.0, + 1180.0, + 568.0, + 1180.0, + 600.0, + 296.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 568.0, + 1403.0, + 568.0, + 1403.0, + 600.0, + 1231.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 598.0, + 1405.0, + 598.0, + 1405.0, + 630.0, + 295.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 622.0, + 1408.0, + 622.0, + 1408.0, + 663.0, + 293.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 654.0, + 1407.0, + 654.0, + 1407.0, + 690.0, + 293.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 682.0, + 1403.0, + 682.0, + 1403.0, + 718.0, + 295.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 714.0, + 1405.0, + 714.0, + 1405.0, + 747.0, + 293.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 739.0, + 1406.0, + 739.0, + 1406.0, + 780.0, + 292.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 773.0, + 1403.0, + 773.0, + 1403.0, + 804.0, + 296.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 801.0, + 1406.0, + 801.0, + 1406.0, + 836.0, + 293.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 829.0, + 1407.0, + 829.0, + 1407.0, + 866.0, + 292.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 858.0, + 1408.0, + 858.0, + 1408.0, + 894.0, + 295.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 885.0, + 1406.0, + 885.0, + 1406.0, + 923.0, + 293.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 913.0, + 1410.0, + 913.0, + 1410.0, + 955.0, + 291.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1647.0, + 1405.0, + 1647.0, + 1405.0, + 1682.0, + 294.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1712.0, + 294.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1702.0, + 942.0, + 1702.0, + 942.0, + 1744.0, + 292.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1702.0, + 1406.0, + 1702.0, + 1406.0, + 1744.0, + 971.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1734.0, + 1407.0, + 1734.0, + 1407.0, + 1771.0, + 293.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1764.0, + 1275.0, + 1764.0, + 1275.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1764.0, + 1406.0, + 1764.0, + 1406.0, + 1798.0, + 1304.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1793.0, + 1406.0, + 1793.0, + 1406.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1824.0, + 1404.0, + 1824.0, + 1404.0, + 1855.0, + 296.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 1405.0, + 1853.0, + 1405.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1222.0, + 1880.0, + 1222.0, + 1914.0, + 293.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1914.0, + 1281.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1912.0, + 748.0, + 1912.0, + 748.0, + 1943.0, + 296.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1009.0, + 1401.0, + 1009.0, + 1401.0, + 1040.0, + 296.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1038.0, + 1404.0, + 1038.0, + 1404.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1066.0, + 1406.0, + 1066.0, + 1406.0, + 1101.0, + 293.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1096.0, + 1404.0, + 1096.0, + 1404.0, + 1130.0, + 294.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1126.0, + 1404.0, + 1126.0, + 1404.0, + 1157.0, + 296.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1157.0, + 1402.0, + 1157.0, + 1402.0, + 1188.0, + 294.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1182.0, + 1406.0, + 1182.0, + 1406.0, + 1219.0, + 293.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1209.0, + 1405.0, + 1209.0, + 1405.0, + 1251.0, + 292.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1241.0, + 1406.0, + 1241.0, + 1406.0, + 1277.0, + 293.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1272.0, + 1331.0, + 1272.0, + 1331.0, + 1306.0, + 294.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1364.0, + 1405.0, + 1364.0, + 1405.0, + 1398.0, + 296.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1393.0, + 1408.0, + 1393.0, + 1408.0, + 1426.0, + 295.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1417.0, + 800.0, + 1417.0, + 800.0, + 1456.0, + 291.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1417.0, + 1340.0, + 1417.0, + 1340.0, + 1456.0, + 910.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1417.0, + 1411.0, + 1417.0, + 1411.0, + 1456.0, + 1399.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1449.0, + 1406.0, + 1449.0, + 1406.0, + 1485.0, + 293.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1514.0, + 295.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1510.0, + 1405.0, + 1510.0, + 1405.0, + 1541.0, + 293.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1539.0, + 965.0, + 1539.0, + 965.0, + 1572.0, + 295.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 203.0, + 1406.0, + 203.0, + 1406.0, + 238.0, + 293.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 232.0, + 1405.0, + 232.0, + 1405.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 577.0, + 262.0, + 577.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 262.0, + 875.0, + 262.0, + 875.0, + 296.0, + 643.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 262.0, + 1084.0, + 262.0, + 1084.0, + 296.0, + 1007.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 262.0, + 1407.0, + 262.0, + 1407.0, + 296.0, + 1104.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 681.0, + 289.0, + 681.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 289.0, + 1405.0, + 289.0, + 1405.0, + 325.0, + 749.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 318.0, + 1408.0, + 318.0, + 1408.0, + 354.0, + 293.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 349.0, + 731.0, + 349.0, + 731.0, + 380.0, + 294.0, + 380.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1565, + 1403, + 1565, + 1403, + 1800, + 298, + 1800 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1181, + 1404, + 1181, + 1404, + 1503, + 297, + 1503 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 857, + 1405, + 857, + 1405, + 1119, + 298, + 1119 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1862, + 1401, + 1862, + 1401, + 1955, + 299, + 1955 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 299, + 201, + 1399, + 201, + 1399, + 431, + 299, + 431 + ], + "score": 0.962 + }, + { + "category_id": 3, + "poly": [ + 298, + 497, + 1399, + 497, + 1399, + 725, + 298, + 725 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 295, + 741, + 1397, + 741, + 1397, + 808, + 295, + 808 + ], + "score": 0.947 + }, + { + "category_id": 4, + "poly": [ + 294, + 448, + 1408, + 448, + 1408, + 491, + 294, + 491 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 297, + 1135, + 1061, + 1135, + 1061, + 1168, + 297, + 1168 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 299, + 1519, + 1197, + 1519, + 1197, + 1552, + 299, + 1552 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 295, + 1816, + 1293, + 1816, + 1293, + 1848, + 295, + 1848 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 297, + 812, + 1061, + 812, + 1061, + 842, + 297, + 842 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 320, + 1978, + 1369, + 1978, + 1369, + 2007, + 320, + 2007 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.733 + }, + { + "category_id": 13, + "poly": [ + 593, + 1923, + 635, + 1923, + 635, + 1955, + 593, + 1955 + ], + "score": 0.71, + "latex": "[ 6 ] ^ { 4 }" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 204.0, + 704.0, + 204.0, + 704.0, + 224.0, + 605.0, + 224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 201.0, + 791.0, + 201.0, + 791.0, + 228.0, + 752.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 204.0, + 933.0, + 204.0, + 933.0, + 224.0, + 837.0, + 224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 204.0, + 1017.0, + 204.0, + 1017.0, + 226.0, + 980.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 204.0, + 1099.0, + 204.0, + 1099.0, + 227.0, + 1063.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 230.0, + 483.0, + 230.0, + 483.0, + 250.0, + 420.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 230.0, + 764.0, + 230.0, + 764.0, + 246.0, + 684.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 230.0, + 1030.0, + 230.0, + 1030.0, + 246.0, + 966.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 231.0, + 1299.0, + 231.0, + 1299.0, + 250.0, + 1250.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 245.0, + 333.0, + 245.0, + 333.0, + 261.0, + 314.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 243.0, + 610.0, + 243.0, + 610.0, + 257.0, + 588.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 253.0, + 1153.0, + 253.0, + 1153.0, + 270.0, + 1135.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 272.0, + 333.0, + 272.0, + 333.0, + 369.0, + 298.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 277.0, + 527.0, + 277.0, + 527.0, + 376.0, + 496.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 271.0, + 617.0, + 271.0, + 617.0, + 377.0, + 565.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 263.0, + 894.0, + 263.0, + 894.0, + 377.0, + 837.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 302.0, + 1063.0, + 302.0, + 1063.0, + 315.0, + 1040.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 302.0, + 1108.0, + 302.0, + 1108.0, + 311.0, + 1092.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 271.0, + 1165.0, + 271.0, + 1165.0, + 378.0, + 1113.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 361.0, + 332.0, + 361.0, + 332.0, + 377.0, + 314.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 357.0, + 608.0, + 357.0, + 608.0, + 377.0, + 587.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 357.0, + 882.0, + 357.0, + 882.0, + 373.0, + 862.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 356.0, + 932.0, + 356.0, + 932.0, + 366.0, + 919.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 360.0, + 1004.0, + 360.0, + 1004.0, + 373.0, + 979.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 366.0, + 1022.0, + 366.0, + 1022.0, + 375.0, + 1012.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 373.0, + 1111.0, + 373.0, + 1111.0, + 392.0, + 1056.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 368.0, + 1155.0, + 368.0, + 1155.0, + 387.0, + 1134.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 359.0, + 1253.0, + 359.0, + 1253.0, + 379.0, + 1163.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 388.0, + 336.0, + 388.0, + 336.0, + 406.0, + 311.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 389.0, + 609.0, + 389.0, + 609.0, + 404.0, + 587.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 389.0, + 883.0, + 389.0, + 883.0, + 405.0, + 862.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 387.0, + 1158.0, + 387.0, + 1158.0, + 406.0, + 1134.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 404.0, + 349.0, + 404.0, + 349.0, + 417.0, + 338.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 402.0, + 397.0, + 402.0, + 397.0, + 418.0, + 379.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 402.0, + 439.0, + 402.0, + 439.0, + 418.0, + 421.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 402.0, + 481.0, + 402.0, + 481.0, + 418.0, + 465.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 402.0, + 527.0, + 402.0, + 527.0, + 418.0, + 509.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 402.0, + 570.0, + 402.0, + 570.0, + 418.0, + 551.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 404.0, + 623.0, + 404.0, + 623.0, + 417.0, + 612.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 404.0, + 674.0, + 404.0, + 674.0, + 418.0, + 658.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 401.0, + 727.0, + 401.0, + 727.0, + 419.0, + 701.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 401.0, + 775.0, + 401.0, + 775.0, + 419.0, + 750.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 401.0, + 823.0, + 401.0, + 823.0, + 419.0, + 797.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 404.0, + 896.0, + 404.0, + 896.0, + 417.0, + 887.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 402.0, + 947.0, + 402.0, + 947.0, + 418.0, + 925.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 401.0, + 993.0, + 401.0, + 993.0, + 419.0, + 968.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 401.0, + 1038.0, + 401.0, + 1038.0, + 419.0, + 1012.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 401.0, + 1082.0, + 401.0, + 1082.0, + 419.0, + 1055.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 400.0, + 1124.0, + 400.0, + 1124.0, + 419.0, + 1099.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 404.0, + 1170.0, + 404.0, + 1170.0, + 417.0, + 1160.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 401.0, + 1223.0, + 401.0, + 1223.0, + 419.0, + 1198.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 402.0, + 1265.0, + 402.0, + 1265.0, + 417.0, + 1243.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 401.0, + 1312.0, + 401.0, + 1312.0, + 419.0, + 1285.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 401.0, + 1355.0, + 401.0, + 1355.0, + 419.0, + 1330.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 401.0, + 1399.0, + 401.0, + 1399.0, + 419.0, + 1374.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 410.0, + 505.0, + 410.0, + 505.0, + 431.0, + 398.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 410.0, + 778.0, + 410.0, + 778.0, + 431.0, + 673.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 410.0, + 1053.0, + 410.0, + 1053.0, + 431.0, + 947.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 410.0, + 1327.0, + 410.0, + 1327.0, + 431.0, + 1220.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 256.0, + 1120.0, + 256.0, + 1120.0, + 288.5, + 979.0, + 288.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 300.5, + 329.0, + 300.5, + 329.0, + 320.5, + 315.0, + 320.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.25, + 279.5, + 1394.25, + 279.5, + 1394.25, + 310.0, + 1255.25, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 322.0, + 1383.0, + 322.0, + 1383.0, + 372.0, + 1240.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.25, + 325.0, + 1381.25, + 325.0, + 1381.25, + 340.0, + 1355.25, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 337.0, + 1276.0, + 337.0, + 1276.0, + 361.0, + 1222.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 358.0, + 1332.0, + 358.0, + 1332.0, + 383.5, + 1222.0, + 383.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 358.5, + 1385.0, + 358.5, + 1385.0, + 379.0, + 1323.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 354.5, + 986.0, + 354.5, + 986.0, + 393.5, + 873.0, + 393.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 370.5, + 1064.0, + 370.5, + 1064.0, + 388.5, + 1023.0, + 388.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 334.5, + 453.0, + 334.5, + 453.0, + 350.5, + 375.0, + 350.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.75, + 342.5, + 717.75, + 342.5, + 717.75, + 381.5, + 605.75, + 381.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.75, + 367.5, + 1221.75, + 367.5, + 1221.75, + 390.5, + 1173.75, + 390.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 377.5, + 565.0, + 377.5, + 565.0, + 395.0, + 486.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 498.0, + 731.0, + 498.0, + 731.0, + 520.0, + 692.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 498.0, + 815.0, + 498.0, + 815.0, + 520.0, + 777.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 500.0, + 956.0, + 500.0, + 956.0, + 520.0, + 861.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 498.0, + 1041.0, + 498.0, + 1041.0, + 521.0, + 1005.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 523.0, + 483.0, + 523.0, + 483.0, + 543.0, + 419.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 525.0, + 766.0, + 525.0, + 766.0, + 542.0, + 686.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 523.0, + 1034.0, + 523.0, + 1034.0, + 543.0, + 967.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 524.0, + 1298.0, + 524.0, + 1298.0, + 544.0, + 1247.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 539.0, + 334.0, + 539.0, + 334.0, + 555.0, + 313.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 534.0, + 882.0, + 534.0, + 882.0, + 549.0, + 861.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 537.0, + 1155.0, + 537.0, + 1155.0, + 552.0, + 1135.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 569.0, + 339.0, + 569.0, + 339.0, + 669.0, + 292.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 553.0, + 607.0, + 553.0, + 607.0, + 662.0, + 572.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 551.0, + 891.0, + 551.0, + 891.0, + 673.0, + 838.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 569.0, + 1037.0, + 569.0, + 1037.0, + 579.0, + 1021.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 558.0, + 1092.0, + 558.0, + 1092.0, + 571.0, + 1072.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 552.0, + 1165.0, + 552.0, + 1165.0, + 675.0, + 1110.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 597.0, + 331.0, + 597.0, + 331.0, + 612.0, + 314.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 616.0, + 606.0, + 616.0, + 606.0, + 637.0, + 586.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 619.0, + 952.0, + 619.0, + 952.0, + 629.0, + 940.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 655.0, + 332.0, + 655.0, + 332.0, + 670.0, + 314.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 651.0, + 605.0, + 651.0, + 605.0, + 666.0, + 587.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 649.0, + 645.0, + 649.0, + 645.0, + 671.0, + 626.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 662.0, + 881.0, + 662.0, + 881.0, + 681.0, + 860.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 658.0, + 910.0, + 658.0, + 910.0, + 670.0, + 899.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 662.0, + 1155.0, + 662.0, + 1155.0, + 684.0, + 1134.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 683.0, + 334.0, + 683.0, + 334.0, + 698.0, + 313.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 684.0, + 607.0, + 684.0, + 607.0, + 698.0, + 587.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 683.0, + 882.0, + 683.0, + 882.0, + 698.0, + 861.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 678.0, + 1156.0, + 678.0, + 1156.0, + 699.0, + 1134.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 698.0, + 348.0, + 698.0, + 348.0, + 711.0, + 339.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 697.0, + 392.0, + 697.0, + 392.0, + 712.0, + 376.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 697.0, + 431.0, + 697.0, + 431.0, + 712.0, + 414.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 697.0, + 469.0, + 697.0, + 469.0, + 712.0, + 454.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 697.0, + 509.0, + 697.0, + 509.0, + 712.0, + 494.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 697.0, + 550.0, + 697.0, + 550.0, + 712.0, + 532.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 697.0, + 625.0, + 697.0, + 625.0, + 712.0, + 610.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 697.0, + 675.0, + 697.0, + 675.0, + 712.0, + 657.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 696.0, + 727.0, + 696.0, + 727.0, + 713.0, + 702.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 696.0, + 776.0, + 696.0, + 776.0, + 713.0, + 748.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 696.0, + 823.0, + 696.0, + 823.0, + 713.0, + 797.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 698.0, + 896.0, + 698.0, + 896.0, + 711.0, + 886.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 696.0, + 949.0, + 696.0, + 949.0, + 713.0, + 924.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 697.0, + 991.0, + 697.0, + 991.0, + 712.0, + 970.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 696.0, + 1037.0, + 696.0, + 1037.0, + 713.0, + 1012.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 696.0, + 1081.0, + 696.0, + 1081.0, + 713.0, + 1056.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 694.0, + 1124.0, + 694.0, + 1124.0, + 713.0, + 1099.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 698.0, + 1170.0, + 698.0, + 1170.0, + 711.0, + 1160.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 697.0, + 1221.0, + 697.0, + 1221.0, + 712.0, + 1200.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 696.0, + 1266.0, + 696.0, + 1266.0, + 713.0, + 1241.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 696.0, + 1311.0, + 696.0, + 1311.0, + 713.0, + 1284.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 696.0, + 1355.0, + 696.0, + 1355.0, + 713.0, + 1329.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 696.0, + 1399.0, + 696.0, + 1399.0, + 713.0, + 1374.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 705.0, + 506.0, + 705.0, + 506.0, + 725.0, + 398.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 705.0, + 778.0, + 705.0, + 778.0, + 725.0, + 672.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 705.0, + 1052.0, + 705.0, + 1052.0, + 725.0, + 947.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 705.0, + 1326.0, + 705.0, + 1326.0, + 725.0, + 1220.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 587.5, + 442.0, + 587.5, + 442.0, + 602.5, + 404.0, + 602.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 624.0, + 885.0, + 624.0, + 885.0, + 644.0, + 855.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.75, + 634.0, + 1108.75, + 634.0, + 1108.75, + 653.5, + 1075.75, + 653.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 618.0, + 1107.0, + 618.0, + 1107.0, + 632.0, + 1080.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.75, + 641.0, + 1384.75, + 641.0, + 1384.75, + 665.5, + 1311.75, + 665.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.25, + 633.5, + 1066.25, + 633.5, + 1066.25, + 683.5, + 872.25, + 683.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.75, + 650.0, + 1328.75, + 650.0, + 1328.75, + 679.5, + 1197.75, + 679.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 1402.0, + 739.0, + 1402.0, + 769.0, + 294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 760.0, + 1403.0, + 760.0, + 1403.0, + 790.0, + 294.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 785.0, + 972.0, + 785.0, + 972.0, + 810.0, + 296.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 446.0, + 1405.0, + 446.0, + 1405.0, + 474.0, + 295.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 466.0, + 520.0, + 466.0, + 520.0, + 494.0, + 294.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1135.0, + 1062.0, + 1135.0, + 1062.0, + 1171.0, + 295.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1517.0, + 1201.0, + 1517.0, + 1201.0, + 1557.0, + 293.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1814.0, + 1295.0, + 1814.0, + 1295.0, + 1852.0, + 292.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 810.0, + 1059.0, + 810.0, + 1059.0, + 845.0, + 295.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1971.0, + 1374.0, + 1971.0, + 1374.0, + 2011.0, + 331.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1566.0, + 1404.0, + 1566.0, + 1404.0, + 1599.0, + 296.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 1404.0, + 1591.0, + 1404.0, + 1630.0, + 294.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1621.0, + 1405.0, + 1621.0, + 1405.0, + 1660.0, + 293.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1689.0, + 293.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 1407.0, + 1681.0, + 1407.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1710.0, + 1407.0, + 1710.0, + 1407.0, + 1747.0, + 294.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 1408.0, + 1739.0, + 1408.0, + 1778.0, + 292.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1769.0, + 626.0, + 1769.0, + 626.0, + 1804.0, + 295.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1182.0, + 1405.0, + 1182.0, + 1405.0, + 1215.0, + 295.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1247.0, + 294.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1275.0, + 296.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1271.0, + 1405.0, + 1271.0, + 1405.0, + 1304.0, + 295.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1298.0, + 1406.0, + 1298.0, + 1406.0, + 1335.0, + 295.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1362.0, + 296.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1354.0, + 1406.0, + 1354.0, + 1406.0, + 1393.0, + 294.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1383.0, + 1406.0, + 1383.0, + 1406.0, + 1422.0, + 294.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1413.0, + 1405.0, + 1413.0, + 1405.0, + 1449.0, + 295.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1441.0, + 1405.0, + 1441.0, + 1405.0, + 1480.0, + 294.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1473.0, + 921.0, + 1473.0, + 921.0, + 1508.0, + 293.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 1405.0, + 856.0, + 1405.0, + 891.0, + 295.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 885.0, + 1408.0, + 885.0, + 1408.0, + 920.0, + 295.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 913.0, + 1406.0, + 913.0, + 1406.0, + 949.0, + 292.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 944.0, + 1405.0, + 944.0, + 1405.0, + 975.0, + 293.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 972.0, + 1407.0, + 972.0, + 1407.0, + 1007.0, + 293.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 1406.0, + 1001.0, + 1406.0, + 1036.0, + 295.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1028.0, + 1405.0, + 1028.0, + 1405.0, + 1066.0, + 293.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1060.0, + 1403.0, + 1060.0, + 1403.0, + 1095.0, + 295.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 1328.0, + 1086.0, + 1328.0, + 1126.0, + 292.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1859.0, + 1406.0, + 1859.0, + 1406.0, + 1898.0, + 293.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1890.0, + 1406.0, + 1890.0, + 1406.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1922.0, + 592.0, + 1922.0, + 592.0, + 1959.0, + 294.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1922.0, + 1405.0, + 1922.0, + 1405.0, + 1959.0, + 636.0, + 1959.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1654, + 1404, + 1654, + 1404, + 2006, + 298, + 2006 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 624, + 1406, + 624, + 1406, + 828, + 296, + 828 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 408, + 1135, + 1288, + 1135, + 1288, + 1485, + 408, + 1485 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 429, + 197, + 1273, + 197, + 1273, + 499, + 429, + 499 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 519, + 857, + 1178, + 857, + 1178, + 1047, + 519, + 1047 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 300, + 516, + 1402, + 516, + 1402, + 603, + 300, + 603 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 297, + 1064, + 1402, + 1064, + 1402, + 1129, + 297, + 1129 + ], + "score": 0.941 + }, + { + "category_id": 4, + "poly": [ + 294, + 1505, + 1402, + 1505, + 1402, + 1550, + 294, + 1550 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 297, + 1599, + 500, + 1599, + 500, + 1636, + 297, + 1636 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.796 + }, + { + "category_id": 13, + "poly": [ + 754, + 560, + 802, + 560, + 802, + 580, + 754, + 580 + ], + "score": 0.27, + "latex": "\\mathrm { R L V ^ { \\ast } }" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1136.0, + 862.0, + 1136.0, + 862.0, + 1152.0, + 801.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1141.0, + 891.0, + 1141.0, + 891.0, + 1148.0, + 882.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1135.0, + 924.0, + 1135.0, + 924.0, + 1153.0, + 893.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1150.0, + 607.0, + 1150.0, + 607.0, + 1172.0, + 503.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1152.0, + 895.0, + 1152.0, + 895.0, + 1171.0, + 801.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1153.0, + 1189.0, + 1153.0, + 1189.0, + 1169.0, + 1090.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1166.0, + 453.0, + 1166.0, + 453.0, + 1274.0, + 400.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1171.0, + 660.0, + 1171.0, + 660.0, + 1194.0, + 542.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1161.0, + 746.0, + 1161.0, + 746.0, + 1274.0, + 666.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1161.0, + 1037.0, + 1161.0, + 1037.0, + 1274.0, + 958.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1160.0, + 1292.0, + 1160.0, + 1292.0, + 1272.0, + 1242.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1197.0, + 689.0, + 1197.0, + 689.0, + 1214.0, + 668.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1197.0, + 980.0, + 1197.0, + 980.0, + 1214.0, + 960.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1197.0, + 1176.0, + 1197.0, + 1176.0, + 1232.0, + 1131.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1197.0, + 1273.0, + 1197.0, + 1273.0, + 1214.0, + 1252.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1208.0, + 444.0, + 1208.0, + 444.0, + 1223.0, + 423.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1208.0, + 736.0, + 1208.0, + 736.0, + 1222.0, + 715.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1208.0, + 1028.0, + 1208.0, + 1028.0, + 1222.0, + 1007.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1227.0, + 442.0, + 1227.0, + 442.0, + 1243.0, + 423.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1228.0, + 736.0, + 1228.0, + 736.0, + 1242.0, + 715.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1227.0, + 1027.0, + 1227.0, + 1027.0, + 1243.0, + 1007.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1235.0, + 689.0, + 1235.0, + 689.0, + 1249.0, + 668.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1234.0, + 979.0, + 1234.0, + 979.0, + 1249.0, + 960.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1269.0, + 444.0, + 1269.0, + 444.0, + 1284.0, + 423.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1271.0, + 688.0, + 1271.0, + 688.0, + 1286.0, + 664.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1269.0, + 737.0, + 1269.0, + 737.0, + 1284.0, + 714.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1271.0, + 981.0, + 1271.0, + 981.0, + 1285.0, + 955.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1269.0, + 1029.0, + 1269.0, + 1029.0, + 1284.0, + 1006.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1271.0, + 1272.0, + 1271.0, + 1272.0, + 1286.0, + 1248.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1282.0, + 459.0, + 1282.0, + 459.0, + 1295.0, + 447.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1280.0, + 513.0, + 1280.0, + 513.0, + 1296.0, + 494.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1281.0, + 585.0, + 1281.0, + 585.0, + 1308.0, + 527.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1281.0, + 612.0, + 1281.0, + 612.0, + 1296.0, + 594.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1281.0, + 662.0, + 1281.0, + 662.0, + 1296.0, + 643.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1281.0, + 751.0, + 1281.0, + 751.0, + 1295.0, + 739.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1280.0, + 806.0, + 1280.0, + 806.0, + 1296.0, + 787.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1279.0, + 878.0, + 1279.0, + 878.0, + 1310.0, + 817.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1279.0, + 913.0, + 1279.0, + 913.0, + 1297.0, + 887.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 1279.0, + 964.0, + 1279.0, + 964.0, + 1297.0, + 938.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1281.0, + 1043.0, + 1281.0, + 1043.0, + 1295.0, + 1031.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1280.0, + 1095.0, + 1280.0, + 1095.0, + 1296.0, + 1076.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1280.0, + 1169.0, + 1280.0, + 1169.0, + 1308.0, + 1111.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1280.0, + 1191.0, + 1280.0, + 1191.0, + 1296.0, + 1172.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1280.0, + 1239.0, + 1280.0, + 1239.0, + 1296.0, + 1220.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1317.0, + 861.0, + 1317.0, + 861.0, + 1330.0, + 803.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1315.0, + 924.0, + 1315.0, + 924.0, + 1332.0, + 894.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1331.0, + 610.0, + 1331.0, + 610.0, + 1349.0, + 507.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1333.0, + 896.0, + 1333.0, + 896.0, + 1349.0, + 804.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1332.0, + 1186.0, + 1332.0, + 1186.0, + 1348.0, + 1098.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1345.0, + 454.0, + 1345.0, + 454.0, + 1450.0, + 401.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1350.0, + 612.0, + 1350.0, + 612.0, + 1363.0, + 598.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1352.0, + 663.0, + 1352.0, + 663.0, + 1360.0, + 650.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1345.0, + 748.0, + 1345.0, + 748.0, + 1455.0, + 673.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1355.0, + 986.0, + 1355.0, + 986.0, + 1370.0, + 964.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1344.0, + 1038.0, + 1344.0, + 1038.0, + 1450.0, + 988.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1355.0, + 1277.0, + 1355.0, + 1277.0, + 1370.0, + 1256.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1386.0, + 443.0, + 1386.0, + 443.0, + 1401.0, + 423.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1364.0, + 705.0, + 1364.0, + 705.0, + 1442.0, + 673.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1385.0, + 736.0, + 1385.0, + 736.0, + 1400.0, + 715.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1363.0, + 1000.0, + 1363.0, + 1000.0, + 1444.0, + 964.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1387.0, + 1026.0, + 1387.0, + 1026.0, + 1399.0, + 1008.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1362.0, + 1291.0, + 1362.0, + 1291.0, + 1445.0, + 1257.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1392.0, + 1171.0, + 1392.0, + 1171.0, + 1406.0, + 1124.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1393.0, + 1209.0, + 1393.0, + 1209.0, + 1404.0, + 1194.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1406.0, + 442.0, + 1406.0, + 442.0, + 1423.0, + 423.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1406.0, + 736.0, + 1406.0, + 736.0, + 1421.0, + 716.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1406.0, + 1027.0, + 1406.0, + 1027.0, + 1421.0, + 1008.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1406.0, + 1122.0, + 1406.0, + 1122.0, + 1411.0, + 1116.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1418.0, + 693.0, + 1418.0, + 693.0, + 1434.0, + 673.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1418.0, + 983.0, + 1418.0, + 983.0, + 1434.0, + 965.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1418.0, + 1277.0, + 1418.0, + 1277.0, + 1434.0, + 1256.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1427.0, + 442.0, + 1427.0, + 442.0, + 1442.0, + 423.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1432.0, + 848.0, + 1432.0, + 848.0, + 1439.0, + 838.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1431.0, + 944.0, + 1431.0, + 944.0, + 1441.0, + 927.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1427.0, + 1026.0, + 1427.0, + 1026.0, + 1442.0, + 1006.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1448.0, + 445.0, + 1448.0, + 445.0, + 1463.0, + 423.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1450.0, + 694.0, + 1450.0, + 694.0, + 1465.0, + 670.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1448.0, + 737.0, + 1448.0, + 737.0, + 1463.0, + 715.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1450.0, + 986.0, + 1450.0, + 986.0, + 1465.0, + 961.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1448.0, + 1031.0, + 1448.0, + 1031.0, + 1463.0, + 1007.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1450.0, + 1277.0, + 1450.0, + 1277.0, + 1465.0, + 1254.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1461.0, + 458.0, + 1461.0, + 458.0, + 1472.0, + 450.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1459.0, + 498.0, + 1459.0, + 498.0, + 1474.0, + 478.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1461.0, + 532.0, + 1461.0, + 532.0, + 1473.0, + 515.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1460.0, + 565.0, + 1460.0, + 565.0, + 1473.0, + 551.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1460.0, + 605.0, + 1460.0, + 605.0, + 1474.0, + 581.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1459.0, + 639.0, + 1459.0, + 639.0, + 1474.0, + 615.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1459.0, + 674.0, + 1459.0, + 674.0, + 1474.0, + 650.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1460.0, + 752.0, + 1460.0, + 752.0, + 1474.0, + 740.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1459.0, + 808.0, + 1459.0, + 808.0, + 1475.0, + 789.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1459.0, + 863.0, + 1459.0, + 863.0, + 1474.0, + 839.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1459.0, + 915.0, + 1459.0, + 915.0, + 1474.0, + 892.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 1459.0, + 968.0, + 1459.0, + 968.0, + 1474.0, + 944.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1460.0, + 1044.0, + 1460.0, + 1044.0, + 1473.0, + 1031.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1459.0, + 1082.0, + 1459.0, + 1082.0, + 1474.0, + 1062.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1461.0, + 1115.0, + 1461.0, + 1115.0, + 1473.0, + 1099.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1459.0, + 1151.0, + 1459.0, + 1151.0, + 1474.0, + 1134.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1460.0, + 1189.0, + 1460.0, + 1189.0, + 1474.0, + 1165.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1459.0, + 1224.0, + 1459.0, + 1224.0, + 1474.0, + 1199.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1459.0, + 1259.0, + 1459.0, + 1259.0, + 1474.0, + 1235.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1467.0, + 588.0, + 1467.0, + 588.0, + 1487.0, + 529.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1466.0, + 881.0, + 1466.0, + 881.0, + 1488.0, + 820.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1467.0, + 1172.0, + 1467.0, + 1172.0, + 1487.0, + 1113.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1223.5, + 558.0, + 1223.5, + 558.0, + 1244.5, + 493.0, + 1244.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 1244.0, + 1093.0, + 1244.0, + 1093.0, + 1256.5, + 1065.0, + 1256.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.25, + 1421.0, + 820.25, + 1421.0, + 820.25, + 1441.0, + 739.25, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1412.5, + 1126.0, + 1412.5, + 1126.0, + 1430.0, + 1081.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1430.5, + 884.0, + 1430.5, + 884.0, + 1443.5, + 852.0, + 1443.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 198.0, + 1147.0, + 198.0, + 1147.0, + 217.0, + 1019.0, + 217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 228.0, + 896.0, + 228.0, + 896.0, + 249.0, + 869.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 279.0, + 518.0, + 279.0, + 518.0, + 297.0, + 503.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 281.0, + 895.0, + 281.0, + 895.0, + 304.0, + 869.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 285.0, + 874.0, + 285.0, + 874.0, + 394.0, + 851.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 294.0, + 665.0, + 294.0, + 665.0, + 343.0, + 638.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 334.0, + 895.0, + 334.0, + 895.0, + 357.0, + 869.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 387.0, + 896.0, + 387.0, + 896.0, + 409.0, + 869.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 390.0, + 1263.0, + 390.0, + 1263.0, + 411.0, + 1170.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 406.0, + 1263.0, + 406.0, + 1263.0, + 427.0, + 1169.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 420.0, + 1264.0, + 420.0, + 1264.0, + 443.0, + 1169.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 443.0, + 894.0, + 443.0, + 894.0, + 460.0, + 879.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 435.0, + 1259.0, + 435.0, + 1259.0, + 459.0, + 1168.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 465.0, + 913.0, + 465.0, + 913.0, + 481.0, + 897.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 464.0, + 963.0, + 464.0, + 963.0, + 482.0, + 936.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 461.0, + 1270.0, + 461.0, + 1270.0, + 485.0, + 976.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 480.0, + 1149.0, + 480.0, + 1149.0, + 500.0, + 1016.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 858.0, + 727.0, + 858.0, + 727.0, + 874.0, + 644.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 864.0, + 843.0, + 864.0, + 843.0, + 879.0, + 825.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 858.0, + 1050.0, + 858.0, + 1050.0, + 874.0, + 978.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 866.0, + 1170.0, + 866.0, + 1170.0, + 878.0, + 1154.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 872.0, + 546.0, + 872.0, + 546.0, + 885.0, + 531.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 875.0, + 646.0, + 875.0, + 646.0, + 892.0, + 579.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 886.0, + 814.0, + 886.0, + 814.0, + 894.0, + 805.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 871.0, + 876.0, + 871.0, + 876.0, + 887.0, + 858.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 875.0, + 974.0, + 875.0, + 974.0, + 892.0, + 908.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 890.0, + 650.0, + 890.0, + 650.0, + 909.0, + 578.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 896.0, + 842.0, + 896.0, + 842.0, + 908.0, + 826.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 890.0, + 978.0, + 890.0, + 978.0, + 909.0, + 906.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 896.0, + 1170.0, + 896.0, + 1170.0, + 908.0, + 1154.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 901.0, + 546.0, + 901.0, + 546.0, + 913.0, + 530.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 901.0, + 874.0, + 901.0, + 874.0, + 913.0, + 859.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 912.0, + 552.0, + 912.0, + 552.0, + 985.0, + 513.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 927.0, + 748.0, + 927.0, + 748.0, + 935.0, + 737.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 910.0, + 883.0, + 910.0, + 883.0, + 987.0, + 818.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 909.0, + 1186.0, + 909.0, + 1186.0, + 988.0, + 1146.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 970.0, + 679.0, + 970.0, + 679.0, + 983.0, + 645.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 972.0, + 648.0, + 972.0, + 648.0, + 990.0, + 623.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 985.0, + 545.0, + 985.0, + 545.0, + 996.0, + 531.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 985.0, + 843.0, + 985.0, + 843.0, + 1000.0, + 825.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 985.0, + 874.0, + 985.0, + 874.0, + 997.0, + 858.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 985.0, + 1171.0, + 985.0, + 1171.0, + 1000.0, + 1153.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 994.0, + 1025.0, + 994.0, + 1025.0, + 1004.0, + 1002.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 996.0, + 1141.0, + 996.0, + 1141.0, + 1003.0, + 1131.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1012.0, + 546.0, + 1012.0, + 546.0, + 1025.0, + 530.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1017.0, + 842.0, + 1017.0, + 842.0, + 1029.0, + 824.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1011.0, + 876.0, + 1011.0, + 876.0, + 1027.0, + 858.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1008.0, + 894.0, + 1008.0, + 894.0, + 1016.0, + 887.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1015.0, + 1171.0, + 1015.0, + 1171.0, + 1031.0, + 1151.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1027.0, + 564.0, + 1027.0, + 564.0, + 1037.0, + 555.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1023.0, + 617.0, + 1023.0, + 617.0, + 1039.0, + 599.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1026.0, + 712.0, + 1026.0, + 712.0, + 1049.0, + 650.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1023.0, + 763.0, + 1023.0, + 763.0, + 1039.0, + 746.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1025.0, + 814.0, + 1025.0, + 814.0, + 1039.0, + 792.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1027.0, + 892.0, + 1027.0, + 892.0, + 1037.0, + 883.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1023.0, + 933.0, + 1023.0, + 933.0, + 1039.0, + 916.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1026.0, + 969.0, + 1026.0, + 969.0, + 1038.0, + 954.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1023.0, + 1047.0, + 1023.0, + 1047.0, + 1049.0, + 989.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1023.0, + 1085.0, + 1023.0, + 1085.0, + 1039.0, + 1063.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1025.0, + 1122.0, + 1025.0, + 1122.0, + 1039.0, + 1100.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1023.0, + 1159.0, + 1023.0, + 1159.0, + 1039.0, + 1137.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 940.5, + 739.0, + 940.5, + 739.0, + 954.5, + 714.0, + 954.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 990.5, + 997.0, + 990.5, + 997.0, + 1010.5, + 919.0, + 1010.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.25, + 988.5, + 1074.25, + 988.5, + 1074.25, + 1002.5, + 1036.25, + 1002.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 990.5, + 1102.0, + 990.5, + 1102.0, + 1000.5, + 1089.0, + 1000.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.25, + 1002.0, + 921.25, + 1002.0, + 921.25, + 1012.0, + 892.25, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 515.0, + 1406.0, + 515.0, + 1406.0, + 541.0, + 296.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 540.0, + 1403.0, + 540.0, + 1403.0, + 562.0, + 296.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 560.0, + 753.0, + 560.0, + 753.0, + 583.0, + 294.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 560.0, + 1406.0, + 560.0, + 1406.0, + 583.0, + 803.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 577.0, + 511.0, + 577.0, + 511.0, + 608.0, + 294.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1063.0, + 1406.0, + 1063.0, + 1406.0, + 1091.0, + 295.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1086.0, + 1404.0, + 1086.0, + 1404.0, + 1111.0, + 295.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1109.0, + 396.0, + 1109.0, + 396.0, + 1130.0, + 296.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1503.0, + 1404.0, + 1503.0, + 1404.0, + 1531.0, + 294.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1525.0, + 736.0, + 1525.0, + 736.0, + 1550.0, + 296.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1593.0, + 507.0, + 1593.0, + 507.0, + 1643.0, + 289.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1657.0, + 1405.0, + 1657.0, + 1405.0, + 1689.0, + 296.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1682.0, + 1406.0, + 1682.0, + 1406.0, + 1720.0, + 293.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 1405.0, + 1713.0, + 1405.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1744.0, + 1404.0, + 1744.0, + 1404.0, + 1776.0, + 296.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1771.0, + 1403.0, + 1771.0, + 1403.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1834.0, + 294.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1831.0, + 1405.0, + 1831.0, + 1405.0, + 1863.0, + 296.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1861.0, + 1405.0, + 1861.0, + 1405.0, + 1893.0, + 296.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1888.0, + 1406.0, + 1888.0, + 1406.0, + 1924.0, + 294.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1917.0, + 1406.0, + 1917.0, + 1406.0, + 1953.0, + 294.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1944.0, + 1406.0, + 1944.0, + 1406.0, + 1983.0, + 292.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1975.0, + 630.0, + 1975.0, + 630.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 624.0, + 1404.0, + 624.0, + 1404.0, + 657.0, + 294.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 1406.0, + 652.0, + 1406.0, + 688.0, + 294.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 683.0, + 1404.0, + 683.0, + 1404.0, + 716.0, + 294.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 708.0, + 1406.0, + 708.0, + 1406.0, + 747.0, + 293.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 738.0, + 1408.0, + 738.0, + 1408.0, + 776.0, + 291.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 769.0, + 1406.0, + 769.0, + 1406.0, + 804.0, + 293.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 798.0, + 797.0, + 798.0, + 797.0, + 832.0, + 294.0, + 832.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 424, + 1406, + 424, + 1406, + 1998, + 294, + 1998 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 300, + 254, + 1401, + 254, + 1401, + 343, + 300, + 343 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 299, + 199, + 549, + 199, + 549, + 236, + 299, + 236 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 297, + 367, + 448, + 367, + 448, + 402, + 297, + 402 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.778 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 195.0, + 552.0, + 195.0, + 552.0, + 242.0, + 294.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 364.0, + 451.0, + 364.0, + 451.0, + 405.0, + 295.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 414.0, + 1411.0, + 414.0, + 1411.0, + 458.0, + 304.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 444.0, + 890.0, + 444.0, + 890.0, + 480.0, + 344.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 477.0, + 1408.0, + 477.0, + 1408.0, + 515.0, + 306.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 507.0, + 1170.0, + 507.0, + 1170.0, + 540.0, + 347.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 536.0, + 1406.0, + 536.0, + 1406.0, + 575.0, + 306.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 566.0, + 537.0, + 566.0, + 537.0, + 599.0, + 346.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 595.0, + 1406.0, + 595.0, + 1406.0, + 634.0, + 304.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 623.0, + 674.0, + 623.0, + 674.0, + 656.0, + 346.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 655.0, + 1410.0, + 655.0, + 1410.0, + 693.0, + 306.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 681.0, + 1408.0, + 681.0, + 1408.0, + 719.0, + 346.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 711.0, + 941.0, + 711.0, + 941.0, + 744.0, + 347.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 740.0, + 1408.0, + 740.0, + 1408.0, + 779.0, + 306.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 766.0, + 1110.0, + 766.0, + 1110.0, + 803.0, + 344.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 799.0, + 1408.0, + 799.0, + 1408.0, + 838.0, + 306.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 829.0, + 1327.0, + 829.0, + 1327.0, + 862.0, + 347.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 857.0, + 1165.0, + 857.0, + 1165.0, + 894.0, + 304.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 890.0, + 1406.0, + 890.0, + 1406.0, + 929.0, + 304.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 916.0, + 886.0, + 916.0, + 886.0, + 953.0, + 344.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 949.0, + 1261.0, + 949.0, + 1261.0, + 988.0, + 294.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 1404.0, + 983.0, + 1404.0, + 1021.0, + 294.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1011.0, + 733.0, + 1011.0, + 733.0, + 1043.0, + 342.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1042.0, + 1406.0, + 1042.0, + 1406.0, + 1080.0, + 294.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1068.0, + 733.0, + 1068.0, + 733.0, + 1105.0, + 342.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1098.0, + 1408.0, + 1098.0, + 1408.0, + 1139.0, + 289.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1124.0, + 1408.0, + 1124.0, + 1408.0, + 1166.0, + 346.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1153.0, + 872.0, + 1153.0, + 872.0, + 1190.0, + 344.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1180.0, + 1410.0, + 1180.0, + 1410.0, + 1228.0, + 289.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1213.0, + 1310.0, + 1213.0, + 1310.0, + 1249.0, + 342.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1248.0, + 1404.0, + 1248.0, + 1404.0, + 1281.0, + 294.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1270.0, + 1406.0, + 1270.0, + 1406.0, + 1312.0, + 344.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1300.0, + 649.0, + 1300.0, + 649.0, + 1333.0, + 347.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1333.0, + 1404.0, + 1333.0, + 1404.0, + 1366.0, + 294.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1358.0, + 803.0, + 1358.0, + 803.0, + 1394.0, + 342.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1392.0, + 1404.0, + 1392.0, + 1404.0, + 1425.0, + 296.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1417.0, + 989.0, + 1417.0, + 989.0, + 1453.0, + 344.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1448.0, + 1406.0, + 1448.0, + 1406.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1478.0, + 1069.0, + 1478.0, + 1069.0, + 1511.0, + 347.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1507.0, + 1408.0, + 1507.0, + 1408.0, + 1546.0, + 292.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1537.0, + 941.0, + 1537.0, + 941.0, + 1570.0, + 347.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 1410.0, + 1567.0, + 1410.0, + 1605.0, + 294.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1596.0, + 1175.0, + 1596.0, + 1175.0, + 1630.0, + 347.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1626.0, + 1406.0, + 1626.0, + 1406.0, + 1664.0, + 297.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1654.0, + 1051.0, + 1654.0, + 1051.0, + 1692.0, + 347.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1682.0, + 1408.0, + 1682.0, + 1408.0, + 1727.0, + 291.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1710.0, + 769.0, + 1710.0, + 769.0, + 1750.0, + 344.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1786.0, + 291.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1771.0, + 1251.0, + 1771.0, + 1251.0, + 1807.0, + 342.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 1406.0, + 1804.0, + 1406.0, + 1842.0, + 294.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1832.0, + 652.0, + 1832.0, + 652.0, + 1865.0, + 346.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1863.0, + 1404.0, + 1863.0, + 1404.0, + 1900.0, + 296.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1887.0, + 661.0, + 1887.0, + 661.0, + 1931.0, + 344.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1921.0, + 1408.0, + 1921.0, + 1408.0, + 1957.0, + 292.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1950.0, + 1406.0, + 1950.0, + 1406.0, + 1983.0, + 347.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1971.0, + 532.0, + 1971.0, + 532.0, + 2008.0, + 348.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 254.0, + 1403.0, + 254.0, + 1403.0, + 287.0, + 295.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 284.0, + 1405.0, + 284.0, + 1405.0, + 317.0, + 295.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 311.0, + 883.0, + 311.0, + 883.0, + 348.0, + 295.0, + 348.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 201, + 1408, + 201, + 1408, + 1611, + 293, + 1611 + ], + "score": 0.972 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.778 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.224 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 204.0, + 1404.0, + 204.0, + 1404.0, + 239.0, + 295.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 266.0, + 347.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 256.0, + 914.0, + 256.0, + 914.0, + 291.0, + 344.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 288.0, + 1404.0, + 288.0, + 1404.0, + 322.0, + 295.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 313.0, + 1107.0, + 313.0, + 1107.0, + 351.0, + 343.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 343.0, + 1365.0, + 343.0, + 1365.0, + 382.0, + 292.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 371.0, + 1407.0, + 371.0, + 1407.0, + 415.0, + 290.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 400.0, + 1262.0, + 400.0, + 1262.0, + 437.0, + 343.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 431.0, + 1404.0, + 431.0, + 1404.0, + 470.0, + 294.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 458.0, + 1293.0, + 458.0, + 1293.0, + 497.0, + 344.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 491.0, + 1404.0, + 491.0, + 1404.0, + 525.0, + 295.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 519.0, + 1096.0, + 519.0, + 1096.0, + 549.0, + 347.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 1406.0, + 547.0, + 1406.0, + 582.0, + 295.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 574.0, + 1129.0, + 574.0, + 1129.0, + 604.0, + 347.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 604.0, + 1406.0, + 604.0, + 1406.0, + 639.0, + 294.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 629.0, + 1409.0, + 629.0, + 1409.0, + 673.0, + 294.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 659.0, + 990.0, + 659.0, + 990.0, + 698.0, + 344.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 684.0, + 1411.0, + 684.0, + 1411.0, + 731.0, + 289.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 717.0, + 537.0, + 717.0, + 537.0, + 747.0, + 346.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 746.0, + 1409.0, + 746.0, + 1409.0, + 785.0, + 292.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 777.0, + 1074.0, + 777.0, + 1074.0, + 807.0, + 349.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 802.0, + 1159.0, + 802.0, + 1159.0, + 842.0, + 292.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 830.0, + 1409.0, + 830.0, + 1409.0, + 875.0, + 290.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 864.0, + 627.0, + 864.0, + 627.0, + 893.0, + 347.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 893.0, + 1331.0, + 893.0, + 1331.0, + 928.0, + 295.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 1406.0, + 919.0, + 1406.0, + 961.0, + 294.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 950.0, + 634.0, + 950.0, + 634.0, + 985.0, + 347.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 975.0, + 1412.0, + 975.0, + 1412.0, + 1019.0, + 290.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1005.0, + 446.0, + 1005.0, + 446.0, + 1041.0, + 344.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1032.0, + 1409.0, + 1032.0, + 1409.0, + 1074.0, + 294.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1066.0, + 670.0, + 1066.0, + 670.0, + 1096.0, + 346.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1093.0, + 1319.0, + 1093.0, + 1319.0, + 1128.0, + 295.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1123.0, + 1409.0, + 1123.0, + 1409.0, + 1162.0, + 292.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1151.0, + 1407.0, + 1151.0, + 1407.0, + 1186.0, + 346.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1178.0, + 1406.0, + 1178.0, + 1406.0, + 1213.0, + 347.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1203.0, + 1020.0, + 1203.0, + 1020.0, + 1238.0, + 346.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1235.0, + 1404.0, + 1235.0, + 1404.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1262.0, + 808.0, + 1262.0, + 808.0, + 1294.0, + 344.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1288.0, + 1404.0, + 1288.0, + 1404.0, + 1329.0, + 295.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1317.0, + 743.0, + 1317.0, + 743.0, + 1356.0, + 346.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1345.0, + 1409.0, + 1345.0, + 1409.0, + 1387.0, + 290.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1373.0, + 447.0, + 1373.0, + 447.0, + 1409.0, + 344.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 1406.0, + 1406.0, + 1406.0, + 1441.0, + 294.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1433.0, + 1409.0, + 1433.0, + 1409.0, + 1468.0, + 347.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1456.0, + 806.0, + 1456.0, + 806.0, + 1493.0, + 346.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1485.0, + 1404.0, + 1485.0, + 1404.0, + 1527.0, + 292.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1516.0, + 813.0, + 1516.0, + 813.0, + 1551.0, + 347.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1546.0, + 1404.0, + 1546.0, + 1404.0, + 1581.0, + 295.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1573.0, + 964.0, + 1573.0, + 964.0, + 1607.0, + 346.0, + 1607.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/SkxSv6VFvS/SkxSv6VFvS.md b/parse/train/SkxSv6VFvS/SkxSv6VFvS.md new file mode 100644 index 0000000000000000000000000000000000000000..b4c55e229b087c602d87ae00101518b63a270a42 --- /dev/null +++ b/parse/train/SkxSv6VFvS/SkxSv6VFvS.md @@ -0,0 +1,343 @@ +# DEFORMABLE KERNELS: ADAPTING EFFECTIVE RECEPTIVE FIELDS FOR OBJECT DEFORMATION + +Hang $\mathbf { G a o ^ { 1 , 3 * } } ,$ Xizhou $\mathbf { Z } \mathbf { h } \mathbf { u } ^ { 2 , 3 * }$ , Steve $\mathbf { L i n ^ { 3 } }$ , Jifeng Dai3 +1UC Berkeley 2University of Science and Technology of China 3Microsoft Research Asia +hangg@eecs.berkeley.edu, ezra0408@mail.ustc.edu.cn +{stevelin,jifdai}@microsoft.com +http://people.eecs.berkeley.edu/˜hangg/deformable-kernels/ + +# ABSTRACT + +Convolutional networks are not aware of an object’s geometric variations, which leads to inefficient utilization of model and data capacity. To overcome this issue, recent works on deformation modeling seek to spatially reconfigure the data towards a common arrangement such that semantic recognition suffers less from deformation. This is typically done by augmenting static operators with learned free-form sampling grids in the image space, dynamically tuned to the data and task for adapting the receptive field. Yet adapting the receptive field does not quite reach the actual goal – what really matters to the network is the effective receptive field (ERF), which reflects how much each pixel contributes. It is thus natural to design other approaches to adapt the ERF directly during runtime. + +In this work, we instantiate one possible solution as Deformable Kernels (DKs), a family of novel and generic convolutional operators for handling object deformations by directly adapting the ERF while leaving the receptive field untouched. At the heart of our method is the ability to resample the original kernel space towards recovering the deformation of objects. This approach is justified with theoretical insights that the ERF is strictly determined by data sampling locations and kernel values. We implement DKs as generic drop-in replacements of rigid kernels and conduct a series of empirical studies whose results conform with our theories. Over several tasks and standard base models, our approach compares favorably against prior works that adapt during runtime. In addition, further experiments suggest a working mechanism orthogonal and complementary to previous works. + +# 1 INTRODUCTION + +The rich diversity of object appearance in images arises from variations in object semantics and deformation. Semantics describe the high-level abstraction of what we perceive, and deformation defines the geometric transformation tied to specific data (Gibson, 1950). Humans are remarkably adept at making abstractions of the world (Hudson & Manning, 2019); we see in raw visual signals, abstract semantics away from deformation, and form concepts. + +Interestingly, modern convolutional networks follow an analogous process by making abstractions through local connectivity and weight sharing (Zhang, 2019). However, such a mechanism is an inefficient one, as the emergent representations encode semantics and deformation together, instead of as disjoint notions. Though a convolution responds accordingly to each input, how it responds is primarily programmed by its rigid kernels, as in Figure 1(a, b). In effect, this consumes large model capacity and data modes (Shelhamer et al., 2019). + +We argue that the awareness of deformations emerges from adaptivity – the ability to adapt at runtime (Kanazawa et al., 2016; Jia et al., 2016; Li et al., 2019). Modeling of geometric transformations has been a constant pursuit for vision researchers over decades (Lowe et al., 1999; Lazebnik et al., 2006; Jaderberg et al., 2015; Dai et al., 2017). A basic idea is to spatially recompose data towards a common mode such that semantic recognition suffers less from deformation. A recent work that is representative of this direction is Deformable Convolution (Dai et al., 2017; Zhu et al., 2019). As shown in Figure 1(c), it augments the convolutions with free-form sampling grids in the data space. It is previously justified as adapting receptive field, or what we phrase as the “theoretical receptive field”, that defines which input pixels can contribute to the final output. However, theoretical receptive field does not measure how much impact an input pixel actually has. On the other hand, Luo et al. (2016) propose to measure the effective receptive field (ERF), i.e. the partial derivative of the output with respect to the input data, to quantify the exact contribution of each raw pixel to the convolution. Since adapting the theoretical receptive field is not the goal but a means to adapt the ERF, why not directly tune the ERF to specific data and tasks at runtime? + +![](images/a917c7f3a2bc01e2dd8b2cc933d94663ffbda1043f70c227f8d800fbf1704a7e.jpg) +Figure 1: Adaptation for deformation. We show how different $3 \times 3$ convolutions interact with deformations of two images. Kernel spaces are visualized as flat 2D Gaussians. Each “ $\cdot + \overrightarrow { \mathbf { \Gamma } }$ indicates a computation between a pixel and a kernel value sampled from the data and kernel space. Their colors represent corresponding kernel values. (a, b) Rigid kernels cannot adapt to specific deformations, thus consuming large model and data capacity. (c) Deformable Convolutions (Dai et al., 2017) reconfigure data towards common arrangement to counter the effects of geometric deformation. (d) Our Deformable Kernels (DKs) instead resample kernels and, in effect, adapt kernel spaces while leaving the data untouched. Note that (b) and (c) share kernel values but sample different data locations, while (b) and (d) share data locations but sample different kernel values. + +Toward this end, we introduce Deformable Kernels (DKs), a family of novel and generic convolutional operators for deformation modeling. We aim to augment rigid kernels with the expressiveness to directly interact with the ERF of the computation during inference. Illustrated in Figure 1(d), DKs learn free-form offsets on kernel coordinates to deform the original kernel space towards specific data modality, rather than recomposing data. This can directly adapt ERF while leaving receptive field untouched. The design of DKs that is agnostic to data coordinates naturally leads to two variants – the global DK and the local DK, which behave differently in practice as we later investigate. We justify our approach with theoretical results which show that ERF is strictly determined by data sampling locations and kernel values. Used as a generic drop-in replacement of rigid kernels, DKs achieve empirical results coherent with our developed theory. Concretely, we evaluate our operator with standard base models on image classification and object detection. DKs perform favorably against prior works that adapt during runtime. With both quantitative and qualitative analysis, we further show that DKs can work orthogonally and complementarily with previous techniques. + +# 2 RELATED WORKS + +We distinguish our work within the context of deformation modeling as our goal, and dynamic inference as our means. + +Deformation Modeling: We refer to deformation modeling as learning geometric transformations in 2D image space without regard to 3D. One angle to attack deformation modeling is to craft certain geometric invariances into networks. However, this usually requires designs specific to certain kinds of deformation, such as shift, rotation, reflection and scaling (Sifre & Mallat, 2013; Bruna & Mallat, 2013; Kanazawa et al., 2016; Cohen & Welling, 2016; Worrall et al., 2017; Esteves et al., 2018). Another line of work on this topic learns to recompose data by either semi-parameterized or completely free-form sampling in image space: Spatial Transformers (Jaderberg et al., 2015) learns 2D affine transformations, Deep Geometric Matchers (Rocco et al., 2017) learns thin-plate spline transformations, Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019) learns free-form transformations. + +We interpret sampling data space as an effective approach to adapt effective receptive fields (ERF) by directly changing receptive field. At a high-level, our Deformable Kernels (DKs) share intuitions with this line of works for learning geometric transformations, yet are instantiated by learning to sample in kernel space which directly adapt ERF while leaving theoretical receptive fields untouched. While kernel space sampling is also studied in Deformable Filter (Xiong et al., 2019) and KPConv (Thomas et al., 2019), but in their contexts, sampling grids are computed from input point clouds rather than learned from data corpora. + +Dynamic Inference: Dynamic inference adapts the model or individual operators to the observed data. The computation of our approach differs from self-attention (Vaswani et al., 2017; Wang et al., 2018) in which linear or convolution modules are augmented with subsequent queries that extract from the same input. We consider our closest related works in terms of implementation as those approaches that adapt convolutional kernels at run time. It includes but is not limited to Dynamic Filters (Jia et al., 2016), Selective Kernels (Li et al., 2019) and Conditional Convolutions (Yang et al., 2019). All of these approaches can learn and infer customized kernel spaces with respect to the data, but are either less inefficient or are loosely formulated. Dynamic Filters generate new filters from scratch, while Conditional Convolutions extend this idea to linear combinations of a set of synthesized filters. Selective Kernels are, on the other hand, comparably lightweight, but aggregating activations from kernels of different size is not as compact as directly sampling the original kernel space. Another line of works contemporary to ours (Shelhamer et al., 2019; Wang et al., 2019) is to compose free-form filters with structured Gaussian filters, which essentially transforms kernel spaces by data. Our DKs also differ from these works with the emphasize of direct adaptation the ERF rather than the theoretical receptive field. As mentioned previously, the true goal should be to adapt the ERF, and to our knowledge, our work is the first to study dynamic inference of ERFs. + +# 3 APPROACH + +We start by covering preliminaries on convolutions, including the definition of effective receptive field (ERF). We then formulate a theoretical framework for analyzing ERFs, and thus motivate our Deformable Kernels (DKs). We finally elaborate different DK variants within such a framework. Our analysis suggests compatibility between DKs and the prior work. + +# 3.1 A DIVE INTO CONVOLUTIONS + +2D Convolution: Let us first consider an input image $\pmb { I } \in \mathbb { R } ^ { D \times D }$ . By convolving it with a kernel $\pmb { W } \in \mathbb { R } ^ { K \times K }$ of stride 1, we have an output image $o$ whose pixel values at each coordinate $j \in \mathbb R ^ { 2 }$ can be expressed as + +$$ +O _ { j } = \sum _ { k \in \mathcal { K } } I _ { j + k } W _ { k } , +$$ + +by enumerating discrete kernel positions $\boldsymbol { k }$ within the support $\mathcal { K } = [ - K / 2 , K / 2 ] ^ { 2 } \cap \mathbb { Z }$ . This defines a rigid grid for sampling data and kernels. + +Theoretical Receptive Field: The same kernel $W$ can be stacked repeatedly to form a linear convolutional network with $n$ layers. The theoretical receptive field can then be imagined as the “accumulative coverage” of kernels at each given output unit on the input image by deconvolving back through the network. This property characterizes a set of input fields that could fire percepts onto corresponding output pixels. The size of a theoretical receptive field scales linearly with respect to the network depth $n$ and kernel size $K$ (He et al., 2016). + +Effective Receptive Field: Intuitively, not all pixels within a theoretical receptive field contribute equally. The influence of different fields varies from region to region thanks to the central emphasis of stacked convolutions and also to the non-linearity induced by activations. The notion of effective receptive field (ERF) (Luo et al., 2016) is thus introduced to measure the impact of each input pixel on the output at given locations. It is defined as a partial derivative field of the output with respect to the input data. With the numerical approximations in linear convolution networks, the ERF was previously identified as a Gaussian-like soft attention map over input images whose size grows fractionally with respect to the network depth $n$ and linearly to the kernel size $K$ . Empirical results validate this idea under more complex and realistic cases when networks exploit non-linearities, striding, padding, skip connections, and subsampling. + +# 3.2 ANALYSIS ON EFFECTIVE RECEPTIVE FIELDS + +We aim to revisit and complement the previous analysis on ERFs by Luo et al. (2016). While the previous analysis concentrates on studying the expectation of an ERF, i.e., when network depth $n$ approaches infinity or all kernels are randomly distributed without learning in general, our analysis focuses on how we can perturb the computation such that the change in ERF is predictable, given an input and a set of kernel spaces. + +We start our analysis by considering a linear convolutional network, without any unit activations, as defined in Section 3.1. For consistency, superscripts are introduced to image $\pmb { I }$ , kernel $W$ , and subscripts to kernel positions $\boldsymbol { k }$ to denote the index $s \in [ 1 , n ]$ of each layer. Formally, given an input image $\pmb { I } ^ { ( 0 ) }$ and a set of $K \times K$ kernels $\{ W ^ { ( s ) } \} _ { s = 1 } ^ { n }$ of stride 1, we can roll out the final output ${ \cal O } \equiv { \cal I } ^ { ( n ) }$ by unfolding Equation 1 as + +$$ +\begin{array} { l } { { { \cal I } _ { j } ^ { ( n ) } = \displaystyle \sum _ { k _ { n } \in { \cal K } } { \cal I } _ { j + k _ { n } } ^ { ( n - 1 ) } { \cal W } _ { k _ { n } } ^ { ( n ) } = \displaystyle \sum _ { ( k _ { n - 1 } , k _ { n } ) \in { \cal K } ^ { 2 } \atop { } } { \cal I } _ { j + k _ { n } + k _ { n - 1 } } ^ { ( n - 2 ) } { \cal W } _ { k _ { n } } ^ { ( n ) } { \cal W } _ { k _ { n - 1 } } ^ { ( n - 1 ) } = \cdots } } \\ { { = \displaystyle \sum _ { ( k _ { 1 } , k _ { 2 } , \ldots , k _ { n } ) \in { \cal K } ^ { n } } \left( { \cal I } _ { j + \sum _ { s = 1 } ^ { n } k _ { s } } ^ { ( 0 ) } \cdot \prod _ { s = 1 } ^ { n } { \cal W } _ { k _ { s } } ^ { ( s ) } \right) . } } \end{array} +$$ + +By definition1, the effective receptive field value $\mathcal { R } ^ { ( n ) } ( i ; j ) \equiv \partial I _ { j } ^ { ( n ) } / \partial I _ { i } ^ { ( 0 ) }$ of output coordinate $j$ that takes input coordinate $_ i$ can be computed by + +$$ +\mathcal { R } ^ { ( n ) } ( i ; j ) = \sum _ { ( k _ { 1 } , k _ { 2 } , \ldots , k _ { n } ) \in K ^ { n } } \left( \mathbb { 1 } \left[ j + \sum _ { s = 1 } ^ { n } k _ { s } = i \right] \cdot \prod _ { s = 1 } ^ { n } W _ { k _ { s } } ^ { ( s ) } \right) , +$$ + +where $\mathbb { 1 } [ \cdot ]$ denotes the indicator function. This result indicates that ERF is related only to the data sampling location $j$ , kernel sampling location $\boldsymbol { k }$ , and kernel matrices $\{ W ^ { ( s ) } \}$ . + +If we replace the $m ^ { \mathrm { t h } }$ kernel $W ^ { ( m ) }$ with a $1 \times 1$ kernel of a single parameter $W _ { \tilde { \boldsymbol { k } } _ { m } } ^ { ( m ) }$ sampled from it, the value of ERF becomes to + +$$ +\mathcal { R } ^ { ( n ) } ( i ; j , \tilde { k } _ { m } ) = \sum _ { ( k _ { 1 } , \dots , k _ { m - 1 } , k _ { m + 1 } , \dots , k _ { n } ) \in K ^ { n - 1 } } \left( \mathbb { 1 } \left[ j + \sum _ { s \in \mathbb { S } } k _ { s } = i \right] \cdot \prod _ { s \in \mathbb { S } } W _ { k _ { s } } ^ { ( s ) } \cdot W _ { \tilde { k } _ { m } } ^ { ( m ) } \right) , +$$ + +where $\mathbb { S } = [ 1 , n ] \backslash \{ m \}$ . Since a $K \times K$ kernel can be deemed as a composition of $K ^ { 2 } 1 \times 1$ kernels distributed on a square grid, Equation 3 can thus be reformulated as + +$$ +\mathcal { R } ^ { ( n ) } ( i ; j ) = \sum _ { k _ { m } \in \mathcal { K } } \mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } ) . +$$ + +For the case of complex non-linearities, where we here consider post $\mathrm { R e L U } ^ { 2 }$ activations in Equation 1, + +$$ +O _ { j } = \operatorname* { m a x } ( \sum _ { k \in \mathcal { K } } I _ { j + k } W _ { k } , 0 ) . +$$ + +We can follow a similar analysis and derive corresponding ERF as + +$$ +\begin{array} { r l } & { \mathcal { R } ^ { ' ( n ) } ( i ; j , \tilde { k } _ { m } ) = \displaystyle \sum _ { ( k _ { 1 } , \cdots , k _ { m - 1 } , k _ { m + 1 } , \cdots , k _ { n } ) \in K ^ { n - 1 } } \left( \mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \cdots , k _ { n } , \tilde { k } _ { m } ) \cdot \prod _ { s \in \mathbb { S } } W _ { \tilde { k } _ { s } } ^ { ( s ) } \cdot W _ { \tilde { k } _ { m } } ^ { m } \right) } \\ & { \mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \cdots , k _ { n } , \tilde { k } _ { m } ) = \mathbb { 1 } \big [ j + \displaystyle \sum _ { s \in \mathbb { S } } k _ { s } = i \big ] \prod _ { s \in \mathbb { S } } \mathbb { 1 } \big [ \displaystyle I _ { j } ^ { ( s - 1 ) } W _ { \tilde { k } _ { s } } ^ { ( s ) } > 0 \big ] \mathbb { 1 } \big [ I _ { j } ^ { ( m - 1 ) } W _ { \tilde { k } _ { m } } ^ { ( m ) } > 0 \big ] . } \end{array} +$$ + +Here we can see that the ERF becomes data-dependent due to the coefficient $\mathcal { C }$ , which is tied to input coordinates, kernel sampling locations, and input data $\pmb { I } ^ { ( 0 ) }$ . The more detailed analysis of this coefficient is beyond the scope of this paper. However, it should be noted that this coefficient only “gates” the contribution of the input pixels to the output. So in practice, ERF is “porous” – there are inactive (or gated) pixel units irregularly distributed around the ones that fire. This phenomenon also appeared in previous studies (such as in Luo et al. (2016), Figure 1). The maximal size of an ERF is still controlled by the data sampling location and kernel values as in the linear cases in Equation 5. + +A nice property of Equation 4 and Equation 5 is that all computations are linear, making it compatible with any linear sampling operators for querying kernel values of fractional coordinates. In other words, sampling kernels in effect samples the ERF on the data in the linear case, but also roughly generalizes to non-linear cases as well. This finding motivates our design of Deformable Kernels (DKs) in Section 3.3. + +# 3.3 DEFORMABLE KERNELS + +In the context of Equation 1, we resample the kernel $W$ with a group of learned kernel offsets denoted as $\{ \Delta k \}$ that correspond to each discrete kernel position $\boldsymbol { k }$ . This defines our DK as + +$$ +O _ { j } = \sum _ { k \in \mathcal K } I _ { j + k } W _ { k + \Delta k } , +$$ + +and the value of ERF as + +$$ +\mathcal { R } _ { \mathrm { D K } } ^ { ( n ) } ( i ; j ) = \sum _ { k _ { m } \in { \mathcal { K } } } \mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } + \Delta k _ { m } ) . +$$ + +Note that this operation leads to sub-pixel sampling in the kernel space. In practice, we use bilinear sampling to interpolate within the discrete kernel grid. + +Intuitively, the size (resolution) of the original kernel space can affect sampling performance. Concretely, suppose we want to sample a $3 \times 3$ kernel. DKs do not have any constraint on the size of the original kernel space, which we call the “scope size” of DKs. That said, we can use a $W$ of any size $K ^ { \prime }$ even though the number of sampling locations is fixed as $K ^ { 2 }$ . We can thus exploit large kernels – the largest ones can reach $9 \times 9$ in our experiments with nearly no overhead in computation since bilinear interpolations are extremely lightweight compared to the cost of convolutions. This can also increase the number of learning parameters, which in practice might become intractable if not handled properly. In our implementation, we will exploit depthwise convolutions (Howard et al., 2017) such that increasing scope size induces a negligible amount of extra parameters. + +As previously discussed, sampling the kernel space in effect transforms into sampling the ERF. On the design of locality and spatial granularity of our learned offsets, DK naturally delivers two variants – the global DK and the local DKs, as illustrated in Figure 2. In both operators, we learn a kernel offset generator $\mathcal { G }$ that maps an input patch into a set of kernel offsets that are later applied to rigid kernels. + +In practice, we implement $\mathcal { G } _ { \mathrm { g l o b a l } }$ as a stack of one global average pooling layer, which reduces feature maps into a vector, and another fully-connected layer without non-linearities, which projects the reduced vector into an offset vector of $2 K ^ { 2 }$ dimensions. Then, we apply these offsets to all convolutions for the input image following Equation 7. For local DKs, we implement $\mathcal { G } _ { \mathrm { l o c a l } }$ as an extra convolution that has the same configuration as the target kernel, except that it only has $2 K ^ { 2 }$ output channels. This produces kernel sampling offsets $\{ \Delta k \}$ that are additionally indexed by output locations $j$ . It should be noted that similar designs were also discussed in Jia et al. (2016), in which filters are generated given either an image or individual patches from scratch rather than by resampling. + +![](images/2bb9668aaa37218849f82168db9cfaca57d102ffed1c046e386e2dacf5e7d991.jpg) +Figure 2: Instantiations. We show how DK variants works with an example image that contains a large and a small object. (a) The global DK learns one set of kernel sampling grid given an input image and apply it to all data positions. (b) The local DK adapts kernels for each input patches, and induces better locality for deformation modeling. + +Intuitively, we expect the global DK to adapt kernel space between different images but not within a single input. The local DK can further adpat to specific image patches: for smaller objects, it is better to have shaper kernels and thus denser ERF; for larger objects, flatter kernels can be more beneficial for accumulating a wider ERF. On a high level, local DKs can preserve better locality and have larger freedom to adapt kernel spaces comparing to its global counterpart. We later compare these operators in our experiments. + +# 3.4 LINK WITH DEFORMABLE CONVOLUTIONS + +The core idea of DKs is to learn adaptive offsets to sample the kernel space for modeling deformation, which makes them similar to Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019), at both the conceptual and implementation levels. Here, we distinguish DKs from Deformable Convolutions and show how they can be unified. + +Deformable Convolutions can be reformulated in a general form as + +$$ +O _ { j } = \sum _ { k \in \mathcal { K } } I _ { j + k + \Delta j } W _ { k } , +$$ + +where they aim to learn a group of data offsets $\{ \Delta j \}$ with respect to discrete data positions $j$ . For consistency for analysis, the value of effective receptive field becomes + +$$ +\mathcal { R } _ { \mathrm { D C } } ^ { ( n ) } ( i ; j ) = \sum _ { k _ { m } \in \mathcal { K } } \mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } + \Delta j _ { m } , k _ { m } ) . +$$ + +This approach essentially recomposes the input image towards common modes such that semantic recognition suffers less from deformation. Moreover, according to our previous analysis in Equation 5, sampling data is another way of sampling the ERF. This, to a certain extent, also explains why Deformable Convolutions are well suited for learning deformation-agnostic representations. + +Moreover, we can learn both data and kernel offsets in one convolutional operator. Conceptually, this can be done by merging Equation 7 with Equation 9, which leads to + +$$ +\begin{array} { c } { { \displaystyle { \cal O } _ { j } = \displaystyle \sum _ { k \in { \cal K } } { \cal I } _ { j + k + \Delta j } W _ { k + \Delta k } , } } \\ { { \displaystyle \mathcal { R } _ { \mathrm { D C + D K } } ^ { ( n ) } ( i ; j ) = \displaystyle \sum _ { k _ { m } \in { \cal K } } { \cal R } ^ { ( n ) } ( i ; j + k _ { m } + \Delta j _ { m } , k _ { m } + \Delta k _ { m } ) . } } \end{array} +$$ + +We also investigate this operator in our experiments. Although the two techniques may be viewed as serving a similar purpose, we find the collaboration between Deformable Kernels and Deformable Convolutions to be powerful in practice, suggesting strong compatibility. + +# 4 EXPERIMENTS + +We evaluate our Deformable Kernels (DKs) on image classification using ILSVRC and object detection using the COCO benchmark. Necessary details are provided to reproduce our results, together with descriptions on base models and strong baselines for all experiments and ablations. For taskspecific considerations, we refer to each corresponding section. + +Implementation Details: We implement our operators in PyTorch and CUDA. We exploit depthwise convolutions when designing our operator for better computational efficiency3. We initialize kernel grids to be uniformly distributed within the scope size. For the kernel offset generator, we set its learning rate to be a fraction of that of the main network, which we cross-validate for each base model. We also find it important to clip sampling locations inside the original kernel space, such that $\pmb { k } + \Delta \pmb { k } \in \mathcal { K }$ in Equation 7. + +Base Models: We choose our base models to be ResNet-50 (He et al., 2016) and MobileNetV2 (Sandler et al., 2018), following the standard practice for most vision applications. As mentioned, we exploit depthwise convolution and thus make changes to the ResNet model. Concretely, we define our ResNet-50-DW base model by replacing all $3 \times 3$ convolutions by its depthwise counterpart while doubling the dimension of intermediate channels in all residual blocks. We find it to be a reasonable base model compared to the original ResNet-50, with comparable performance on both tasks. During training, we set the weight decay to be $4 \times 1 0 ^ { - 5 }$ rather than the common $1 0 ^ { - 4 }$ for both models since depthwise models usually underfit rather than overfit (Xie et al., 2017; Howard et al., 2017; Hu et al., 2018). We set the learning rate multiplier of DK operators as $1 0 ^ { - 2 }$ fo r ResNet-50-DW and $1 0 ^ { - 1 }$ for MobileNet-V2 in all of our experiments. + +Strong Baselines: We develop our comparison with two previous works: Conditional Convolutions (Yang et al., 2019) for dynamics inference, and Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019) for deformation modeling. We choose Conditional Convolutions due to similar computation forms – sampling can be deemed as an elementewise “expert voting” mechanism. For fair comparisons, We reimplement and reproduce their results. We also combine our operator with these previous approach to show both quantitative evidence and qualitative insight that our working mechanisms are compatible. + +# 4.1 IMAGE CLASSIFICATION + +We first train our networks on the ImageNet 2012 training set (Deng et al., 2009). We adopt a common experiment protocol for fair comparisons as in Goyal et al. (2017); Loshchilov & Hutter (2017). For more details, please refer to our supplement. + +We first ablate the scope size of kernels for our DKs and study how it can affect model performance using ResNet-50-DW. As shown in Table 1, our DKs are sensitive to the choice of the scope size. We shown that when only applied to $3 \times 3$ convolutions inside residual bottlenecks, local DKs induce a $+ 0 . 7$ performance gain within the original scope. By further enlarging the scope size, performance increases yet quickly plateaus at scope $4 \times 4$ , yielding largest $+ 1 . 4$ gain for top-1 accuracy. Our speculation is that, although increasing scope size theoretically means better interpolation, it also makes the optimization space exponentially larger for each convolutional layer. And since number of entries for updating is fixed, this also leads to relatively sparse gradient flows. In principle, we set default scope size at $4 \times 4$ for our DKs. + +We next move on and ablate our designs by comparing the global DK with the local DK, shown in the table. Both operators helps while the local variants consistently performs better than their global counterparts, bringing a $+ 0 . 5$ gap on both base models. We also study the effect of using more DKs in the models – the $1 \times 1$ convolutions are replaced by global $\mathrm { D K } \dot { \mathrm { s } } ^ { 4 }$ with scope $2 \times 2$ . Note that all $1 \times 1$ convolutions are not depthwise, and therefore this operation induces nearly 4 times of parameters. We refer their results only for ablation and show that adding more DKs still helps – especially for MobileNet-V2 since it is under-parameterized. This finding also holds for previous models (Yang et al., 2019) as well. + +Table 1: Ablations of scope size and different instantiations of DK for image classification. Using proper scope size, and more DK layers boosts performance. Modeling individual offset kernel grid for each data entries is also beneficial. + +
Backbone1×1Deformable Kernels3×3Deformable Kernelstop1 (%)#P (M)GFLOPs
ResNet-50w/ow/o76.725.63.86
ResNet-50-DWw/ow/o76.323.73.82
ResNet-50-DWw/olocal, scope size 3×377.424.94.32
local, scope size 4×478.125.04.32
local, scope size 5×577.825.04.32
local, scope size 9×977.425.44.32
ResNet-50-DWw/oglobal, scope size 4×477.623.93.82
global,scope size 2×2global, scope size 4×477.980.14.09
w/olocal, scope size 4×478.125.04.32
global, scope size 2×2local, scope size 4×478.581.24.60
MobileNet-V2w/ow/o71.93.50.31
MobileNet-V2w/oglobal, scope size 4×473.63.70.31
global, scope size 2×2global, scope size 4×474.510.10.34
w/olocal, scope size 4×474.14.70.73
global, scope size 2×2local, scope size 4×474.811.10.76
+ +Table 2: Comparisons to strong baselines for image classification DKs perform comparably or superiorly to previous methods. Further combinations yield consistent gain, suggesting orthogonal and compatible working mechanisms. + +
Backbone1×1Deformable Kernels3×3DeformableKernelstop1 (%)#P (M)GFLOPs
ResNet-50-DWw/olocal, scope size 4×478.125.04.32
ResNet-50-DWw/ow/o77.642.57.13
with SCC ResNet-50-DWw/0local, scope size 4×478.943.77.61
w/o78.024.84.10
with DCNlocal, scope size 4×479.026.14.60
MobileNet-V2 MobileNet-V2w/olocal, scope size 4×474.14.70.73
with SCCw/ow/o74.319.02.19
local, scope size 4×475.519.72.48
MobileNet-V2 with DCNw/0w/o73.24.60.52
local, scope size 4×474.45.80.93
+ +We further compare and combine DKs with Conditional Convolutions and Deformable Convolutions. Results are recorded in Table 2. We can see that DKs perform comparably on ResNet-V2 and compare favorably on MobileNet-V2 – improve $+ 0 . 9$ from Deformable Convolutions and achieve comparable results with less than a quarter number of parameters compared to Conditional Convolutions. Remarkably, we also show that if combined together, even larger performance gains are in reach. We see consistent boost in top-1 accuracy compared to strong baselines: $+ 1 . 3 / + 1 . 0$ on ResNet-50-DW, and $+ 1 . 2 / + 1 . 2$ on MobileNet-V2. These gaps are bigger than those from our own ablation, suggesting the working mechanisms across the operators to be orthogonal and compatible. + +# 4.2 OBJECT DETECTION + +We examine DKs on the COCO benchmark (Lin et al., 2014). For all experiments, we use Faster R-CNN (Ren et al., 2015) with FPN (Lin et al., 2017) as the base detector, plugging in the backbones we previously trained on ImageNet. For MobileNet-V2, we last feature maps of the each resolution for FPN post aggregation. Following the standard protocol, training and evaluation are performed on the $1 2 0 \mathrm { k }$ images in the train-val split and the 20k images in the test-dev split, respectively. For evaluation, we measure the standard mean average precision (mAP) and shattered scores for small, medium and large objects. + +Table 3 and Table 4 follow the same style of analysis as in image classification. While the baseline methods of ResNet achieve $3 6 . 6 \ \mathrm { m A P } ,$ indicating a strong baseline detector, applying local DKs brings a $+ 1 . 2 \mathrm { m A P }$ improvement when replacing 3x3 rigid kernels alone and a $+ 1 . 8$ mAP improvement when replacing both 1x1 and 3x3 rigid kernels. This trend magnifies on MobileNet-v2 models, where we see an improvement of $+ 1 . 6$ mAP and $+ 2 . 4 \ \mathrm { m A P } ,$ , respectively. Results also confirm the effectiveness of local DKs against global DKs, which is again in line with our expectation that local DKs can model locality better. + +Table 3: Ablations for object detection. Consistent results with image classification. + +
Backbone1×1Deformable Kernels3×3Deformable KernelsmAPmAPsmAPMmAPL
ResNet-50-DWw/ow/o36.622.139.946.6
ResNet-50-DWw/oglobal, scope size 4×436.722.640.246.9
global,scope size 2×2global, scope size 4×437.123.140.646.6
w/olocal, scope size 4×437.823.441.648.2
global, scope size 2×2local, scope size 4×438.423.442.049.4
MobileNet-V2w/ow/o31.318.633.740.4
MobileNet-V2w/oglobal, scope size 4×432.519.635.841.9
global,scope size 2×2global, scope size 4×432.919.435.542.8
w/0local, scope size 4×432.919.536.042.5
global, scope size 2×2local, scope size 4×433.720.236.744.0
+ +Table 4: Comparisons to strong baselines for object detection DKs perform fall short to Deformable Convolution, but combination still improves performance. + +
Backbone1×1Deformable Kernels3×3DeformableKernelsmAPmAPsmAPMmAPL
ResNet-50-DWglobal, scope size 2×2local, scope size 4×438.423.442.049.4
ResNet-50-DWw/ow/o36.322.139.347.0
with SCC ResNet-50-DWw/olocal, scope size 4×438.023.441.948.4
w/o39.924.043.452.6
with DCNlocal,scope size 4×440.624.643.953.3
MobileNet-V2 MobileNet-V2global, scope size 2×2local, scope size 4×4 w/o33.720.236.744.0
with SCCw/olocal, scope size 4×433.220.535.643.3
34.320.237.344.7
MobileNet-V2 with DCNw/ow/o local, scope size 4×434.4 35.620.5 20.637.0 38.544.7 47.3
+ +For the comparisons with strong baselines, an interesting phenomenon worth noting is that though DKs perform better than Deformable Convolutions on image classification, they fall noticeably short for object detection measured by mAP. We speculate that even though both techniques can adapt ERF in theory (as justified in Section 3.2), directly shifting sampling locations on data is easier to optimize. Yet after combining DKs with previous approaches, we can consistently boost performance for all the methods – $+ 0 . 7 / + 1 . 2$ for Deformable Convolutions on each base models, and $+ 1 . 7 / + 1 . 1$ for Conditional Convolutions. These findings align with the results from image classification. We next investigate what DKs learn and why they are compatible with previous methods in general. + +# 4.3 WHAT DO DEFORMABLE KERNELS LEARN? + +Awareness of Object Scale: Since deformation is hard to quantify, we use object scale as a rough proxy to understand what DKs learn. In Figure 3, we show the t-SNE (Maaten & Hinton, 2008) of learned model dynamics by the last convolutional layers in MobileNet-V2 using Conditional Convolution and our DKs. We validate the finding as claimed by Yang et al. (2019) that the experts of Conditional Convolutions have better correlation with object semantics than their scales (in reference to Figure 6 from their paper). Instead, our DKs learn kernel sampling offsets that strongly correlate to scales rather than semantics. This sheds light on why the two operators are complementary in our previous experiments. + +Adaptation of Effective Receptive Fields: To verify our claim that DK indeed adapts ERFs in practice, we show ERF visualizations on a set of images in which they display different degrees of deformations. We compare the results of rigid kernels, Deformable Convolutions, our DKs, and the combination of the two operators. For all examples, note that the theoretical receptive field covers every pixel in the image but ERFs contain only a central portion of it. Deformable Convolutions and DKs perform similarly in terms of adapting ERFs, but Deformable Convolutions tend to spread out and have sparse responses while DKs tend to concentrate and densely activate within an object region. Combining both operators yields more consistent ERFs that exploit both of their merits. + +![](images/03fe61b3a99a4b4fe54f5e472560a43e878aaca475f9aa9552dbcdad33a82abd.jpg) +Figure 3: Semantics vs. Scales. We show t-SNE results of learned model dynamics using 10 random classes of objects from the COCO test-dev split. Each point represents an object extracted by ground-truth bounding box, whose color either denotes its class label or bounding box scale. The color of an object scale is its normalized area rank discretized by every 10th percentile among all data. Numbers inside parentheses indicate the dimension of learned dynamics before t-SNE. (a) The dynamics of Conditional Convolutions are closer to semantics than to object scales. (b) On the contrary, our DKs learn dynamics that are significantly related to scales rather than semantics. + +![](images/711d1059d1b021301141e7743d64fe5288ae4ee7f13f4809906a3a3dbc32d974.jpg) +Figure 4: Learned Effective Receptive Fields. We show learned ERFs on three images with large, medium, and small objects from the COCO test-dev split. Given each ground-truth bounding box, we visualize the non-zero ERF values of its central point. Theoretical RFs cover the whole image for all three examples and we thus ignore them in our plots. (a) Rigid kernels have strong central effects and a Gaussian-like ERF that cannot deal with object deformation alone. (b) Deformable Convolutions and (c) Deformable Kernels both tune ERFs to data. (d) Combining both operators together enables better modeling of 2D geometric transformation of objects. + +# 5 CONCLUSION + +In this paper, we introduced Deformable Kernels (DKs) to adapt effective receptive fields (ERFs) of convolutional networks for object deformation. We proposed to sample kernel values from the original kernel space. This in effect samples the ERF in linear networks and also roughly generalizes to non-linear cases. We instantiated two variants of DKs and validate our designs, showing connections to previous works. Consistent improvements over them and compatibility with them were found, as illustrated in visualizations. + +# REFERENCES + +Joan Bruna and Stephane Mallat. Invariant scattering convolution networks. ´ TPAMI, 2013. + +Taco Cohen and Max Welling. Group equivariant convolutional networks. In ICML, 2016. + +Jifeng Dai, Haozhi Qi, Yuwen Xiong, Yi Li, Guodong Zhang, Han Hu, and Yichen Wei. Deformable convolutional networks. In CVPR, 2017. + +Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In CVPR, 2009. + +Carlos Esteves, Christine Allen-Blanchette, Xiaowei Zhou, and Kostas Daniilidis. Polar transformer networks. In ICLR, 2018. + +James J Gibson. The perception of the visual world. Houghton Mifflin, 1950. + +Priya Goyal, Piotr Dollar, Ross Girshick, Pieter Noordhuis, Lukasz Wesolowski, Aapo Kyrola, An- ´ drew Tulloch, Yangqing Jia, and Kaiming He. Accurate, large minibatch sgd: Training imagenet in 1 hour. arXiv preprint arXiv:1706.02677, 2017. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 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. In CVPR, 2017. + +Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In CVPR, 2018. + +Drew A Hudson and Christopher D Manning. Learning by abstraction: The neural state machine. arXiv preprint arXiv:1907.03950, 2019. + +Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In NeurIPS, 2015. + +Xu Jia, Bert De Brabandere, Tinne Tuytelaars, and Luc V Gool. Dynamic filter networks. In NeurIPS, 2016. + +Angjoo Kanazawa, Abhishek Sharma, and David W. Jacobs. Locally scale-invariant convolutional neural networks. In NeurIPS Workshop, 2016. + +Svetlana Lazebnik, Cordelia Schmid, and Jean Ponce. Beyond bags of features: Spatial pyramid matching for recognizing natural scene categories. In CVPR, 2006. + +Xiang Li, Wenhai Wang, Xiaolin Hu, and Jian Yang. Selective kernel networks. In CVPR, 2019. + +Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollar, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In ´ ECCV, 2014. + +Tsung-Yi Lin, Piotr Dollar, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie. ´ Feature pyramid networks for object detection. In CVPR, 2017. + +Ilya Loshchilov and Frank Hutter. Sgdr: Stochastic gradient descent with warm restarts. In ICLR, 2017. + +David G Lowe et al. Object recognition from local scale-invariant features. In ICCV, 1999. + +Wenjie Luo, Yujia Li, Raquel Urtasun, and Richard Zemel. Understanding the effective receptive field in deep convolutional neural networks. In NeurIPS, 2016. + +Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of machine learning research, 2008. + +Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. In NeurIPS, 2015. + +Ignacio Rocco, Relja Arandjelovic, and Josef Sivic. Convolutional neural network architecture for geometric matching. In CVPR, 2017. + +Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2: Inverted residuals and linear bottlenecks. In CVPR, 2018. + +Evan Shelhamer, Dequan Wang, and Trevor Darrell. Blurring the line between structure and learning to optimize and adapt receptive fields. arXiv preprint arXiv:1904.11487, 2019. + +Laurent Sifre and Stephane Mallat. Rotation, scaling and deformation invariant scattering for texture ´ discrimination. In CVPR, 2013. + +Hugues Thomas, Charles R Qi, Jean-Emmanuel Deschaud, Beatriz Marcotegui, Franc¸ois Goulette, and Leonidas J Guibas. Kpconv: Flexible and deformable convolution for point clouds. In ICCV, 2019. + +Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017. + +Dequan Wang, Evan Shelhamer, Bruno Olshausen, and Trevor Darrell. Dynamic scale inference by entropy optimization. arXiv preprint arXiv:1908.03182, 2019. + +Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks. In CVPR, 2018. + +Daniel E Worrall, Stephan J Garbin, Daniyar Turmukhambetov, and Gabriel J Brostow. Harmonic networks: Deep translation and rotation equivariance. In CVPR, 2017. + +Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual trans-´ formations for deep neural networks. In CVPR, 2017. + +Yuwen Xiong, Mengye Ren, Renjie Liao, Kelvin Wong, and Raquel Urtasun. Deformable filter convolution for point cloud reasoning. arXiv preprint arXiv:1907.13079, 2019. + +Brandon Yang, Gabriel Bender, Quoc V Le, and Jiquan Ngiam. Soft conditional computation. arXiv preprint arXiv:1904.04971, 2019. + +Richard Zhang. Making convolutional networks shift-invariant again. In ICML, 2019. + +Xizhou Zhu, Han Hu, Stephen Lin, and Jifeng Dai. Deformable convnets v2: More deformable, better results. In CVPR, 2019. + +![](images/5abbb82c034f8a61878e301501e3654d6912395090b816e2237653329513f497.jpg) +Figure 5: Illustration of feed-forwarding through a $\mathbf { 3 \times 3 }$ local Deformable Kernel from a $4 \times 4$ scope. For each input patch, local DK first generates a group of kernel offsets $\{ \Delta k \}$ from input feature patch using the light-weight generator $\mathcal { G }$ (a $3 \times 3$ convolution of rigid kernel). Given the original kernel weights $W$ and the offset group $\{ \Delta k \}$ , DK samples a new set of kernel $W ^ { \prime }$ using a bilinear sampler $\boldsymbol { B }$ . Finally, DK convolves the input feature map and the sampled kernels to complete the whole computation. + +# A COMPUTATION FLOW OF DEFORMABLE KERNELS + +We now cover more details on implementing DKs by elaborating the computation flow of their forward and backward passes. We will focus on the local DK given its superior performance in practice. The extension to global DK implementation is straight-forward. + +# A.1 FORWARD PASS + +In Section 3.3, we introduce a kernel offset generator $\mathcal { G }$ and a bilinear sampler $\boldsymbol { B }$ . Figure 5 illustrates an example of the forward pass. + +Concretely, given a kernel $W$ and a learned group of kernel offsets $\{ \Delta k \}$ on top of a regular 2D grid $\{ k \}$ , we can resample a new kernel $W ^ { \prime }$ by a bilinear operator $\boldsymbol { B }$ as + +$$ +\begin{array} { c } { W ^ { \prime } \equiv W _ { k + \Delta k } = \displaystyle \sum _ { k ^ { \prime } \in K } | \beta ( k + \Delta k , k ^ { \prime } ) W _ { k ^ { \prime } } , } \\ { \displaystyle \mathcal { B } ( k + \Delta k , k ^ { \prime } ) = \operatorname* { m a x } ( 0 , 1 - | k _ { x } + \Delta k _ { x } - k _ { x } ^ { \prime } | ) \cdot \operatorname* { m a x } ( 0 , 1 - | k _ { y } + \Delta k _ { y } - k _ { y } ^ { \prime } | ) . } \end{array} +$$ + +Given this resampled kernel, DK convolves it with the input image just as in normal convolutions using rigid kernels, characterized by Equation 1. + +# A.2 BACKWARD PASS + +The backward pass of local DK consists of three types of gradients: (1) the gradient to the data of the previous layer, (2) the gradient to the full scope kernel of the current layer and (3) the additional gradient to the kernel offset generator of the current layer. The first two types of gradients share same forms of the computation comparing to the normal convolutions. We now cover the computation for the third flow of gradient that directs where to sample kernel values. + +In the context of Equation 7, the partial derivative of a output item $O _ { j }$ w.r.t. $x$ component of a given kernel offset $\Delta k _ { x }$ (similar for its $y$ component $\Delta k _ { y }$ ) can be computed as + +$$ +\frac { \partial O _ { j } } { \partial \Delta k _ { x } } = \sum _ { k } I _ { j + k } \bigg ( \sum _ { k ^ { \prime } } W _ { k ^ { \prime } } \frac { \partial \mathcal { B } ( k + \Delta k , k ^ { \prime } ) } { \partial \Delta k _ { x } } \bigg ) , +$$ + +$$ +\frac { \partial \mathcal { B } ( k + \Delta k , k ^ { \prime } ) } { \partial \Delta k _ { x } } = \operatorname* { m a x } ( 0 , 1 - | k _ { y } + \Delta k _ { y } - k _ { y } ^ { \prime } | ) \cdot \left\{ \begin{array} { l l } { 0 } & { | k _ { x } + \Delta k _ { x } - k _ { x } ^ { \prime } | \ge 1 } \\ { 1 } & { k _ { x } + \Delta k _ { x } < k _ { x } ^ { \prime } } \\ { - 1 } & { k _ { x } + \Delta k _ { x } \ge k _ { x } ^ { \prime } } \end{array} \right. . +$$ + +Table 5: Network architecture of our ResNet-50-DW comparing to the original ResNet-50 Inside the brackets are the general shape of a residual block, including filter sizes and feature dimensionalities. The number of stacked blocks on each stage is presented outside the brackets. $G = 1 2 8 ^ { \prime \prime }$ suggests the depthwise convolution with 128 input channels. Two models have similar numbers of parameters and FLOPs. At the same time, depthwise convolutions facilitate the computation efficiency of our Deformable Kernels. + +
OutputResNet-50ResNet-50-DW
112 × 1127 × 7,64,stride 2
56×563 × 3 max pool, stride 2
56×561×1,643 ×3,641 × 1,256×31 ×1,1283 × 3,128,G = 1281 × 1,256×3
28×281×1,1283 ×3,1281 × 1,512×41 ×1,2563 × 3,256,G = 2561 ×1,512×4
14 ×141 ×1,2563 ×3,2561 × 1,1024×61 ×1,5123 × 3,512,G = 5121 × 1,1024×6
7×71 ×1,5123 ×3,5121 × 1,2048×31 ×1,10243 × 3,1024,G =10241 × 1,2048×3
1×17 × 7 global average pool,1000-d fc, softmax
#P (M)25.623.7
GFLOPs3.863.82
+ +# B NETWORK ARCHITECTURES + +Table 5 shows the comparison between the original ResNet-50 (He et al., 2016) and our modified ResNet-50-DW. The motivation of introducing depthwise convolutions to ResNet is to accelerate the computation of local DKs based on our current implementations. The ResNet-50-DW model has similar model capacity/complexity and performance (see Table 1) compared to its non-depthwise counterpart, making it an ideal base architecture for our experiments. + +On the other hand, in all of our experiments, MobileNet-V2 (Sandler et al., 2018) base model is left untouched. + +# C ADDITIONAL COMPARISON OF EFFECTIVE RECEPTIVE FIELDS + +We here show additional comparison of ERFs when objects have different kinds of deformations in Figure 6. Comparing to baseline, our method can adapt ERFs to be more persistent to object’s semantic rather than its geometric configuration. + +# D ADDITIONAL EXPERIMENT DETAILS + +Image Classification: Similar to Goyal et al. (2017); Loshchilov & Hutter (2017), training is performed by SGD for 90 epochs with momentum 0.9 and batch size 256. We set our learning rate of $1 0 ^ { - 1 }$ so that it linearly warms up from zero within first 5 epochs. A cosine training schedule is applied over the training epochs. We use scale and aspect ratio augmentation with color perturbation as standard data augmentations. We evaluate the performance of trained models on the ImageNet 2012 validation set. The images are resized so that the shorter side is of 256 pixels. We then centrally crop $2 2 4 \times 2 2 4$ windows from the images as input to measure recognition accuracy. + +![](images/fe8c4b789257333e32ac79b42776e417679053ca788bfbae0a2167b18b100042.jpg) +Figure 6: Effective Receptive Field Comparison between rigid kernels and DKs under different kinds of Object Deformation. At each row and from left to right, we show the original image $( 1 3 0 0 \times 8 0 0 )$ , the image rotated by -90 degrees and the image scaled by 1.5 times. Images are cropped and resized for the typesetting purpose. \ No newline at end of file diff --git a/parse/train/SkxSv6VFvS/SkxSv6VFvS_content_list.json b/parse/train/SkxSv6VFvS/SkxSv6VFvS_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..7007b9cf802d288740851862ad14d7508a5d9e41 --- /dev/null +++ b/parse/train/SkxSv6VFvS/SkxSv6VFvS_content_list.json @@ -0,0 +1,1752 @@ +[ + { + "type": "text", + "text": "DEFORMABLE KERNELS: ADAPTING EFFECTIVE RECEPTIVE FIELDS FOR OBJECT DEFORMATION ", + "text_level": 1, + "bbox": [ + 176, + 98, + 821, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Hang $\\mathbf { G a o ^ { 1 , 3 * } } ,$ Xizhou $\\mathbf { Z } \\mathbf { h } \\mathbf { u } ^ { 2 , 3 * }$ , Steve $\\mathbf { L i n ^ { 3 } }$ , Jifeng Dai3 \n1UC Berkeley 2University of Science and Technology of China 3Microsoft Research Asia \nhangg@eecs.berkeley.edu, ezra0408@mail.ustc.edu.cn \n{stevelin,jifdai}@microsoft.com \nhttp://people.eecs.berkeley.edu/˜hangg/deformable-kernels/ ", + "bbox": [ + 184, + 167, + 774, + 241 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 452, + 277, + 544, + 292 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Convolutional networks are not aware of an object’s geometric variations, which leads to inefficient utilization of model and data capacity. To overcome this issue, recent works on deformation modeling seek to spatially reconfigure the data towards a common arrangement such that semantic recognition suffers less from deformation. This is typically done by augmenting static operators with learned free-form sampling grids in the image space, dynamically tuned to the data and task for adapting the receptive field. Yet adapting the receptive field does not quite reach the actual goal – what really matters to the network is the effective receptive field (ERF), which reflects how much each pixel contributes. It is thus natural to design other approaches to adapt the ERF directly during runtime. ", + "bbox": [ + 233, + 309, + 764, + 448 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this work, we instantiate one possible solution as Deformable Kernels (DKs), a family of novel and generic convolutional operators for handling object deformations by directly adapting the ERF while leaving the receptive field untouched. At the heart of our method is the ability to resample the original kernel space towards recovering the deformation of objects. This approach is justified with theoretical insights that the ERF is strictly determined by data sampling locations and kernel values. We implement DKs as generic drop-in replacements of rigid kernels and conduct a series of empirical studies whose results conform with our theories. Over several tasks and standard base models, our approach compares favorably against prior works that adapt during runtime. In addition, further experiments suggest a working mechanism orthogonal and complementary to previous works. ", + "bbox": [ + 233, + 450, + 764, + 603 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 631, + 336, + 647 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The rich diversity of object appearance in images arises from variations in object semantics and deformation. Semantics describe the high-level abstraction of what we perceive, and deformation defines the geometric transformation tied to specific data (Gibson, 1950). Humans are remarkably adept at making abstractions of the world (Hudson & Manning, 2019); we see in raw visual signals, abstract semantics away from deformation, and form concepts. ", + "bbox": [ + 174, + 662, + 823, + 732 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Interestingly, modern convolutional networks follow an analogous process by making abstractions through local connectivity and weight sharing (Zhang, 2019). However, such a mechanism is an inefficient one, as the emergent representations encode semantics and deformation together, instead of as disjoint notions. Though a convolution responds accordingly to each input, how it responds is primarily programmed by its rigid kernels, as in Figure 1(a, b). In effect, this consumes large model capacity and data modes (Shelhamer et al., 2019). ", + "bbox": [ + 174, + 739, + 823, + 823 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We argue that the awareness of deformations emerges from adaptivity – the ability to adapt at runtime (Kanazawa et al., 2016; Jia et al., 2016; Li et al., 2019). Modeling of geometric transformations has been a constant pursuit for vision researchers over decades (Lowe et al., 1999; Lazebnik et al., 2006; Jaderberg et al., 2015; Dai et al., 2017). A basic idea is to spatially recompose data towards a common mode such that semantic recognition suffers less from deformation. A recent work that is representative of this direction is Deformable Convolution (Dai et al., 2017; Zhu et al., 2019). As shown in Figure 1(c), it augments the convolutions with free-form sampling grids in the data space. It is previously justified as adapting receptive field, or what we phrase as the “theoretical receptive field”, that defines which input pixels can contribute to the final output. However, theoretical receptive field does not measure how much impact an input pixel actually has. On the other hand, Luo et al. (2016) propose to measure the effective receptive field (ERF), i.e. the partial derivative of the output with respect to the input data, to quantify the exact contribution of each raw pixel to the convolution. Since adapting the theoretical receptive field is not the goal but a means to adapt the ERF, why not directly tune the ERF to specific data and tasks at runtime? ", + "bbox": [ + 174, + 830, + 823, + 900 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/a917c7f3a2bc01e2dd8b2cc933d94663ffbda1043f70c227f8d800fbf1704a7e.jpg", + "image_caption": [ + "Figure 1: Adaptation for deformation. We show how different $3 \\times 3$ convolutions interact with deformations of two images. Kernel spaces are visualized as flat 2D Gaussians. Each “ $\\cdot + \\overrightarrow { \\mathbf { \\Gamma } }$ indicates a computation between a pixel and a kernel value sampled from the data and kernel space. Their colors represent corresponding kernel values. (a, b) Rigid kernels cannot adapt to specific deformations, thus consuming large model and data capacity. (c) Deformable Convolutions (Dai et al., 2017) reconfigure data towards common arrangement to counter the effects of geometric deformation. (d) Our Deformable Kernels (DKs) instead resample kernels and, in effect, adapt kernel spaces while leaving the data untouched. Note that (b) and (c) share kernel values but sample different data locations, while (b) and (d) share data locations but sample different kernel values. " + ], + "image_footnote": [], + "bbox": [ + 191, + 102, + 808, + 347 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 512, + 825, + 638 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Toward this end, we introduce Deformable Kernels (DKs), a family of novel and generic convolutional operators for deformation modeling. We aim to augment rigid kernels with the expressiveness to directly interact with the ERF of the computation during inference. Illustrated in Figure 1(d), DKs learn free-form offsets on kernel coordinates to deform the original kernel space towards specific data modality, rather than recomposing data. This can directly adapt ERF while leaving receptive field untouched. The design of DKs that is agnostic to data coordinates naturally leads to two variants – the global DK and the local DK, which behave differently in practice as we later investigate. We justify our approach with theoretical results which show that ERF is strictly determined by data sampling locations and kernel values. Used as a generic drop-in replacement of rigid kernels, DKs achieve empirical results coherent with our developed theory. Concretely, we evaluate our operator with standard base models on image classification and object detection. DKs perform favorably against prior works that adapt during runtime. With both quantitative and qualitative analysis, we further show that DKs can work orthogonally and complementarily with previous techniques. ", + "bbox": [ + 173, + 645, + 825, + 825 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORKS ", + "text_level": 1, + "bbox": [ + 176, + 857, + 354, + 873 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We distinguish our work within the context of deformation modeling as our goal, and dynamic inference as our means. ", + "bbox": [ + 174, + 895, + 823, + 922 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Deformation Modeling: We refer to deformation modeling as learning geometric transformations in 2D image space without regard to 3D. One angle to attack deformation modeling is to craft certain geometric invariances into networks. However, this usually requires designs specific to certain kinds of deformation, such as shift, rotation, reflection and scaling (Sifre & Mallat, 2013; Bruna & Mallat, 2013; Kanazawa et al., 2016; Cohen & Welling, 2016; Worrall et al., 2017; Esteves et al., 2018). Another line of work on this topic learns to recompose data by either semi-parameterized or completely free-form sampling in image space: Spatial Transformers (Jaderberg et al., 2015) learns 2D affine transformations, Deep Geometric Matchers (Rocco et al., 2017) learns thin-plate spline transformations, Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019) learns free-form transformations. ", + "bbox": [ + 173, + 103, + 825, + 242 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We interpret sampling data space as an effective approach to adapt effective receptive fields (ERF) by directly changing receptive field. At a high-level, our Deformable Kernels (DKs) share intuitions with this line of works for learning geometric transformations, yet are instantiated by learning to sample in kernel space which directly adapt ERF while leaving theoretical receptive fields untouched. While kernel space sampling is also studied in Deformable Filter (Xiong et al., 2019) and KPConv (Thomas et al., 2019), but in their contexts, sampling grids are computed from input point clouds rather than learned from data corpora. ", + "bbox": [ + 174, + 250, + 825, + 347 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Dynamic Inference: Dynamic inference adapts the model or individual operators to the observed data. The computation of our approach differs from self-attention (Vaswani et al., 2017; Wang et al., 2018) in which linear or convolution modules are augmented with subsequent queries that extract from the same input. We consider our closest related works in terms of implementation as those approaches that adapt convolutional kernels at run time. It includes but is not limited to Dynamic Filters (Jia et al., 2016), Selective Kernels (Li et al., 2019) and Conditional Convolutions (Yang et al., 2019). All of these approaches can learn and infer customized kernel spaces with respect to the data, but are either less inefficient or are loosely formulated. Dynamic Filters generate new filters from scratch, while Conditional Convolutions extend this idea to linear combinations of a set of synthesized filters. Selective Kernels are, on the other hand, comparably lightweight, but aggregating activations from kernels of different size is not as compact as directly sampling the original kernel space. Another line of works contemporary to ours (Shelhamer et al., 2019; Wang et al., 2019) is to compose free-form filters with structured Gaussian filters, which essentially transforms kernel spaces by data. Our DKs also differ from these works with the emphasize of direct adaptation the ERF rather than the theoretical receptive field. As mentioned previously, the true goal should be to adapt the ERF, and to our knowledge, our work is the first to study dynamic inference of ERFs. ", + "bbox": [ + 174, + 354, + 825, + 575 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 APPROACH", + "text_level": 1, + "bbox": [ + 176, + 597, + 297, + 613 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We start by covering preliminaries on convolutions, including the definition of effective receptive field (ERF). We then formulate a theoretical framework for analyzing ERFs, and thus motivate our Deformable Kernels (DKs). We finally elaborate different DK variants within such a framework. Our analysis suggests compatibility between DKs and the prior work. ", + "bbox": [ + 174, + 628, + 825, + 684 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 A DIVE INTO CONVOLUTIONS ", + "text_level": 1, + "bbox": [ + 176, + 702, + 423, + 717 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2D Convolution: Let us first consider an input image $\\pmb { I } \\in \\mathbb { R } ^ { D \\times D }$ . By convolving it with a kernel $\\pmb { W } \\in \\mathbb { R } ^ { K \\times K }$ of stride 1, we have an output image $o$ whose pixel values at each coordinate $j \\in \\mathbb R ^ { 2 }$ can be expressed as ", + "bbox": [ + 173, + 727, + 825, + 770 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/785106a0ed31fb4225fadcd0ab4bb64dbc2b62be4ec704e70c987b4c0793f814.jpg", + "text": "$$\nO _ { j } = \\sum _ { k \\in \\mathcal { K } } I _ { j + k } W _ { k } ,\n$$", + "text_format": "latex", + "bbox": [ + 434, + 768, + 563, + 800 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "by enumerating discrete kernel positions $\\boldsymbol { k }$ within the support $\\mathcal { K } = [ - K / 2 , K / 2 ] ^ { 2 } \\cap \\mathbb { Z }$ . This defines a rigid grid for sampling data and kernels. ", + "bbox": [ + 173, + 804, + 823, + 833 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Theoretical Receptive Field: The same kernel $W$ can be stacked repeatedly to form a linear convolutional network with $n$ layers. The theoretical receptive field can then be imagined as the “accumulative coverage” of kernels at each given output unit on the input image by deconvolving back through the network. This property characterizes a set of input fields that could fire percepts onto corresponding output pixels. The size of a theoretical receptive field scales linearly with respect to the network depth $n$ and kernel size $K$ (He et al., 2016). ", + "bbox": [ + 174, + 839, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Effective Receptive Field: Intuitively, not all pixels within a theoretical receptive field contribute equally. The influence of different fields varies from region to region thanks to the central emphasis of stacked convolutions and also to the non-linearity induced by activations. The notion of effective receptive field (ERF) (Luo et al., 2016) is thus introduced to measure the impact of each input pixel on the output at given locations. It is defined as a partial derivative field of the output with respect to the input data. With the numerical approximations in linear convolution networks, the ERF was previously identified as a Gaussian-like soft attention map over input images whose size grows fractionally with respect to the network depth $n$ and linearly to the kernel size $K$ . Empirical results validate this idea under more complex and realistic cases when networks exploit non-linearities, striding, padding, skip connections, and subsampling. ", + "bbox": [ + 173, + 103, + 825, + 242 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 ANALYSIS ON EFFECTIVE RECEPTIVE FIELDS ", + "text_level": 1, + "bbox": [ + 174, + 258, + 531, + 273 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We aim to revisit and complement the previous analysis on ERFs by Luo et al. (2016). While the previous analysis concentrates on studying the expectation of an ERF, i.e., when network depth $n$ approaches infinity or all kernels are randomly distributed without learning in general, our analysis focuses on how we can perturb the computation such that the change in ERF is predictable, given an input and a set of kernel spaces. ", + "bbox": [ + 174, + 285, + 825, + 356 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We start our analysis by considering a linear convolutional network, without any unit activations, as defined in Section 3.1. For consistency, superscripts are introduced to image $\\pmb { I }$ , kernel $W$ , and subscripts to kernel positions $\\boldsymbol { k }$ to denote the index $s \\in [ 1 , n ]$ of each layer. Formally, given an input image $\\pmb { I } ^ { ( 0 ) }$ and a set of $K \\times K$ kernels $\\{ W ^ { ( s ) } \\} _ { s = 1 } ^ { n }$ of stride 1, we can roll out the final output ${ \\cal O } \\equiv { \\cal I } ^ { ( n ) }$ by unfolding Equation 1 as ", + "bbox": [ + 176, + 361, + 823, + 435 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/4d0f6925d3ec949e4c211ec9d9a44a37fd7e28b11787c611b96446eb3b2375cd.jpg", + "text": "$$\n\\begin{array} { l } { { { \\cal I } _ { j } ^ { ( n ) } = \\displaystyle \\sum _ { k _ { n } \\in { \\cal K } } { \\cal I } _ { j + k _ { n } } ^ { ( n - 1 ) } { \\cal W } _ { k _ { n } } ^ { ( n ) } = \\displaystyle \\sum _ { ( k _ { n - 1 } , k _ { n } ) \\in { \\cal K } ^ { 2 } \\atop { } } { \\cal I } _ { j + k _ { n } + k _ { n - 1 } } ^ { ( n - 2 ) } { \\cal W } _ { k _ { n } } ^ { ( n ) } { \\cal W } _ { k _ { n - 1 } } ^ { ( n - 1 ) } = \\cdots } } \\\\ { { = \\displaystyle \\sum _ { ( k _ { 1 } , k _ { 2 } , \\ldots , k _ { n } ) \\in { \\cal K } ^ { n } } \\left( { \\cal I } _ { j + \\sum _ { s = 1 } ^ { n } k _ { s } } ^ { ( 0 ) } \\cdot \\prod _ { s = 1 } ^ { n } { \\cal W } _ { k _ { s } } ^ { ( s ) } \\right) . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 261, + 438, + 735, + 520 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "By definition1, the effective receptive field value $\\mathcal { R } ^ { ( n ) } ( i ; j ) \\equiv \\partial I _ { j } ^ { ( n ) } / \\partial I _ { i } ^ { ( 0 ) }$ of output coordinate $j$ that takes input coordinate $_ i$ can be computed by ", + "bbox": [ + 173, + 523, + 823, + 558 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/ec2d0d9d897f7d295a2405647b593cf7b72e33ca535ed390b0fef2039da745c3.jpg", + "text": "$$\n\\mathcal { R } ^ { ( n ) } ( i ; j ) = \\sum _ { ( k _ { 1 } , k _ { 2 } , \\ldots , k _ { n } ) \\in K ^ { n } } \\left( \\mathbb { 1 } \\left[ j + \\sum _ { s = 1 } ^ { n } k _ { s } = i \\right] \\cdot \\prod _ { s = 1 } ^ { n } W _ { k _ { s } } ^ { ( s ) } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 295, + 560, + 700, + 606 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathbb { 1 } [ \\cdot ]$ denotes the indicator function. This result indicates that ERF is related only to the data sampling location $j$ , kernel sampling location $\\boldsymbol { k }$ , and kernel matrices $\\{ W ^ { ( s ) } \\}$ . ", + "bbox": [ + 173, + 609, + 823, + 641 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "If we replace the $m ^ { \\mathrm { t h } }$ kernel $W ^ { ( m ) }$ with a $1 \\times 1$ kernel of a single parameter $W _ { \\tilde { \\boldsymbol { k } } _ { m } } ^ { ( m ) }$ sampled from it, the value of ERF becomes to ", + "bbox": [ + 171, + 648, + 823, + 681 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/66c20b6fedf15073b1f4ca65c88e193746eefcc42b4c08648ed593835186f268.jpg", + "text": "$$\n\\mathcal { R } ^ { ( n ) } ( i ; j , \\tilde { k } _ { m } ) = \\sum _ { ( k _ { 1 } , \\dots , k _ { m - 1 } , k _ { m + 1 } , \\dots , k _ { n } ) \\in K ^ { n - 1 } } \\left( \\mathbb { 1 } \\left[ j + \\sum _ { s \\in \\mathbb { S } } k _ { s } = i \\right] \\cdot \\prod _ { s \\in \\mathbb { S } } W _ { k _ { s } } ^ { ( s ) } \\cdot W _ { \\tilde { k } _ { m } } ^ { ( m ) } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 210, + 684, + 784, + 731 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathbb { S } = [ 1 , n ] \\backslash \\{ m \\}$ . Since a $K \\times K$ kernel can be deemed as a composition of $K ^ { 2 } 1 \\times 1$ kernels distributed on a square grid, Equation 3 can thus be reformulated as ", + "bbox": [ + 173, + 736, + 825, + 765 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/43a24a6a8f988ab4faf961b6a24ca6e2147206fc9cdc64011e67bf2ebce57d98.jpg", + "text": "$$\n\\mathcal { R } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in \\mathcal { K } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } ) .\n$$", + "text_format": "latex", + "bbox": [ + 369, + 768, + 629, + 801 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For the case of complex non-linearities, where we here consider post $\\mathrm { R e L U } ^ { 2 }$ activations in Equation 1, ", + "bbox": [ + 174, + 806, + 823, + 833 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d447143cee3fafd22e3729f18038dc74d9d5120ef20da1e1bad0d9d8716dadaf.jpg", + "text": "$$\nO _ { j } = \\operatorname* { m a x } ( \\sum _ { k \\in \\mathcal { K } } I _ { j + k } W _ { k } , 0 ) .\n$$", + "text_format": "latex", + "bbox": [ + 406, + 830, + 591, + 863 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We can follow a similar analysis and derive corresponding ERF as ", + "bbox": [ + 173, + 103, + 609, + 118 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/fd88a68380a532b2d2e5f0806b3d9d35dcad7145d9c4cd642d2e87175b43456d.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathcal { R } ^ { ' ( n ) } ( i ; j , \\tilde { k } _ { m } ) = \\displaystyle \\sum _ { ( k _ { 1 } , \\cdots , k _ { m - 1 } , k _ { m + 1 } , \\cdots , k _ { n } ) \\in K ^ { n - 1 } } \\left( \\mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \\cdots , k _ { n } , \\tilde { k } _ { m } ) \\cdot \\prod _ { s \\in \\mathbb { S } } W _ { \\tilde { k } _ { s } } ^ { ( s ) } \\cdot W _ { \\tilde { k } _ { m } } ^ { m } \\right) } \\\\ & { \\mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \\cdots , k _ { n } , \\tilde { k } _ { m } ) = \\mathbb { 1 } \\big [ j + \\displaystyle \\sum _ { s \\in \\mathbb { S } } k _ { s } = i \\big ] \\prod _ { s \\in \\mathbb { S } } \\mathbb { 1 } \\big [ \\displaystyle I _ { j } ^ { ( s - 1 ) } W _ { \\tilde { k } _ { s } } ^ { ( s ) } > 0 \\big ] \\mathbb { 1 } \\big [ I _ { j } ^ { ( m - 1 ) } W _ { \\tilde { k } _ { m } } ^ { ( m ) } > 0 \\big ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 215, + 125, + 828, + 200 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Here we can see that the ERF becomes data-dependent due to the coefficient $\\mathcal { C }$ , which is tied to input coordinates, kernel sampling locations, and input data $\\pmb { I } ^ { ( 0 ) }$ . The more detailed analysis of this coefficient is beyond the scope of this paper. However, it should be noted that this coefficient only “gates” the contribution of the input pixels to the output. So in practice, ERF is “porous” – there are inactive (or gated) pixel units irregularly distributed around the ones that fire. This phenomenon also appeared in previous studies (such as in Luo et al. (2016), Figure 1). The maximal size of an ERF is still controlled by the data sampling location and kernel values as in the linear cases in Equation 5. ", + "bbox": [ + 173, + 205, + 825, + 305 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "A nice property of Equation 4 and Equation 5 is that all computations are linear, making it compatible with any linear sampling operators for querying kernel values of fractional coordinates. In other words, sampling kernels in effect samples the ERF on the data in the linear case, but also roughly generalizes to non-linear cases as well. This finding motivates our design of Deformable Kernels (DKs) in Section 3.3. ", + "bbox": [ + 174, + 311, + 825, + 381 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 DEFORMABLE KERNELS ", + "text_level": 1, + "bbox": [ + 174, + 398, + 383, + 412 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In the context of Equation 1, we resample the kernel $W$ with a group of learned kernel offsets denoted as $\\{ \\Delta k \\}$ that correspond to each discrete kernel position $\\boldsymbol { k }$ . This defines our DK as ", + "bbox": [ + 173, + 424, + 825, + 453 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/3a071f9861f1e7be515522dff815c71dcaeddb8819e4f0c10a0dc277de76b66f.jpg", + "text": "$$\nO _ { j } = \\sum _ { k \\in \\mathcal K } I _ { j + k } W _ { k + \\Delta k } ,\n$$", + "text_format": "latex", + "bbox": [ + 419, + 460, + 576, + 491 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "and the value of ERF as ", + "bbox": [ + 174, + 498, + 333, + 512 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/f56f6e5ab1490d7e415b55fc4a12313b41979597ac64d47ec5fa095c7b81272d.jpg", + "text": "$$\n\\mathcal { R } _ { \\mathrm { D K } } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in { \\mathcal { K } } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } + \\Delta k _ { m } ) .\n$$", + "text_format": "latex", + "bbox": [ + 343, + 516, + 655, + 549 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Note that this operation leads to sub-pixel sampling in the kernel space. In practice, we use bilinear sampling to interpolate within the discrete kernel grid. ", + "bbox": [ + 173, + 554, + 823, + 583 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Intuitively, the size (resolution) of the original kernel space can affect sampling performance. Concretely, suppose we want to sample a $3 \\times 3$ kernel. DKs do not have any constraint on the size of the original kernel space, which we call the “scope size” of DKs. That said, we can use a $W$ of any size $K ^ { \\prime }$ even though the number of sampling locations is fixed as $K ^ { 2 }$ . We can thus exploit large kernels – the largest ones can reach $9 \\times 9$ in our experiments with nearly no overhead in computation since bilinear interpolations are extremely lightweight compared to the cost of convolutions. This can also increase the number of learning parameters, which in practice might become intractable if not handled properly. In our implementation, we will exploit depthwise convolutions (Howard et al., 2017) such that increasing scope size induces a negligible amount of extra parameters. ", + "bbox": [ + 173, + 588, + 825, + 715 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "As previously discussed, sampling the kernel space in effect transforms into sampling the ERF. On the design of locality and spatial granularity of our learned offsets, DK naturally delivers two variants – the global DK and the local DKs, as illustrated in Figure 2. In both operators, we learn a kernel offset generator $\\mathcal { G }$ that maps an input patch into a set of kernel offsets that are later applied to rigid kernels. ", + "bbox": [ + 174, + 722, + 825, + 791 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In practice, we implement $\\mathcal { G } _ { \\mathrm { g l o b a l } }$ as a stack of one global average pooling layer, which reduces feature maps into a vector, and another fully-connected layer without non-linearities, which projects the reduced vector into an offset vector of $2 K ^ { 2 }$ dimensions. Then, we apply these offsets to all convolutions for the input image following Equation 7. For local DKs, we implement $\\mathcal { G } _ { \\mathrm { l o c a l } }$ as an extra convolution that has the same configuration as the target kernel, except that it only has $2 K ^ { 2 }$ output channels. This produces kernel sampling offsets $\\{ \\Delta k \\}$ that are additionally indexed by output locations $j$ . It should be noted that similar designs were also discussed in Jia et al. (2016), in which filters are generated given either an image or individual patches from scratch rather than by resampling. ", + "bbox": [ + 173, + 797, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/2bb9668aaa37218849f82168db9cfaca57d102ffed1c046e386e2dacf5e7d991.jpg", + "image_caption": [ + "Figure 2: Instantiations. We show how DK variants works with an example image that contains a large and a small object. (a) The global DK learns one set of kernel sampling grid given an input image and apply it to all data positions. (b) The local DK adapts kernels for each input patches, and induces better locality for deformation modeling. " + ], + "image_footnote": [], + "bbox": [ + 196, + 102, + 808, + 328 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Intuitively, we expect the global DK to adapt kernel space between different images but not within a single input. The local DK can further adpat to specific image patches: for smaller objects, it is better to have shaper kernels and thus denser ERF; for larger objects, flatter kernels can be more beneficial for accumulating a wider ERF. On a high level, local DKs can preserve better locality and have larger freedom to adapt kernel spaces comparing to its global counterpart. We later compare these operators in our experiments. ", + "bbox": [ + 173, + 415, + 825, + 500 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.4 LINK WITH DEFORMABLE CONVOLUTIONS ", + "text_level": 1, + "bbox": [ + 174, + 515, + 514, + 530 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The core idea of DKs is to learn adaptive offsets to sample the kernel space for modeling deformation, which makes them similar to Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019), at both the conceptual and implementation levels. Here, we distinguish DKs from Deformable Convolutions and show how they can be unified. ", + "bbox": [ + 173, + 541, + 825, + 597 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Deformable Convolutions can be reformulated in a general form as ", + "bbox": [ + 179, + 604, + 611, + 618 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/efaef5c86c9f740a90478babf1316252a167b47cdfdcaa5be7194b813e6d9bff.jpg", + "text": "$$\nO _ { j } = \\sum _ { k \\in \\mathcal { K } } I _ { j + k + \\Delta j } W _ { k } ,\n$$", + "text_format": "latex", + "bbox": [ + 421, + 621, + 576, + 652 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where they aim to learn a group of data offsets $\\{ \\Delta j \\}$ with respect to discrete data positions $j$ . For consistency for analysis, the value of effective receptive field becomes ", + "bbox": [ + 176, + 655, + 823, + 684 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/7c245ee76fcf8f76a73be5d04308fd0b312e6965271bcc1a3fb5805d4dbe3ebe.jpg", + "text": "$$\n\\mathcal { R } _ { \\mathrm { D C } } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in \\mathcal { K } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } + \\Delta j _ { m } , k _ { m } ) .\n$$", + "text_format": "latex", + "bbox": [ + 344, + 686, + 653, + 719 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "This approach essentially recomposes the input image towards common modes such that semantic recognition suffers less from deformation. Moreover, according to our previous analysis in Equation 5, sampling data is another way of sampling the ERF. This, to a certain extent, also explains why Deformable Convolutions are well suited for learning deformation-agnostic representations. ", + "bbox": [ + 174, + 722, + 825, + 777 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Moreover, we can learn both data and kernel offsets in one convolutional operator. Conceptually, this can be done by merging Equation 7 with Equation 9, which leads to ", + "bbox": [ + 174, + 784, + 821, + 813 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/959a93bfb29f3ef6ec6a295944b46034218c0d6a06f2e29aa1487d882023ad74.jpg", + "text": "$$\n\\begin{array} { c } { { \\displaystyle { \\cal O } _ { j } = \\displaystyle \\sum _ { k \\in { \\cal K } } { \\cal I } _ { j + k + \\Delta j } W _ { k + \\Delta k } , } } \\\\ { { \\displaystyle \\mathcal { R } _ { \\mathrm { D C + D K } } ^ { ( n ) } ( i ; j ) = \\displaystyle \\sum _ { k _ { m } \\in { \\cal K } } { \\cal R } ^ { ( n ) } ( i ; j + k _ { m } + \\Delta j _ { m } , k _ { m } + \\Delta k _ { m } ) . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 310, + 815, + 687, + 880 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We also investigate this operator in our experiments. Although the two techniques may be viewed as serving a similar purpose, we find the collaboration between Deformable Kernels and Deformable Convolutions to be powerful in practice, suggesting strong compatibility. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 326, + 117 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We evaluate our Deformable Kernels (DKs) on image classification using ILSVRC and object detection using the COCO benchmark. Necessary details are provided to reproduce our results, together with descriptions on base models and strong baselines for all experiments and ablations. For taskspecific considerations, we refer to each corresponding section. ", + "bbox": [ + 174, + 135, + 823, + 190 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Implementation Details: We implement our operators in PyTorch and CUDA. We exploit depthwise convolutions when designing our operator for better computational efficiency3. We initialize kernel grids to be uniformly distributed within the scope size. For the kernel offset generator, we set its learning rate to be a fraction of that of the main network, which we cross-validate for each base model. We also find it important to clip sampling locations inside the original kernel space, such that $\\pmb { k } + \\Delta \\pmb { k } \\in \\mathcal { K }$ in Equation 7. ", + "bbox": [ + 174, + 198, + 825, + 281 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Base Models: We choose our base models to be ResNet-50 (He et al., 2016) and MobileNetV2 (Sandler et al., 2018), following the standard practice for most vision applications. As mentioned, we exploit depthwise convolution and thus make changes to the ResNet model. Concretely, we define our ResNet-50-DW base model by replacing all $3 \\times 3$ convolutions by its depthwise counterpart while doubling the dimension of intermediate channels in all residual blocks. We find it to be a reasonable base model compared to the original ResNet-50, with comparable performance on both tasks. During training, we set the weight decay to be $4 \\times 1 0 ^ { - 5 }$ rather than the common $1 0 ^ { - 4 }$ for both models since depthwise models usually underfit rather than overfit (Xie et al., 2017; Howard et al., 2017; Hu et al., 2018). We set the learning rate multiplier of DK operators as $1 0 ^ { - 2 }$ fo r ResNet-50-DW and $1 0 ^ { - 1 }$ for MobileNet-V2 in all of our experiments. ", + "bbox": [ + 173, + 287, + 825, + 426 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Strong Baselines: We develop our comparison with two previous works: Conditional Convolutions (Yang et al., 2019) for dynamics inference, and Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019) for deformation modeling. We choose Conditional Convolutions due to similar computation forms – sampling can be deemed as an elementewise “expert voting” mechanism. For fair comparisons, We reimplement and reproduce their results. We also combine our operator with these previous approach to show both quantitative evidence and qualitative insight that our working mechanisms are compatible. ", + "bbox": [ + 174, + 434, + 825, + 531 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.1 IMAGE CLASSIFICATION ", + "text_level": 1, + "bbox": [ + 176, + 551, + 383, + 565 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We first train our networks on the ImageNet 2012 training set (Deng et al., 2009). We adopt a common experiment protocol for fair comparisons as in Goyal et al. (2017); Loshchilov & Hutter (2017). For more details, please refer to our supplement. ", + "bbox": [ + 176, + 577, + 823, + 619 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We first ablate the scope size of kernels for our DKs and study how it can affect model performance using ResNet-50-DW. As shown in Table 1, our DKs are sensitive to the choice of the scope size. We shown that when only applied to $3 \\times 3$ convolutions inside residual bottlenecks, local DKs induce a $+ 0 . 7$ performance gain within the original scope. By further enlarging the scope size, performance increases yet quickly plateaus at scope $4 \\times 4$ , yielding largest $+ 1 . 4$ gain for top-1 accuracy. Our speculation is that, although increasing scope size theoretically means better interpolation, it also makes the optimization space exponentially larger for each convolutional layer. And since number of entries for updating is fixed, this also leads to relatively sparse gradient flows. In principle, we set default scope size at $4 \\times 4$ for our DKs. ", + "bbox": [ + 174, + 626, + 825, + 751 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We next move on and ablate our designs by comparing the global DK with the local DK, shown in the table. Both operators helps while the local variants consistently performs better than their global counterparts, bringing a $+ 0 . 5$ gap on both base models. We also study the effect of using more DKs in the models – the $1 \\times 1$ convolutions are replaced by global $\\mathrm { D K } \\dot { \\mathrm { s } } ^ { 4 }$ with scope $2 \\times 2$ . Note that all $1 \\times 1$ convolutions are not depthwise, and therefore this operation induces nearly 4 times of parameters. We refer their results only for ablation and show that adding more DKs still helps – especially for MobileNet-V2 since it is under-parameterized. This finding also holds for previous models (Yang et al., 2019) as well. ", + "bbox": [ + 174, + 758, + 823, + 869 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/652f1d996a9554cdf5fff81dbfd3812d83676c7a832f4e383c6c9aa73bd64b9c.jpg", + "table_caption": [ + "Table 1: Ablations of scope size and different instantiations of DK for image classification. Using proper scope size, and more DK layers boosts performance. Modeling individual offset kernel grid for each data entries is also beneficial. " + ], + "table_footnote": [], + "table_body": "
Backbone1×1Deformable Kernels3×3Deformable Kernelstop1 (%)#P (M)GFLOPs
ResNet-50w/ow/o76.725.63.86
ResNet-50-DWw/ow/o76.323.73.82
ResNet-50-DWw/olocal, scope size 3×377.424.94.32
local, scope size 4×478.125.04.32
local, scope size 5×577.825.04.32
local, scope size 9×977.425.44.32
ResNet-50-DWw/oglobal, scope size 4×477.623.93.82
global,scope size 2×2global, scope size 4×477.980.14.09
w/olocal, scope size 4×478.125.04.32
global, scope size 2×2local, scope size 4×478.581.24.60
MobileNet-V2w/ow/o71.93.50.31
MobileNet-V2w/oglobal, scope size 4×473.63.70.31
global, scope size 2×2global, scope size 4×474.510.10.34
w/olocal, scope size 4×474.14.70.73
global, scope size 2×2local, scope size 4×474.811.10.76
", + "bbox": [ + 192, + 101, + 805, + 329 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/891e2d62bba2b5ccc495a0c79ec8157d0f1351b5ca0501564dc64aad1c1b79f7.jpg", + "table_caption": [ + "Table 2: Comparisons to strong baselines for image classification DKs perform comparably or superiorly to previous methods. Further combinations yield consistent gain, suggesting orthogonal and compatible working mechanisms. " + ], + "table_footnote": [], + "table_body": "
Backbone1×1Deformable Kernels3×3DeformableKernelstop1 (%)#P (M)GFLOPs
ResNet-50-DWw/olocal, scope size 4×478.125.04.32
ResNet-50-DWw/ow/o77.642.57.13
with SCC ResNet-50-DWw/0local, scope size 4×478.943.77.61
w/o78.024.84.10
with DCNlocal, scope size 4×479.026.14.60
MobileNet-V2 MobileNet-V2w/olocal, scope size 4×474.14.70.73
with SCCw/ow/o74.319.02.19
local, scope size 4×475.519.72.48
MobileNet-V2 with DCNw/0w/o73.24.60.52
local, scope size 4×474.45.80.93
", + "bbox": [ + 192, + 390, + 805, + 549 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We further compare and combine DKs with Conditional Convolutions and Deformable Convolutions. Results are recorded in Table 2. We can see that DKs perform comparably on ResNet-V2 and compare favorably on MobileNet-V2 – improve $+ 0 . 9$ from Deformable Convolutions and achieve comparable results with less than a quarter number of parameters compared to Conditional Convolutions. Remarkably, we also show that if combined together, even larger performance gains are in reach. We see consistent boost in top-1 accuracy compared to strong baselines: $+ 1 . 3 / + 1 . 0$ on ResNet-50-DW, and $+ 1 . 2 / + 1 . 2$ on MobileNet-V2. These gaps are bigger than those from our own ablation, suggesting the working mechanisms across the operators to be orthogonal and compatible. ", + "bbox": [ + 174, + 622, + 825, + 734 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.2 OBJECT DETECTION ", + "text_level": 1, + "bbox": [ + 176, + 751, + 356, + 765 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We examine DKs on the COCO benchmark (Lin et al., 2014). For all experiments, we use Faster R-CNN (Ren et al., 2015) with FPN (Lin et al., 2017) as the base detector, plugging in the backbones we previously trained on ImageNet. For MobileNet-V2, we last feature maps of the each resolution for FPN post aggregation. Following the standard protocol, training and evaluation are performed on the $1 2 0 \\mathrm { k }$ images in the train-val split and the 20k images in the test-dev split, respectively. For evaluation, we measure the standard mean average precision (mAP) and shattered scores for small, medium and large objects. ", + "bbox": [ + 173, + 776, + 825, + 875 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Table 3 and Table 4 follow the same style of analysis as in image classification. While the baseline methods of ResNet achieve $3 6 . 6 \\ \\mathrm { m A P } ,$ indicating a strong baseline detector, applying local DKs brings a $+ 1 . 2 \\mathrm { m A P }$ improvement when replacing 3x3 rigid kernels alone and a $+ 1 . 8$ mAP improvement when replacing both 1x1 and 3x3 rigid kernels. This trend magnifies on MobileNet-v2 models, where we see an improvement of $+ 1 . 6$ mAP and $+ 2 . 4 \\ \\mathrm { m A P } ,$ , respectively. Results also confirm the effectiveness of local DKs against global DKs, which is again in line with our expectation that local DKs can model locality better. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/7350cae2e29b0a46813a9481577bb38913d33309325ba0ce2e1adc93f7c63273.jpg", + "table_caption": [ + "Table 3: Ablations for object detection. Consistent results with image classification. " + ], + "table_footnote": [], + "table_body": "
Backbone1×1Deformable Kernels3×3Deformable KernelsmAPmAPsmAPMmAPL
ResNet-50-DWw/ow/o36.622.139.946.6
ResNet-50-DWw/oglobal, scope size 4×436.722.640.246.9
global,scope size 2×2global, scope size 4×437.123.140.646.6
w/olocal, scope size 4×437.823.441.648.2
global, scope size 2×2local, scope size 4×438.423.442.049.4
MobileNet-V2w/ow/o31.318.633.740.4
MobileNet-V2w/oglobal, scope size 4×432.519.635.841.9
global,scope size 2×2global, scope size 4×432.919.435.542.8
w/0local, scope size 4×432.919.536.042.5
global, scope size 2×2local, scope size 4×433.720.236.744.0
", + "bbox": [ + 192, + 101, + 805, + 256 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/84f243c0470669e39536a5c1102527d64f8ccb616ae14ac691530cfd41891dfe.jpg", + "table_caption": [ + "Table 4: Comparisons to strong baselines for object detection DKs perform fall short to Deformable Convolution, but combination still improves performance. " + ], + "table_footnote": [], + "table_body": "
Backbone1×1Deformable Kernels3×3DeformableKernelsmAPmAPsmAPMmAPL
ResNet-50-DWglobal, scope size 2×2local, scope size 4×438.423.442.049.4
ResNet-50-DWw/ow/o36.322.139.347.0
with SCC ResNet-50-DWw/olocal, scope size 4×438.023.441.948.4
w/o39.924.043.452.6
with DCNlocal,scope size 4×440.624.643.953.3
MobileNet-V2 MobileNet-V2global, scope size 2×2local, scope size 4×4 w/o33.720.236.744.0
with SCCw/olocal, scope size 4×433.220.535.643.3
34.320.237.344.7
MobileNet-V2 with DCNw/ow/o local, scope size 4×434.4 35.620.5 20.637.0 38.544.7 47.3
", + "bbox": [ + 192, + 289, + 805, + 444 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 503, + 825, + 560 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "For the comparisons with strong baselines, an interesting phenomenon worth noting is that though DKs perform better than Deformable Convolutions on image classification, they fall noticeably short for object detection measured by mAP. We speculate that even though both techniques can adapt ERF in theory (as justified in Section 3.2), directly shifting sampling locations on data is easier to optimize. Yet after combining DKs with previous approaches, we can consistently boost performance for all the methods – $+ 0 . 7 / + 1 . 2$ for Deformable Convolutions on each base models, and $+ 1 . 7 / + 1 . 1$ for Conditional Convolutions. These findings align with the results from image classification. We next investigate what DKs learn and why they are compatible with previous methods in general. ", + "bbox": [ + 174, + 568, + 825, + 693 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.3 WHAT DO DEFORMABLE KERNELS LEARN? ", + "text_level": 1, + "bbox": [ + 174, + 709, + 516, + 723 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Awareness of Object Scale: Since deformation is hard to quantify, we use object scale as a rough proxy to understand what DKs learn. In Figure 3, we show the t-SNE (Maaten & Hinton, 2008) of learned model dynamics by the last convolutional layers in MobileNet-V2 using Conditional Convolution and our DKs. We validate the finding as claimed by Yang et al. (2019) that the experts of Conditional Convolutions have better correlation with object semantics than their scales (in reference to Figure 6 from their paper). Instead, our DKs learn kernel sampling offsets that strongly correlate to scales rather than semantics. This sheds light on why the two operators are complementary in our previous experiments. ", + "bbox": [ + 173, + 734, + 825, + 847 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Adaptation of Effective Receptive Fields: To verify our claim that DK indeed adapts ERFs in practice, we show ERF visualizations on a set of images in which they display different degrees of deformations. We compare the results of rigid kernels, Deformable Convolutions, our DKs, and the combination of the two operators. For all examples, note that the theoretical receptive field covers every pixel in the image but ERFs contain only a central portion of it. Deformable Convolutions and DKs perform similarly in terms of adapting ERFs, but Deformable Convolutions tend to spread out and have sparse responses while DKs tend to concentrate and densely activate within an object region. Combining both operators yields more consistent ERFs that exploit both of their merits. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/03fe61b3a99a4b4fe54f5e472560a43e878aaca475f9aa9552dbcdad33a82abd.jpg", + "image_caption": [ + "Figure 3: Semantics vs. Scales. We show t-SNE results of learned model dynamics using 10 random classes of objects from the COCO test-dev split. Each point represents an object extracted by ground-truth bounding box, whose color either denotes its class label or bounding box scale. The color of an object scale is its normalized area rank discretized by every 10th percentile among all data. Numbers inside parentheses indicate the dimension of learned dynamics before t-SNE. (a) The dynamics of Conditional Convolutions are closer to semantics than to object scales. (b) On the contrary, our DKs learn dynamics that are significantly related to scales rather than semantics. " + ], + "image_footnote": [], + "bbox": [ + 187, + 99, + 807, + 227 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/711d1059d1b021301141e7743d64fe5288ae4ee7f13f4809906a3a3dbc32d974.jpg", + "image_caption": [ + "Figure 4: Learned Effective Receptive Fields. We show learned ERFs on three images with large, medium, and small objects from the COCO test-dev split. Given each ground-truth bounding box, we visualize the non-zero ERF values of its central point. Theoretical RFs cover the whole image for all three examples and we thus ignore them in our plots. (a) Rigid kernels have strong central effects and a Gaussian-like ERF that cannot deal with object deformation alone. (b) Deformable Convolutions and (c) Deformable Kernels both tune ERFs to data. (d) Combining both operators together enables better modeling of 2D geometric transformation of objects. " + ], + "image_footnote": [], + "bbox": [ + 191, + 353, + 807, + 593 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 731, + 825, + 773 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 803, + 318, + 819 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this paper, we introduced Deformable Kernels (DKs) to adapt effective receptive fields (ERFs) of convolutional networks for object deformation. We proposed to sample kernel values from the original kernel space. This in effect samples the ERF in linear networks and also roughly generalizes to non-linear cases. We instantiated two variants of DKs and validate our designs, showing connections to previous works. Consistent improvements over them and compatibility with them were found, as illustrated in visualizations. ", + "bbox": [ + 174, + 839, + 825, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 102, + 287, + 118 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Joan Bruna and Stephane Mallat. Invariant scattering convolution networks. ´ TPAMI, 2013. ", + "bbox": [ + 168, + 126, + 769, + 141 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Taco Cohen and Max Welling. Group equivariant convolutional networks. In ICML, 2016. ", + "bbox": [ + 168, + 148, + 769, + 165 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jifeng Dai, Haozhi Qi, Yuwen Xiong, Yi Li, Guodong Zhang, Han Hu, and Yichen Wei. Deformable convolutional networks. In CVPR, 2017. ", + "bbox": [ + 173, + 172, + 825, + 202 + ], + "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 CVPR, 2009. ", + "bbox": [ + 173, + 209, + 823, + 239 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Carlos Esteves, Christine Allen-Blanchette, Xiaowei Zhou, and Kostas Daniilidis. Polar transformer networks. In ICLR, 2018. ", + "bbox": [ + 173, + 247, + 823, + 276 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "James J Gibson. The perception of the visual world. Houghton Mifflin, 1950. ", + "bbox": [ + 171, + 285, + 679, + 301 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Priya Goyal, Piotr Dollar, Ross Girshick, Pieter Noordhuis, Lukasz Wesolowski, Aapo Kyrola, An- ´ drew Tulloch, Yangqing Jia, and Kaiming He. Accurate, large minibatch sgd: Training imagenet in 1 hour. arXiv preprint arXiv:1706.02677, 2017. ", + "bbox": [ + 173, + 309, + 826, + 352 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. ", + "bbox": [ + 173, + 359, + 823, + 390 + ], + "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. In CVPR, 2017. ", + "bbox": [ + 174, + 397, + 825, + 440 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In CVPR, 2018. ", + "bbox": [ + 171, + 449, + 717, + 465 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Drew A Hudson and Christopher D Manning. Learning by abstraction: The neural state machine. arXiv preprint arXiv:1907.03950, 2019. ", + "bbox": [ + 173, + 472, + 823, + 502 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In NeurIPS, 2015. ", + "bbox": [ + 174, + 510, + 825, + 540 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xu Jia, Bert De Brabandere, Tinne Tuytelaars, and Luc V Gool. Dynamic filter networks. In NeurIPS, 2016. ", + "bbox": [ + 174, + 547, + 825, + 577 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Angjoo Kanazawa, Abhishek Sharma, and David W. Jacobs. Locally scale-invariant convolutional neural networks. In NeurIPS Workshop, 2016. ", + "bbox": [ + 173, + 584, + 825, + 614 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Svetlana Lazebnik, Cordelia Schmid, and Jean Ponce. Beyond bags of features: Spatial pyramid matching for recognizing natural scene categories. In CVPR, 2006. ", + "bbox": [ + 173, + 622, + 821, + 651 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xiang Li, Wenhai Wang, Xiaolin Hu, and Jian Yang. Selective kernel networks. In CVPR, 2019. ", + "bbox": [ + 176, + 660, + 805, + 675 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollar, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In ´ ECCV, 2014. ", + "bbox": [ + 176, + 683, + 823, + 713 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tsung-Yi Lin, Piotr Dollar, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie. ´ Feature pyramid networks for object detection. In CVPR, 2017. ", + "bbox": [ + 176, + 720, + 821, + 751 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ilya Loshchilov and Frank Hutter. Sgdr: Stochastic gradient descent with warm restarts. In ICLR, 2017. ", + "bbox": [ + 174, + 758, + 825, + 787 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "David G Lowe et al. Object recognition from local scale-invariant features. In ICCV, 1999. ", + "bbox": [ + 171, + 796, + 772, + 813 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wenjie Luo, Yujia Li, Raquel Urtasun, and Richard Zemel. Understanding the effective receptive field in deep convolutional neural networks. In NeurIPS, 2016. ", + "bbox": [ + 173, + 820, + 821, + 849 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of machine learning research, 2008. ", + "bbox": [ + 174, + 857, + 823, + 887 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. In NeurIPS, 2015. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ignacio Rocco, Relja Arandjelovic, and Josef Sivic. Convolutional neural network architecture for geometric matching. In CVPR, 2017. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mobilenetv2: Inverted residuals and linear bottlenecks. In CVPR, 2018. ", + "bbox": [ + 171, + 140, + 823, + 170 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Evan Shelhamer, Dequan Wang, and Trevor Darrell. Blurring the line between structure and learning to optimize and adapt receptive fields. arXiv preprint arXiv:1904.11487, 2019. ", + "bbox": [ + 173, + 178, + 823, + 208 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Laurent Sifre and Stephane Mallat. Rotation, scaling and deformation invariant scattering for texture ´ discrimination. In CVPR, 2013. ", + "bbox": [ + 171, + 215, + 825, + 246 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Hugues Thomas, Charles R Qi, Jean-Emmanuel Deschaud, Beatriz Marcotegui, Franc¸ois Goulette, and Leonidas J Guibas. Kpconv: Flexible and deformable convolution for point clouds. In ICCV, 2019. ", + "bbox": [ + 174, + 253, + 823, + 296 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017. ", + "bbox": [ + 173, + 305, + 823, + 335 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dequan Wang, Evan Shelhamer, Bruno Olshausen, and Trevor Darrell. Dynamic scale inference by entropy optimization. arXiv preprint arXiv:1908.03182, 2019. ", + "bbox": [ + 173, + 343, + 823, + 372 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks. In CVPR, 2018. ", + "bbox": [ + 176, + 381, + 821, + 410 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Daniel E Worrall, Stephan J Garbin, Daniyar Turmukhambetov, and Gabriel J Brostow. Harmonic networks: Deep translation and rotation equivariance. In CVPR, 2017. ", + "bbox": [ + 174, + 419, + 823, + 448 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual trans-´ formations for deep neural networks. In CVPR, 2017. ", + "bbox": [ + 174, + 457, + 821, + 486 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yuwen Xiong, Mengye Ren, Renjie Liao, Kelvin Wong, and Raquel Urtasun. Deformable filter convolution for point cloud reasoning. arXiv preprint arXiv:1907.13079, 2019. ", + "bbox": [ + 174, + 494, + 820, + 523 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Brandon Yang, Gabriel Bender, Quoc V Le, and Jiquan Ngiam. Soft conditional computation. arXiv preprint arXiv:1904.04971, 2019. ", + "bbox": [ + 174, + 531, + 821, + 561 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Richard Zhang. Making convolutional networks shift-invariant again. In ICML, 2019. ", + "bbox": [ + 173, + 570, + 738, + 585 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xizhou Zhu, Han Hu, Stephen Lin, and Jifeng Dai. Deformable convnets v2: More deformable, better results. In CVPR, 2019. ", + "bbox": [ + 173, + 593, + 821, + 623 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/5abbb82c034f8a61878e301501e3654d6912395090b816e2237653329513f497.jpg", + "image_caption": [ + "Figure 5: Illustration of feed-forwarding through a $\\mathbf { 3 \\times 3 }$ local Deformable Kernel from a $4 \\times 4$ scope. For each input patch, local DK first generates a group of kernel offsets $\\{ \\Delta k \\}$ from input feature patch using the light-weight generator $\\mathcal { G }$ (a $3 \\times 3$ convolution of rigid kernel). Given the original kernel weights $W$ and the offset group $\\{ \\Delta k \\}$ , DK samples a new set of kernel $W ^ { \\prime }$ using a bilinear sampler $\\boldsymbol { B }$ . Finally, DK convolves the input feature map and the sampled kernels to complete the whole computation. " + ], + "image_footnote": [], + "bbox": [ + 236, + 102, + 758, + 297 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A COMPUTATION FLOW OF DEFORMABLE KERNELS ", + "text_level": 1, + "bbox": [ + 174, + 409, + 625, + 426 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We now cover more details on implementing DKs by elaborating the computation flow of their forward and backward passes. We will focus on the local DK given its superior performance in practice. The extension to global DK implementation is straight-forward. ", + "bbox": [ + 174, + 439, + 823, + 483 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A.1 FORWARD PASS ", + "text_level": 1, + "bbox": [ + 176, + 500, + 328, + 513 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In Section 3.3, we introduce a kernel offset generator $\\mathcal { G }$ and a bilinear sampler $\\boldsymbol { B }$ . Figure 5 illustrates an example of the forward pass. ", + "bbox": [ + 174, + 525, + 821, + 554 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Concretely, given a kernel $W$ and a learned group of kernel offsets $\\{ \\Delta k \\}$ on top of a regular 2D grid $\\{ k \\}$ , we can resample a new kernel $W ^ { \\prime }$ by a bilinear operator $\\boldsymbol { B }$ as ", + "bbox": [ + 174, + 560, + 821, + 589 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/a608a84c320e9f9db047d8137e472273804898794dfbeeeb983cc56c63cc8680.jpg", + "text": "$$\n\\begin{array} { c } { W ^ { \\prime } \\equiv W _ { k + \\Delta k } = \\displaystyle \\sum _ { k ^ { \\prime } \\in K } | \\beta ( k + \\Delta k , k ^ { \\prime } ) W _ { k ^ { \\prime } } , } \\\\ { \\displaystyle \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) = \\operatorname* { m a x } ( 0 , 1 - | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | ) \\cdot \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 200, + 593, + 789, + 650 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Given this resampled kernel, DK convolves it with the input image just as in normal convolutions using rigid kernels, characterized by Equation 1. ", + "bbox": [ + 174, + 651, + 823, + 681 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A.2 BACKWARD PASS ", + "text_level": 1, + "bbox": [ + 176, + 696, + 339, + 712 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The backward pass of local DK consists of three types of gradients: (1) the gradient to the data of the previous layer, (2) the gradient to the full scope kernel of the current layer and (3) the additional gradient to the kernel offset generator of the current layer. The first two types of gradients share same forms of the computation comparing to the normal convolutions. We now cover the computation for the third flow of gradient that directs where to sample kernel values. ", + "bbox": [ + 173, + 723, + 825, + 794 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the context of Equation 7, the partial derivative of a output item $O _ { j }$ w.r.t. $x$ component of a given kernel offset $\\Delta k _ { x }$ (similar for its $y$ component $\\Delta k _ { y }$ ) can be computed as ", + "bbox": [ + 174, + 800, + 821, + 829 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/cc0a8c703b7b502bedc043ba2fe0f1337abf699f80982d0d75b9a5b6be8431d4.jpg", + "text": "$$\n\\frac { \\partial O _ { j } } { \\partial \\Delta k _ { x } } = \\sum _ { k } I _ { j + k } \\bigg ( \\sum _ { k ^ { \\prime } } W _ { k ^ { \\prime } } \\frac { \\partial \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) } { \\partial \\Delta k _ { x } } \\bigg ) ,\n$$", + "text_format": "latex", + "bbox": [ + 313, + 834, + 643, + 872 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/d3c53ed1a230cc95c857ea460abdc9afc9a2b467ba33c1a90d363151ea5d0218.jpg", + "text": "$$\n\\frac { \\partial \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) } { \\partial \\Delta k _ { x } } = \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) \\cdot \\left\\{ \\begin{array} { l l } { 0 } & { | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | \\ge 1 } \\\\ { 1 } & { k _ { x } + \\Delta k _ { x } < k _ { x } ^ { \\prime } } \\\\ { - 1 } & { k _ { x } + \\Delta k _ { x } \\ge k _ { x } ^ { \\prime } } \\end{array} \\right. .\n$$", + "text_format": "latex", + "bbox": [ + 245, + 877, + 794, + 926 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/a5bfd5471dec38e95309e5d40b5738522899bfb52ad9f1e2443e02b8e16a022a.jpg", + "table_caption": [ + "Table 5: Network architecture of our ResNet-50-DW comparing to the original ResNet-50 Inside the brackets are the general shape of a residual block, including filter sizes and feature dimensionalities. The number of stacked blocks on each stage is presented outside the brackets. $G = 1 2 8 ^ { \\prime \\prime }$ suggests the depthwise convolution with 128 input channels. Two models have similar numbers of parameters and FLOPs. At the same time, depthwise convolutions facilitate the computation efficiency of our Deformable Kernels. " + ], + "table_footnote": [], + "table_body": "
OutputResNet-50ResNet-50-DW
112 × 1127 × 7,64,stride 2
56×563 × 3 max pool, stride 2
56×561×1,643 ×3,641 × 1,256×31 ×1,1283 × 3,128,G = 1281 × 1,256×3
28×281×1,1283 ×3,1281 × 1,512×41 ×1,2563 × 3,256,G = 2561 ×1,512×4
14 ×141 ×1,2563 ×3,2561 × 1,1024×61 ×1,5123 × 3,512,G = 5121 × 1,1024×6
7×71 ×1,5123 ×3,5121 × 1,2048×31 ×1,10243 × 3,1024,G =10241 × 1,2048×3
1×17 × 7 global average pool,1000-d fc, softmax
#P (M)25.623.7
GFLOPs3.863.82
", + "bbox": [ + 256, + 101, + 740, + 385 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B NETWORK ARCHITECTURES ", + "text_level": 1, + "bbox": [ + 176, + 507, + 444, + 523 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Table 5 shows the comparison between the original ResNet-50 (He et al., 2016) and our modified ResNet-50-DW. The motivation of introducing depthwise convolutions to ResNet is to accelerate the computation of local DKs based on our current implementations. The ResNet-50-DW model has similar model capacity/complexity and performance (see Table 1) compared to its non-depthwise counterpart, making it an ideal base architecture for our experiments. ", + "bbox": [ + 174, + 537, + 825, + 608 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "On the other hand, in all of our experiments, MobileNet-V2 (Sandler et al., 2018) base model is left untouched. ", + "bbox": [ + 173, + 614, + 823, + 643 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C ADDITIONAL COMPARISON OF EFFECTIVE RECEPTIVE FIELDS ", + "text_level": 1, + "bbox": [ + 176, + 664, + 727, + 680 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We here show additional comparison of ERFs when objects have different kinds of deformations in Figure 6. Comparing to baseline, our method can adapt ERFs to be more persistent to object’s semantic rather than its geometric configuration. ", + "bbox": [ + 174, + 695, + 825, + 738 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "D ADDITIONAL EXPERIMENT DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 758, + 514, + 773 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Image Classification: Similar to Goyal et al. (2017); Loshchilov & Hutter (2017), training is performed by SGD for 90 epochs with momentum 0.9 and batch size 256. We set our learning rate of $1 0 ^ { - 1 }$ so that it linearly warms up from zero within first 5 epochs. A cosine training schedule is applied over the training epochs. We use scale and aspect ratio augmentation with color perturbation as standard data augmentations. We evaluate the performance of trained models on the ImageNet 2012 validation set. The images are resized so that the shorter side is of 256 pixels. We then centrally crop $2 2 4 \\times 2 2 4$ windows from the images as input to measure recognition accuracy. ", + "bbox": [ + 173, + 789, + 825, + 887 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/fe8c4b789257333e32ac79b42776e417679053ca788bfbae0a2167b18b100042.jpg", + "image_caption": [ + "Figure 6: Effective Receptive Field Comparison between rigid kernels and DKs under different kinds of Object Deformation. At each row and from left to right, we show the original image $( 1 3 0 0 \\times 8 0 0 )$ , the image rotated by -90 degrees and the image scaled by 1.5 times. Images are cropped and resized for the typesetting purpose. " + ], + "image_footnote": [], + "bbox": [ + 240, + 310, + 758, + 652 + ], + "page_idx": 14 + } +] \ No newline at end of file diff --git a/parse/train/SkxSv6VFvS/SkxSv6VFvS_middle.json b/parse/train/SkxSv6VFvS/SkxSv6VFvS_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..76f5c826c889275ec927958da6d746c883b32eaa --- /dev/null +++ b/parse/train/SkxSv6VFvS/SkxSv6VFvS_middle.json @@ -0,0 +1,35049 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 504, + 96 + ], + "score": 1.0, + "content": "DEFORMABLE KERNELS: ADAPTING EFFECTIVE RE-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 441, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 441, + 118 + ], + "score": 1.0, + "content": "CEPTIVE FIELDS FOR OBJECT DEFORMATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 133, + 474, + 191 + ], + "lines": [ + { + "bbox": [ + 113, + 133, + 345, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 133, + 140, + 147 + ], + "score": 1.0, + "content": "Hang", + "type": "text" + }, + { + "bbox": [ + 141, + 135, + 174, + 146 + ], + "score": 0.66, + "content": "\\mathbf { G a o ^ { 1 , 3 * } } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 133, + 209, + 147 + ], + "score": 1.0, + "content": "Xizhou", + "type": "text" + }, + { + "bbox": [ + 209, + 135, + 242, + 146 + ], + "score": 0.77, + "content": "\\mathbf { Z } \\mathbf { h } \\mathbf { u } ^ { 2 , 3 * }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 133, + 270, + 147 + ], + "score": 1.0, + "content": ", Steve", + "type": "text" + }, + { + "bbox": [ + 270, + 135, + 291, + 146 + ], + "score": 0.6, + "content": "\\mathbf { L i n ^ { 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 133, + 345, + 147 + ], + "score": 1.0, + "content": ", Jifeng Dai3", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 144, + 474, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 474, + 159 + ], + "score": 1.0, + "content": "1UC Berkeley 2University of Science and Technology of China 3Microsoft Research Asia", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 158, + 378, + 170 + ], + "spans": [ + { + "bbox": [ + 111, + 158, + 378, + 170 + ], + "score": 1.0, + "content": "hangg@eecs.berkeley.edu, ezra0408@mail.ustc.edu.cn", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 113, + 169, + 281, + 181 + ], + "spans": [ + { + "bbox": [ + 113, + 169, + 281, + 181 + ], + "score": 1.0, + "content": "{stevelin,jifdai}@microsoft.com", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 180, + 431, + 191 + ], + "spans": [ + { + "bbox": [ + 115, + 180, + 431, + 191 + ], + "score": 1.0, + "content": "http://people.eecs.berkeley.edu/˜hangg/deformable-kernels/", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 277, + 220, + 333, + 232 + ], + "lines": [ + { + "bbox": [ + 277, + 219, + 335, + 233 + ], + "spans": [ + { + "bbox": [ + 277, + 219, + 335, + 233 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 245, + 468, + 355 + ], + "lines": [ + { + "bbox": [ + 141, + 245, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 258 + ], + "score": 1.0, + "content": "Convolutional networks are not aware of an object’s geometric variations, which", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "score": 1.0, + "content": "leads to inefficient utilization of model and data capacity. To overcome this is-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 469, + 280 + ], + "score": 1.0, + "content": "sue, recent works on deformation modeling seek to spatially reconfigure the data", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 291 + ], + "score": 1.0, + "content": "towards a common arrangement such that semantic recognition suffers less from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 470, + 303 + ], + "score": 1.0, + "content": "deformation. This is typically done by augmenting static operators with learned", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 313 + ], + "score": 1.0, + "content": "free-form sampling grids in the image space, dynamically tuned to the data and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 312, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 142, + 312, + 469, + 324 + ], + "score": 1.0, + "content": "task for adapting the receptive field. Yet adapting the receptive field does not quite", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 469, + 335 + ], + "score": 1.0, + "content": "reach the actual goal – what really matters to the network is the effective receptive", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 334, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 334, + 469, + 344 + ], + "score": 1.0, + "content": "field (ERF), which reflects how much each pixel contributes. It is thus natural to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 344, + 408, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 408, + 357 + ], + "score": 1.0, + "content": "design other approaches to adapt the ERF directly during runtime.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 143, + 357, + 468, + 478 + ], + "lines": [ + { + "bbox": [ + 141, + 356, + 470, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 370 + ], + "score": 1.0, + "content": "In this work, we instantiate one possible solution as Deformable Kernels (DKs), a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 369, + 469, + 380 + ], + "spans": [ + { + "bbox": [ + 142, + 369, + 469, + 380 + ], + "score": 1.0, + "content": "family of novel and generic convolutional operators for handling object deforma-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 379, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 379, + 469, + 391 + ], + "score": 1.0, + "content": "tions by directly adapting the ERF while leaving the receptive field untouched. At", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 390, + 470, + 403 + ], + "spans": [ + { + "bbox": [ + 141, + 390, + 470, + 403 + ], + "score": 1.0, + "content": "the heart of our method is the ability to resample the original kernel space towards", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 401, + 470, + 413 + ], + "spans": [ + { + "bbox": [ + 141, + 401, + 470, + 413 + ], + "score": 1.0, + "content": "recovering the deformation of objects. This approach is justified with theoretical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 412, + 470, + 424 + ], + "spans": [ + { + "bbox": [ + 141, + 412, + 470, + 424 + ], + "score": 1.0, + "content": "insights that the ERF is strictly determined by data sampling locations and ker-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 423, + 470, + 436 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 470, + 436 + ], + "score": 1.0, + "content": "nel values. We implement DKs as generic drop-in replacements of rigid kernels", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 434, + 469, + 446 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 469, + 446 + ], + "score": 1.0, + "content": "and conduct a series of empirical studies whose results conform with our theories.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 142, + 444, + 469, + 457 + ], + "spans": [ + { + "bbox": [ + 142, + 444, + 469, + 457 + ], + "score": 1.0, + "content": "Over several tasks and standard base models, our approach compares favorably", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 456, + 470, + 469 + ], + "spans": [ + { + "bbox": [ + 141, + 456, + 470, + 469 + ], + "score": 1.0, + "content": "against prior works that adapt during runtime. In addition, further experiments", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 467, + 469, + 479 + ], + "spans": [ + { + "bbox": [ + 141, + 467, + 469, + 479 + ], + "score": 1.0, + "content": "suggest a working mechanism orthogonal and complementary to previous works.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 500, + 206, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 208, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 208, + 515 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 504, + 580 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "The rich diversity of object appearance in images arises from variations in object semantics and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "deformation. Semantics describe the high-level abstraction of what we perceive, and deformation", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "defines the geometric transformation tied to specific data (Gibson, 1950). Humans are remarkably", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 558, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 571 + ], + "score": 1.0, + "content": "adept at making abstractions of the world (Hudson & Manning, 2019); we see in raw visual signals,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 569, + 359, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 359, + 583 + ], + "score": 1.0, + "content": "abstract semantics away from deformation, and form concepts.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 504, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "Interestingly, modern convolutional networks follow an analogous process by making abstractions", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "through local connectivity and weight sharing (Zhang, 2019). However, such a mechanism is an", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "inefficient one, as the emergent representations encode semantics and deformation together, instead", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 619, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 631 + ], + "score": 1.0, + "content": "of as disjoint notions. Though a convolution responds accordingly to each input, how it responds is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "primarily programmed by its rigid kernels, as in Figure 1(a, b). In effect, this consumes large model", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 641, + 307, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 307, + 653 + ], + "score": 1.0, + "content": "capacity and data modes (Shelhamer et al., 2019).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 504, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "score": 1.0, + "content": "We argue that the awareness of deformations emerges from adaptivity – the ability to adapt at run-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "time (Kanazawa et al., 2016; Jia et al., 2016; Li et al., 2019). Modeling of geometric transformations", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "has been a constant pursuit for vision researchers over decades (Lowe et al., 1999; Lazebnik et al.,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "2006; Jaderberg et al., 2015; Dai et al., 2017). A basic idea is to spatially recompose data towards", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 702, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 506, + 714 + ], + "score": 1.0, + "content": "a common mode such that semantic recognition suffers less from deformation. A recent work that", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 721, + 476, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 477, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 477, + 733 + ], + "score": 1.0, + "content": "∗Equal contributions. Work is done when Hang and Xizhou are interns at Microsoft Research Asia.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 504, + 96 + ], + "score": 1.0, + "content": "DEFORMABLE KERNELS: ADAPTING EFFECTIVE RE-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 441, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 441, + 118 + ], + "score": 1.0, + "content": "CEPTIVE FIELDS FOR OBJECT DEFORMATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 113, + 133, + 474, + 191 + ], + "lines": [ + { + "bbox": [ + 113, + 133, + 345, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 133, + 140, + 147 + ], + "score": 1.0, + "content": "Hang", + "type": "text" + }, + { + "bbox": [ + 141, + 135, + 174, + 146 + ], + "score": 0.66, + "content": "\\mathbf { G a o ^ { 1 , 3 * } } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 133, + 209, + 147 + ], + "score": 1.0, + "content": "Xizhou", + "type": "text" + }, + { + "bbox": [ + 209, + 135, + 242, + 146 + ], + "score": 0.77, + "content": "\\mathbf { Z } \\mathbf { h } \\mathbf { u } ^ { 2 , 3 * }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 133, + 270, + 147 + ], + "score": 1.0, + "content": ", Steve", + "type": "text" + }, + { + "bbox": [ + 270, + 135, + 291, + 146 + ], + "score": 0.6, + "content": "\\mathbf { L i n ^ { 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 133, + 345, + 147 + ], + "score": 1.0, + "content": ", Jifeng Dai3", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 144, + 474, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 474, + 159 + ], + "score": 1.0, + "content": "1UC Berkeley 2University of Science and Technology of China 3Microsoft Research Asia", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 158, + 378, + 170 + ], + "spans": [ + { + "bbox": [ + 111, + 158, + 378, + 170 + ], + "score": 1.0, + "content": "hangg@eecs.berkeley.edu, ezra0408@mail.ustc.edu.cn", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 169, + 281, + 181 + ], + "spans": [ + { + "bbox": [ + 113, + 169, + 281, + 181 + ], + "score": 1.0, + "content": "{stevelin,jifdai}@microsoft.com", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 180, + 431, + 191 + ], + "spans": [ + { + "bbox": [ + 115, + 180, + 431, + 191 + ], + "score": 1.0, + "content": "http://people.eecs.berkeley.edu/˜hangg/deformable-kernels/", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + } + ], + "index": 4, + "bbox_fs": [ + 111, + 133, + 474, + 191 + ] + }, + { + "type": "title", + "bbox": [ + 277, + 220, + 333, + 232 + ], + "lines": [ + { + "bbox": [ + 277, + 219, + 335, + 233 + ], + "spans": [ + { + "bbox": [ + 277, + 219, + 335, + 233 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 245, + 468, + 355 + ], + "lines": [ + { + "bbox": [ + 141, + 245, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 258 + ], + "score": 1.0, + "content": "Convolutional networks are not aware of an object’s geometric variations, which", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 268 + ], + "score": 1.0, + "content": "leads to inefficient utilization of model and data capacity. To overcome this is-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 469, + 280 + ], + "score": 1.0, + "content": "sue, recent works on deformation modeling seek to spatially reconfigure the data", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 291 + ], + "score": 1.0, + "content": "towards a common arrangement such that semantic recognition suffers less from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 470, + 303 + ], + "score": 1.0, + "content": "deformation. This is typically done by augmenting static operators with learned", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 313 + ], + "score": 1.0, + "content": "free-form sampling grids in the image space, dynamically tuned to the data and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 312, + 469, + 324 + ], + "spans": [ + { + "bbox": [ + 142, + 312, + 469, + 324 + ], + "score": 1.0, + "content": "task for adapting the receptive field. Yet adapting the receptive field does not quite", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 469, + 335 + ], + "score": 1.0, + "content": "reach the actual goal – what really matters to the network is the effective receptive", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 334, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 334, + 469, + 344 + ], + "score": 1.0, + "content": "field (ERF), which reflects how much each pixel contributes. It is thus natural to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 344, + 408, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 408, + 357 + ], + "score": 1.0, + "content": "design other approaches to adapt the ERF directly during runtime.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12.5, + "bbox_fs": [ + 141, + 245, + 470, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 143, + 357, + 468, + 478 + ], + "lines": [ + { + "bbox": [ + 141, + 356, + 470, + 370 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 370 + ], + "score": 1.0, + "content": "In this work, we instantiate one possible solution as Deformable Kernels (DKs), a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 369, + 469, + 380 + ], + "spans": [ + { + "bbox": [ + 142, + 369, + 469, + 380 + ], + "score": 1.0, + "content": "family of novel and generic convolutional operators for handling object deforma-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 379, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 379, + 469, + 391 + ], + "score": 1.0, + "content": "tions by directly adapting the ERF while leaving the receptive field untouched. At", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 390, + 470, + 403 + ], + "spans": [ + { + "bbox": [ + 141, + 390, + 470, + 403 + ], + "score": 1.0, + "content": "the heart of our method is the ability to resample the original kernel space towards", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 401, + 470, + 413 + ], + "spans": [ + { + "bbox": [ + 141, + 401, + 470, + 413 + ], + "score": 1.0, + "content": "recovering the deformation of objects. This approach is justified with theoretical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 412, + 470, + 424 + ], + "spans": [ + { + "bbox": [ + 141, + 412, + 470, + 424 + ], + "score": 1.0, + "content": "insights that the ERF is strictly determined by data sampling locations and ker-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 423, + 470, + 436 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 470, + 436 + ], + "score": 1.0, + "content": "nel values. We implement DKs as generic drop-in replacements of rigid kernels", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 434, + 469, + 446 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 469, + 446 + ], + "score": 1.0, + "content": "and conduct a series of empirical studies whose results conform with our theories.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 142, + 444, + 469, + 457 + ], + "spans": [ + { + "bbox": [ + 142, + 444, + 469, + 457 + ], + "score": 1.0, + "content": "Over several tasks and standard base models, our approach compares favorably", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 456, + 470, + 469 + ], + "spans": [ + { + "bbox": [ + 141, + 456, + 470, + 469 + ], + "score": 1.0, + "content": "against prior works that adapt during runtime. In addition, further experiments", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 467, + 469, + 479 + ], + "spans": [ + { + "bbox": [ + 141, + 467, + 469, + 479 + ], + "score": 1.0, + "content": "suggest a working mechanism orthogonal and complementary to previous works.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23, + "bbox_fs": [ + 141, + 356, + 470, + 479 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 500, + 206, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 208, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 208, + 515 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 504, + 580 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "The rich diversity of object appearance in images arises from variations in object semantics and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "deformation. Semantics describe the high-level abstraction of what we perceive, and deformation", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "defines the geometric transformation tied to specific data (Gibson, 1950). Humans are remarkably", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 558, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 571 + ], + "score": 1.0, + "content": "adept at making abstractions of the world (Hudson & Manning, 2019); we see in raw visual signals,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 569, + 359, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 359, + 583 + ], + "score": 1.0, + "content": "abstract semantics away from deformation, and form concepts.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 524, + 505, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 504, + 652 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 599 + ], + "score": 1.0, + "content": "Interestingly, modern convolutional networks follow an analogous process by making abstractions", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "through local connectivity and weight sharing (Zhang, 2019). However, such a mechanism is an", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "inefficient one, as the emergent representations encode semantics and deformation together, instead", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 619, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 631 + ], + "score": 1.0, + "content": "of as disjoint notions. Though a convolution responds accordingly to each input, how it responds is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "primarily programmed by its rigid kernels, as in Figure 1(a, b). In effect, this consumes large model", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 641, + 307, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 307, + 653 + ], + "score": 1.0, + "content": "capacity and data modes (Shelhamer et al., 2019).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 585, + 506, + 653 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 658, + 504, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 658, + 505, + 670 + ], + "score": 1.0, + "content": "We argue that the awareness of deformations emerges from adaptivity – the ability to adapt at run-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "time (Kanazawa et al., 2016; Jia et al., 2016; Li et al., 2019). Modeling of geometric transformations", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "has been a constant pursuit for vision researchers over decades (Lowe et al., 1999; Lazebnik et al.,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "2006; Jaderberg et al., 2015; Dai et al., 2017). A basic idea is to spatially recompose data towards", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 702, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 506, + 714 + ], + "score": 1.0, + "content": "a common mode such that semantic recognition suffers less from deformation. A recent work that", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "is representative of this direction is Deformable Convolution (Dai et al., 2017; Zhu et al., 2019). As", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "shown in Figure 1(c), it augments the convolutions with free-form sampling grids in the data space.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "It is previously justified as adapting receptive field, or what we phrase as the “theoretical receptive", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "field”, that defines which input pixels can contribute to the final output. However, theoretical re-", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "ceptive field does not measure how much impact an input pixel actually has. On the other hand,", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "Luo et al. (2016) propose to measure the effective receptive field (ERF), i.e. the partial derivative of", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "the output with respect to the input data, to quantify the exact contribution of each raw pixel to the", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "convolution. Since adapting the theoretical receptive field is not the goal but a means to adapt the", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 495, + 401, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 401, + 507 + ], + "score": 1.0, + "content": "ERF, why not directly tune the ERF to specific data and tasks at runtime?", + "type": "text", + "cross_page": true + } + ], + "index": 20 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 658, + 506, + 714 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 81, + 495, + 275 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 81, + 495, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 81, + 495, + 275 + ], + "spans": [ + { + "bbox": [ + 117, + 81, + 495, + 275 + ], + "score": 0.979, + "type": "image", + "image_path": "a917c7f3a2bc01e2dd8b2cc933d94663ffbda1043f70c227f8d800fbf1704a7e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 81, + 495, + 145.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 145.66666666666669, + 495, + 210.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 210.33333333333337, + 495, + 275.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 283, + 505, + 383 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 372, + 295 + ], + "score": 1.0, + "content": "Figure 1: Adaptation for deformation. We show how different", + "type": "text" + }, + { + "bbox": [ + 373, + 284, + 397, + 294 + ], + "score": 0.88, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "convolutions interact with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 446, + 307 + ], + "score": 1.0, + "content": "deformations of two images. Kernel spaces are visualized as flat 2D Gaussians. Each “", + "type": "text" + }, + { + "bbox": [ + 446, + 295, + 460, + 305 + ], + "score": 0.67, + "content": "\\cdot + \\overrightarrow { \\mathbf { \\Gamma } }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "indicates a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "computation between a pixel and a kernel value sampled from the data and kernel space. Their colors", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "represent corresponding kernel values. (a, b) Rigid kernels cannot adapt to specific deformations,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 326, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 341 + ], + "score": 1.0, + "content": "thus consuming large model and data capacity. (c) Deformable Convolutions (Dai et al., 2017)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "reconfigure data towards common arrangement to counter the effects of geometric deformation. (d)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "Our Deformable Kernels (DKs) instead resample kernels and, in effect, adapt kernel spaces while", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "score": 1.0, + "content": "leaving the data untouched. Note that (b) and (c) share kernel values but sample different data", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 372, + 437, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 437, + 384 + ], + "score": 1.0, + "content": "locations, while (b) and (d) share data locations but sample different kernel values.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "is representative of this direction is Deformable Convolution (Dai et al., 2017; Zhu et al., 2019). As", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 431 + ], + "score": 1.0, + "content": "shown in Figure 1(c), it augments the convolutions with free-form sampling grids in the data space.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "It is previously justified as adapting receptive field, or what we phrase as the “theoretical receptive", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "field”, that defines which input pixels can contribute to the final output. However, theoretical re-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 451, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 463 + ], + "score": 1.0, + "content": "ceptive field does not measure how much impact an input pixel actually has. On the other hand,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "Luo et al. (2016) propose to measure the effective receptive field (ERF), i.e. the partial derivative of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "the output with respect to the input data, to quantify the exact contribution of each raw pixel to the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "convolution. Since adapting the theoretical receptive field is not the goal but a means to adapt the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 495, + 401, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 401, + 507 + ], + "score": 1.0, + "content": "ERF, why not directly tune the ERF to specific data and tasks at runtime?", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 504, + 524 + ], + "score": 1.0, + "content": "Toward this end, we introduce Deformable Kernels (DKs), a family of novel and generic convolu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "tional operators for deformation modeling. We aim to augment rigid kernels with the expressiveness", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "to directly interact with the ERF of the computation during inference. Illustrated in Figure 1(d), DKs", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "learn free-form offsets on kernel coordinates to deform the original kernel space towards specific", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "data modality, rather than recomposing data. This can directly adapt ERF while leaving receptive", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "field untouched. The design of DKs that is agnostic to data coordinates naturally leads to two vari-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "ants – the global DK and the local DK, which behave differently in practice as we later investigate.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "We justify our approach with theoretical results which show that ERF is strictly determined by data", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "sampling locations and kernel values. Used as a generic drop-in replacement of rigid kernels, DKs", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "achieve empirical results coherent with our developed theory. Concretely, we evaluate our operator", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "with standard base models on image classification and object detection. DKs perform favorably", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "against prior works that adapt during runtime. With both quantitative and qualitative analysis, we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 643, + 481, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 481, + 656 + ], + "score": 1.0, + "content": "further show that DKs can work orthogonally and complementarily with previous techniques.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 217, + 692 + ], + "lines": [ + { + "bbox": [ + 104, + 678, + 218, + 695 + ], + "spans": [ + { + "bbox": [ + 104, + 678, + 218, + 695 + ], + "score": 1.0, + "content": "2 RELATED WORKS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 504, + 722 + ], + "score": 1.0, + "content": "We distinguish our work within the context of deformation modeling as our goal, and dynamic", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 720, + 203, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 203, + 733 + ], + "score": 1.0, + "content": "inference as our means.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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": [ + 117, + 81, + 495, + 275 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 81, + 495, + 275 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 81, + 495, + 275 + ], + "spans": [ + { + "bbox": [ + 117, + 81, + 495, + 275 + ], + "score": 0.979, + "type": "image", + "image_path": "a917c7f3a2bc01e2dd8b2cc933d94663ffbda1043f70c227f8d800fbf1704a7e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 81, + 495, + 145.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 145.66666666666669, + 495, + 210.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 210.33333333333337, + 495, + 275.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 283, + 505, + 383 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 372, + 295 + ], + "score": 1.0, + "content": "Figure 1: Adaptation for deformation. We show how different", + "type": "text" + }, + { + "bbox": [ + 373, + 284, + 397, + 294 + ], + "score": 0.88, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "convolutions interact with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 446, + 307 + ], + "score": 1.0, + "content": "deformations of two images. Kernel spaces are visualized as flat 2D Gaussians. Each “", + "type": "text" + }, + { + "bbox": [ + 446, + 295, + 460, + 305 + ], + "score": 0.67, + "content": "\\cdot + \\overrightarrow { \\mathbf { \\Gamma } }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "indicates a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "computation between a pixel and a kernel value sampled from the data and kernel space. Their colors", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "represent corresponding kernel values. (a, b) Rigid kernels cannot adapt to specific deformations,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 326, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 341 + ], + "score": 1.0, + "content": "thus consuming large model and data capacity. (c) Deformable Convolutions (Dai et al., 2017)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "reconfigure data towards common arrangement to counter the effects of geometric deformation. (d)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "Our Deformable Kernels (DKs) instead resample kernels and, in effect, adapt kernel spaces while", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "score": 1.0, + "content": "leaving the data untouched. Note that (b) and (c) share kernel values but sample different data", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 372, + 437, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 437, + 384 + ], + "score": 1.0, + "content": "locations, while (b) and (d) share data locations but sample different kernel values.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 505, + 506 + ], + "lines": [], + "index": 16, + "bbox_fs": [ + 105, + 407, + 506, + 507 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 504, + 524 + ], + "score": 1.0, + "content": "Toward this end, we introduce Deformable Kernels (DKs), a family of novel and generic convolu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "tional operators for deformation modeling. We aim to augment rigid kernels with the expressiveness", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "to directly interact with the ERF of the computation during inference. Illustrated in Figure 1(d), DKs", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "learn free-form offsets on kernel coordinates to deform the original kernel space towards specific", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 569 + ], + "score": 1.0, + "content": "data modality, rather than recomposing data. This can directly adapt ERF while leaving receptive", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "field untouched. The design of DKs that is agnostic to data coordinates naturally leads to two vari-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "ants – the global DK and the local DK, which behave differently in practice as we later investigate.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "We justify our approach with theoretical results which show that ERF is strictly determined by data", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "sampling locations and kernel values. Used as a generic drop-in replacement of rigid kernels, DKs", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "achieve empirical results coherent with our developed theory. Concretely, we evaluate our operator", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "with standard base models on image classification and object detection. DKs perform favorably", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "against prior works that adapt during runtime. With both quantitative and qualitative analysis, we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 643, + 481, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 481, + 656 + ], + "score": 1.0, + "content": "further show that DKs can work orthogonally and complementarily with previous techniques.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 511, + 506, + 656 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 217, + 692 + ], + "lines": [ + { + "bbox": [ + 104, + 678, + 218, + 695 + ], + "spans": [ + { + "bbox": [ + 104, + 678, + 218, + 695 + ], + "score": 1.0, + "content": "2 RELATED WORKS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 504, + 722 + ], + "score": 1.0, + "content": "We distinguish our work within the context of deformation modeling as our goal, and dynamic", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 720, + 203, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 203, + 733 + ], + "score": 1.0, + "content": "inference as our means.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 708, + 504, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Deformation Modeling: We refer to deformation modeling as learning geometric transformations", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "in 2D image space without regard to 3D. One angle to attack deformation modeling is to craft cer-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "tain geometric invariances into networks. However, this usually requires designs specific to certain", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "kinds of deformation, such as shift, rotation, reflection and scaling (Sifre & Mallat, 2013; Bruna &", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "Mallat, 2013; Kanazawa et al., 2016; Cohen & Welling, 2016; Worrall et al., 2017; Esteves et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "2018). Another line of work on this topic learns to recompose data by either semi-parameterized or", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "completely free-form sampling in image space: Spatial Transformers (Jaderberg et al., 2015) learns", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "2D affine transformations, Deep Geometric Matchers (Rocco et al., 2017) learns thin-plate spline", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "transformations, Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019) learns free-form trans-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 180, + 155, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 155, + 193 + ], + "score": 1.0, + "content": "formations.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "We interpret sampling data space as an effective approach to adapt effective receptive fields (ERF)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "by directly changing receptive field. At a high-level, our Deformable Kernels (DKs) share intu-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 234 + ], + "score": 1.0, + "content": "itions with this line of works for learning geometric transformations, yet are instantiated by learning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "to sample in kernel space which directly adapt ERF while leaving theoretical receptive fields un-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "touched. While kernel space sampling is also studied in Deformable Filter (Xiong et al., 2019) and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "KPConv (Thomas et al., 2019), but in their contexts, sampling grids are computed from input point", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 263, + 288, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 288, + 277 + ], + "score": 1.0, + "content": "clouds rather than learned from data corpora.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "Dynamic Inference: Dynamic inference adapts the model or individual operators to the observed", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "data. The computation of our approach differs from self-attention (Vaswani et al., 2017; Wang et al.,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "2018) in which linear or convolution modules are augmented with subsequent queries that extract", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "from the same input. We consider our closest related works in terms of implementation as those", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "approaches that adapt convolutional kernels at run time. It includes but is not limited to Dynamic", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 334, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 104, + 334, + 506, + 349 + ], + "score": 1.0, + "content": "Filters (Jia et al., 2016), Selective Kernels (Li et al., 2019) and Conditional Convolutions (Yang", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "et al., 2019). All of these approaches can learn and infer customized kernel spaces with respect", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "to the data, but are either less inefficient or are loosely formulated. Dynamic Filters generate new", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 368, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 380 + ], + "score": 1.0, + "content": "filters from scratch, while Conditional Convolutions extend this idea to linear combinations of a set", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "of synthesized filters. Selective Kernels are, on the other hand, comparably lightweight, but aggre-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "score": 1.0, + "content": "gating activations from kernels of different size is not as compact as directly sampling the original", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "score": 1.0, + "content": "kernel space. Another line of works contemporary to ours (Shelhamer et al., 2019; Wang et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 411, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 426 + ], + "score": 1.0, + "content": "2019) is to compose free-form filters with structured Gaussian filters, which essentially transforms", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "score": 1.0, + "content": "kernel spaces by data. Our DKs also differ from these works with the emphasize of direct adaptation", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "the ERF rather than the theoretical receptive field. As mentioned previously, the true goal should be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 446, + 498, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 498, + 457 + ], + "score": 1.0, + "content": "to adapt the ERF, and to our knowledge, our work is the first to study dynamic inference of ERFs.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 108, + 473, + 182, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 185, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 185, + 488 + ], + "score": 1.0, + "content": "3 APPROACH", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "We start by covering preliminaries on convolutions, including the definition of effective receptive", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 509, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 521 + ], + "score": 1.0, + "content": "field (ERF). We then formulate a theoretical framework for analyzing ERFs, and thus motivate our", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "Deformable Kernels (DKs). We finally elaborate different DK variants within such a framework.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 531, + 386, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 386, + 544 + ], + "score": 1.0, + "content": "Our analysis suggests compatibility between DKs and the prior work.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "title", + "bbox": [ + 108, + 556, + 259, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 261, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 261, + 570 + ], + "score": 1.0, + "content": "3.1 A DIVE INTO CONVOLUTIONS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 575, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 331, + 590 + ], + "score": 1.0, + "content": "2D Convolution: Let us first consider an input image", + "type": "text" + }, + { + "bbox": [ + 331, + 576, + 380, + 587 + ], + "score": 0.92, + "content": "\\pmb { I } \\in \\mathbb { R } ^ { D \\times D }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 575, + 505, + 590 + ], + "score": 1.0, + "content": ". By convolving it with a ker-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 585, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 123, + 601 + ], + "score": 1.0, + "content": "nel", + "type": "text" + }, + { + "bbox": [ + 123, + 587, + 182, + 598 + ], + "score": 0.9, + "content": "\\pmb { W } \\in \\mathbb { R } ^ { K \\times K }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 585, + 345, + 601 + ], + "score": 1.0, + "content": "of stride 1, we have an output image", + "type": "text" + }, + { + "bbox": [ + 345, + 589, + 355, + 599 + ], + "score": 0.82, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 585, + 505, + 601 + ], + "score": 1.0, + "content": "whose pixel values at each coordi-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 598, + 238, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 125, + 612 + ], + "score": 1.0, + "content": "nate", + "type": "text" + }, + { + "bbox": [ + 126, + 599, + 155, + 611 + ], + "score": 0.91, + "content": "j \\in \\mathbb R ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 598, + 238, + 612 + ], + "score": 1.0, + "content": "can be expressed as", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 266, + 609, + 345, + 634 + ], + "lines": [ + { + "bbox": [ + 266, + 609, + 345, + 634 + ], + "spans": [ + { + "bbox": [ + 266, + 609, + 345, + 634 + ], + "score": 0.95, + "content": "O _ { j } = \\sum _ { k \\in \\mathcal { K } } I _ { j + k } W _ { k } ,", + "type": "interline_equation", + "image_path": "785106a0ed31fb4225fadcd0ab4bb64dbc2b62be4ec704e70c987b4c0793f814.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 266, + 609, + 345, + 634 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 269, + 650 + ], + "score": 1.0, + "content": "by enumerating discrete kernel positions", + "type": "text" + }, + { + "bbox": [ + 270, + 639, + 277, + 648 + ], + "score": 0.83, + "content": "\\boldsymbol { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 637, + 352, + 650 + ], + "score": 1.0, + "content": "within the support", + "type": "text" + }, + { + "bbox": [ + 352, + 637, + 450, + 650 + ], + "score": 0.91, + "content": "\\mathcal { K } = [ - K / 2 , K / 2 ] ^ { 2 } \\cap \\mathbb { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 637, + 505, + 650 + ], + "score": 1.0, + "content": ". This defines", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 649, + 276, + 661 + ], + "spans": [ + { + "bbox": [ + 104, + 649, + 276, + 661 + ], + "score": 1.0, + "content": "a rigid grid for sampling data and kernels.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 299, + 678 + ], + "score": 1.0, + "content": "Theoretical Receptive Field: The same kernel", + "type": "text" + }, + { + "bbox": [ + 299, + 666, + 312, + 676 + ], + "score": 0.68, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "can be stacked repeatedly to form a linear con-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 206, + 689 + ], + "score": 1.0, + "content": "volutional network with", + "type": "text" + }, + { + "bbox": [ + 206, + 679, + 213, + 687 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "layers. The theoretical receptive field can then be imagined as the “ac-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "cumulative coverage” of kernels at each given output unit on the input image by deconvolving back", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "through the network. This property characterizes a set of input fields that could fire percepts onto", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "corresponding output pixels. The size of a theoretical receptive field scales linearly with respect to", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 333, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 181, + 733 + ], + "score": 1.0, + "content": "the network depth", + "type": "text" + }, + { + "bbox": [ + 181, + 722, + 188, + 730 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 720, + 252, + 733 + ], + "score": 1.0, + "content": "and kernel size", + "type": "text" + }, + { + "bbox": [ + 252, + 721, + 262, + 730 + ], + "score": 0.79, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 720, + 333, + 733 + ], + "score": 1.0, + "content": "(He et al., 2016).", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Deformation Modeling: We refer to deformation modeling as learning geometric transformations", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "in 2D image space without regard to 3D. One angle to attack deformation modeling is to craft cer-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "tain geometric invariances into networks. However, this usually requires designs specific to certain", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "kinds of deformation, such as shift, rotation, reflection and scaling (Sifre & Mallat, 2013; Bruna &", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "Mallat, 2013; Kanazawa et al., 2016; Cohen & Welling, 2016; Worrall et al., 2017; Esteves et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "2018). Another line of work on this topic learns to recompose data by either semi-parameterized or", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "completely free-form sampling in image space: Spatial Transformers (Jaderberg et al., 2015) learns", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "2D affine transformations, Deep Geometric Matchers (Rocco et al., 2017) learns thin-plate spline", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "transformations, Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019) learns free-form trans-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 180, + 155, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 155, + 193 + ], + "score": 1.0, + "content": "formations.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 82, + 506, + 193 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "We interpret sampling data space as an effective approach to adapt effective receptive fields (ERF)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "by directly changing receptive field. At a high-level, our Deformable Kernels (DKs) share intu-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 234 + ], + "score": 1.0, + "content": "itions with this line of works for learning geometric transformations, yet are instantiated by learning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "to sample in kernel space which directly adapt ERF while leaving theoretical receptive fields un-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "touched. While kernel space sampling is also studied in Deformable Filter (Xiong et al., 2019) and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "KPConv (Thomas et al., 2019), but in their contexts, sampling grids are computed from input point", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 263, + 288, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 288, + 277 + ], + "score": 1.0, + "content": "clouds rather than learned from data corpora.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 197, + 506, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "Dynamic Inference: Dynamic inference adapts the model or individual operators to the observed", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "data. The computation of our approach differs from self-attention (Vaswani et al., 2017; Wang et al.,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "2018) in which linear or convolution modules are augmented with subsequent queries that extract", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "from the same input. We consider our closest related works in terms of implementation as those", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "approaches that adapt convolutional kernels at run time. It includes but is not limited to Dynamic", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 334, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 104, + 334, + 506, + 349 + ], + "score": 1.0, + "content": "Filters (Jia et al., 2016), Selective Kernels (Li et al., 2019) and Conditional Convolutions (Yang", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "et al., 2019). All of these approaches can learn and infer customized kernel spaces with respect", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "to the data, but are either less inefficient or are loosely formulated. Dynamic Filters generate new", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 368, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 380 + ], + "score": 1.0, + "content": "filters from scratch, while Conditional Convolutions extend this idea to linear combinations of a set", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "of synthesized filters. Selective Kernels are, on the other hand, comparably lightweight, but aggre-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "score": 1.0, + "content": "gating activations from kernels of different size is not as compact as directly sampling the original", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "score": 1.0, + "content": "kernel space. Another line of works contemporary to ours (Shelhamer et al., 2019; Wang et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 411, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 426 + ], + "score": 1.0, + "content": "2019) is to compose free-form filters with structured Gaussian filters, which essentially transforms", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 436 + ], + "score": 1.0, + "content": "kernel spaces by data. Our DKs also differ from these works with the emphasize of direct adaptation", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "the ERF rather than the theoretical receptive field. As mentioned previously, the true goal should be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 446, + 498, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 498, + 457 + ], + "score": 1.0, + "content": "to adapt the ERF, and to our knowledge, our work is the first to study dynamic inference of ERFs.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 24.5, + "bbox_fs": [ + 104, + 281, + 506, + 457 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 473, + 182, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 185, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 185, + 488 + ], + "score": 1.0, + "content": "3 APPROACH", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "We start by covering preliminaries on convolutions, including the definition of effective receptive", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 509, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 521 + ], + "score": 1.0, + "content": "field (ERF). We then formulate a theoretical framework for analyzing ERFs, and thus motivate our", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "Deformable Kernels (DKs). We finally elaborate different DK variants within such a framework.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 531, + 386, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 386, + 544 + ], + "score": 1.0, + "content": "Our analysis suggests compatibility between DKs and the prior work.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 498, + 505, + 544 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 556, + 259, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 261, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 261, + 570 + ], + "score": 1.0, + "content": "3.1 A DIVE INTO CONVOLUTIONS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 575, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 331, + 590 + ], + "score": 1.0, + "content": "2D Convolution: Let us first consider an input image", + "type": "text" + }, + { + "bbox": [ + 331, + 576, + 380, + 587 + ], + "score": 0.92, + "content": "\\pmb { I } \\in \\mathbb { R } ^ { D \\times D }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 575, + 505, + 590 + ], + "score": 1.0, + "content": ". By convolving it with a ker-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 585, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 123, + 601 + ], + "score": 1.0, + "content": "nel", + "type": "text" + }, + { + "bbox": [ + 123, + 587, + 182, + 598 + ], + "score": 0.9, + "content": "\\pmb { W } \\in \\mathbb { R } ^ { K \\times K }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 585, + 345, + 601 + ], + "score": 1.0, + "content": "of stride 1, we have an output image", + "type": "text" + }, + { + "bbox": [ + 345, + 589, + 355, + 599 + ], + "score": 0.82, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 585, + 505, + 601 + ], + "score": 1.0, + "content": "whose pixel values at each coordi-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 598, + 238, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 125, + 612 + ], + "score": 1.0, + "content": "nate", + "type": "text" + }, + { + "bbox": [ + 126, + 599, + 155, + 611 + ], + "score": 0.91, + "content": "j \\in \\mathbb R ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 598, + 238, + 612 + ], + "score": 1.0, + "content": "can be expressed as", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 575, + 505, + 612 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 266, + 609, + 345, + 634 + ], + "lines": [ + { + "bbox": [ + 266, + 609, + 345, + 634 + ], + "spans": [ + { + "bbox": [ + 266, + 609, + 345, + 634 + ], + "score": 0.95, + "content": "O _ { j } = \\sum _ { k \\in \\mathcal { K } } I _ { j + k } W _ { k } ,", + "type": "interline_equation", + "image_path": "785106a0ed31fb4225fadcd0ab4bb64dbc2b62be4ec704e70c987b4c0793f814.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 266, + 609, + 345, + 634 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 269, + 650 + ], + "score": 1.0, + "content": "by enumerating discrete kernel positions", + "type": "text" + }, + { + "bbox": [ + 270, + 639, + 277, + 648 + ], + "score": 0.83, + "content": "\\boldsymbol { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 637, + 352, + 650 + ], + "score": 1.0, + "content": "within the support", + "type": "text" + }, + { + "bbox": [ + 352, + 637, + 450, + 650 + ], + "score": 0.91, + "content": "\\mathcal { K } = [ - K / 2 , K / 2 ] ^ { 2 } \\cap \\mathbb { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 637, + 505, + 650 + ], + "score": 1.0, + "content": ". This defines", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 649, + 276, + 661 + ], + "spans": [ + { + "bbox": [ + 104, + 649, + 276, + 661 + ], + "score": 1.0, + "content": "a rigid grid for sampling data and kernels.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 104, + 637, + 505, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 299, + 678 + ], + "score": 1.0, + "content": "Theoretical Receptive Field: The same kernel", + "type": "text" + }, + { + "bbox": [ + 299, + 666, + 312, + 676 + ], + "score": 0.68, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "can be stacked repeatedly to form a linear con-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 206, + 689 + ], + "score": 1.0, + "content": "volutional network with", + "type": "text" + }, + { + "bbox": [ + 206, + 679, + 213, + 687 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "layers. The theoretical receptive field can then be imagined as the “ac-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "cumulative coverage” of kernels at each given output unit on the input image by deconvolving back", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "through the network. This property characterizes a set of input fields that could fire percepts onto", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "corresponding output pixels. The size of a theoretical receptive field scales linearly with respect to", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 333, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 181, + 733 + ], + "score": 1.0, + "content": "the network depth", + "type": "text" + }, + { + "bbox": [ + 181, + 722, + 188, + 730 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 720, + 252, + 733 + ], + "score": 1.0, + "content": "and kernel size", + "type": "text" + }, + { + "bbox": [ + 252, + 721, + 262, + 730 + ], + "score": 0.79, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 720, + 333, + 733 + ], + "score": 1.0, + "content": "(He et al., 2016).", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 665, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Effective Receptive Field: Intuitively, not all pixels within a theoretical receptive field contribute", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "equally. The influence of different fields varies from region to region thanks to the central emphasis", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "of stacked convolutions and also to the non-linearity induced by activations. The notion of effective", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "receptive field (ERF) (Luo et al., 2016) is thus introduced to measure the impact of each input pixel", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "on the output at given locations. It is defined as a partial derivative field of the output with respect", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "to the input data. With the numerical approximations in linear convolution networks, the ERF was", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 148, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 104, + 148, + 506, + 162 + ], + "score": 1.0, + "content": "previously identified as a Gaussian-like soft attention map over input images whose size grows", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 291, + 172 + ], + "score": 1.0, + "content": "fractionally with respect to the network depth", + "type": "text" + }, + { + "bbox": [ + 291, + 161, + 298, + 169 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 159, + 420, + 172 + ], + "score": 1.0, + "content": "and linearly to the kernel size", + "type": "text" + }, + { + "bbox": [ + 420, + 159, + 430, + 169 + ], + "score": 0.58, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 159, + 505, + 172 + ], + "score": 1.0, + "content": ". Empirical results", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "validate this idea under more complex and realistic cases when networks exploit non-linearities,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 322, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 322, + 195 + ], + "score": 1.0, + "content": "striding, padding, skip connections, and subsampling.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 107, + 205, + 325, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 326, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 326, + 218 + ], + "score": 1.0, + "content": "3.2 ANALYSIS ON EFFECTIVE RECEPTIVE FIELDS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "We aim to revisit and complement the previous analysis on ERFs by Luo et al. (2016). While the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 237, + 504, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 496, + 249 + ], + "score": 1.0, + "content": "previous analysis concentrates on studying the expectation of an ERF, i.e., when network depth", + "type": "text" + }, + { + "bbox": [ + 497, + 240, + 504, + 247 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "approaches infinity or all kernels are randomly distributed without learning in general, our analysis", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "score": 1.0, + "content": "focuses on how we can perturb the computation such that the change in ERF is predictable, given an", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 271, + 235, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 235, + 282 + ], + "score": 1.0, + "content": "input and a set of kernel spaces.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 108, + 286, + 504, + 345 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "We start our analysis by considering a linear convolutional network, without any unit activations,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 297, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 430, + 311 + ], + "score": 1.0, + "content": "as defined in Section 3.1. For consistency, superscripts are introduced to image", + "type": "text" + }, + { + "bbox": [ + 431, + 299, + 438, + 308 + ], + "score": 0.66, + "content": "\\pmb { I }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 297, + 470, + 311 + ], + "score": 1.0, + "content": ", kernel", + "type": "text" + }, + { + "bbox": [ + 470, + 298, + 484, + 308 + ], + "score": 0.66, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 297, + 506, + 311 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 228, + 321 + ], + "score": 1.0, + "content": "subscripts to kernel positions", + "type": "text" + }, + { + "bbox": [ + 228, + 309, + 236, + 319 + ], + "score": 0.8, + "content": "\\boldsymbol { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 309, + 320, + 321 + ], + "score": 1.0, + "content": "to denote the index", + "type": "text" + }, + { + "bbox": [ + 320, + 309, + 363, + 321 + ], + "score": 0.92, + "content": "s \\in [ 1 , n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "of each layer. Formally, given an", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 103, + 317, + 508, + 338 + ], + "spans": [ + { + "bbox": [ + 103, + 317, + 156, + 338 + ], + "score": 1.0, + "content": "input image", + "type": "text" + }, + { + "bbox": [ + 156, + 320, + 173, + 331 + ], + "score": 0.89, + "content": "\\pmb { I } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 317, + 223, + 338 + ], + "score": 1.0, + "content": "and a set of", + "type": "text" + }, + { + "bbox": [ + 223, + 321, + 254, + 332 + ], + "score": 0.91, + "content": "K \\times K", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 317, + 286, + 338 + ], + "score": 1.0, + "content": "kernels", + "type": "text" + }, + { + "bbox": [ + 286, + 320, + 334, + 334 + ], + "score": 0.93, + "content": "\\{ W ^ { ( s ) } \\} _ { s = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 317, + 508, + 338 + ], + "score": 1.0, + "content": "of stride 1, we can roll out the final output", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 332, + 259, + 347 + ], + "spans": [ + { + "bbox": [ + 107, + 333, + 147, + 344 + ], + "score": 0.91, + "content": "{ \\cal O } \\equiv { \\cal I } ^ { ( n ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 332, + 259, + 347 + ], + "score": 1.0, + "content": "by unfolding Equation 1 as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 347, + 450, + 412 + ], + "lines": [ + { + "bbox": [ + 160, + 347, + 450, + 412 + ], + "spans": [ + { + "bbox": [ + 160, + 347, + 450, + 412 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { { \\cal I } _ { j } ^ { ( n ) } = \\displaystyle \\sum _ { k _ { n } \\in { \\cal K } } { \\cal I } _ { j + k _ { n } } ^ { ( n - 1 ) } { \\cal W } _ { k _ { n } } ^ { ( n ) } = \\displaystyle \\sum _ { ( k _ { n - 1 } , k _ { n } ) \\in { \\cal K } ^ { 2 } \\atop { } } { \\cal I } _ { j + k _ { n } + k _ { n - 1 } } ^ { ( n - 2 ) } { \\cal W } _ { k _ { n } } ^ { ( n ) } { \\cal W } _ { k _ { n - 1 } } ^ { ( n - 1 ) } = \\cdots } } \\\\ { { = \\displaystyle \\sum _ { ( k _ { 1 } , k _ { 2 } , \\ldots , k _ { n } ) \\in { \\cal K } ^ { n } } \\left( { \\cal I } _ { j + \\sum _ { s = 1 } ^ { n } k _ { s } } ^ { ( 0 ) } \\cdot \\prod _ { s = 1 } ^ { n } { \\cal W } _ { k _ { s } } ^ { ( s ) } \\right) . } } \\end{array}", + "type": "interline_equation", + "image_path": "4d0f6925d3ec949e4c211ec9d9a44a37fd7e28b11787c611b96446eb3b2375cd.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 160, + 347, + 450, + 368.6666666666667 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 160, + 368.6666666666667, + 450, + 390.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 160, + 390.33333333333337, + 450, + 412.00000000000006 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 504, + 442 + ], + "lines": [ + { + "bbox": [ + 103, + 411, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 103, + 411, + 304, + 435 + ], + "score": 1.0, + "content": "By definition1, the effective receptive field value", + "type": "text" + }, + { + "bbox": [ + 304, + 415, + 411, + 432 + ], + "score": 0.94, + "content": "\\mathcal { R } ^ { ( n ) } ( i ; j ) \\equiv \\partial I _ { j } ^ { ( n ) } / \\partial I _ { i } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 411, + 497, + 435 + ], + "score": 1.0, + "content": "of output coordinate", + "type": "text" + }, + { + "bbox": [ + 497, + 419, + 504, + 430 + ], + "score": 0.78, + "content": "j", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 428, + 302, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 214, + 444 + ], + "score": 1.0, + "content": "that takes input coordinate", + "type": "text" + }, + { + "bbox": [ + 214, + 431, + 220, + 440 + ], + "score": 0.74, + "content": "_ i", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 428, + 302, + 444 + ], + "score": 1.0, + "content": "can be computed by", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 444, + 429, + 480 + ], + "lines": [ + { + "bbox": [ + 181, + 444, + 429, + 480 + ], + "spans": [ + { + "bbox": [ + 181, + 444, + 429, + 480 + ], + "score": 0.94, + "content": "\\mathcal { R } ^ { ( n ) } ( i ; j ) = \\sum _ { ( k _ { 1 } , k _ { 2 } , \\ldots , k _ { n } ) \\in K ^ { n } } \\left( \\mathbb { 1 } \\left[ j + \\sum _ { s = 1 } ^ { n } k _ { s } = i \\right] \\cdot \\prod _ { s = 1 } ^ { n } W _ { k _ { s } } ^ { ( s ) } \\right) ,", + "type": "interline_equation", + "image_path": "ec2d0d9d897f7d295a2405647b593cf7b72e33ca535ed390b0fef2039da745c3.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 181, + 444, + 429, + 456.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 181, + 456.0, + 429, + 468.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 181, + 468.0, + 429, + 480.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 483, + 504, + 508 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 133, + 497 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 484, + 149, + 496 + ], + "score": 0.84, + "content": "\\mathbb { 1 } [ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 482, + 506, + 497 + ], + "score": 1.0, + "content": "denotes the indicator function. This result indicates that ERF is related only to the data", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 421, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 180, + 508 + ], + "score": 1.0, + "content": "sampling location", + "type": "text" + }, + { + "bbox": [ + 180, + 497, + 186, + 507 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 495, + 291, + 508 + ], + "score": 1.0, + "content": ", kernel sampling location", + "type": "text" + }, + { + "bbox": [ + 291, + 497, + 299, + 506 + ], + "score": 0.8, + "content": "\\boldsymbol { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 495, + 383, + 508 + ], + "score": 1.0, + "content": ", and kernel matrices", + "type": "text" + }, + { + "bbox": [ + 383, + 495, + 417, + 508 + ], + "score": 0.93, + "content": "\\{ W ^ { ( s ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 495, + 421, + 508 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 105, + 514, + 504, + 540 + ], + "lines": [ + { + "bbox": [ + 103, + 512, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 103, + 512, + 176, + 530 + ], + "score": 1.0, + "content": "If we replace the", + "type": "text" + }, + { + "bbox": [ + 177, + 515, + 193, + 526 + ], + "score": 0.88, + "content": "m ^ { \\mathrm { t h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 512, + 222, + 530 + ], + "score": 1.0, + "content": "kernel", + "type": "text" + }, + { + "bbox": [ + 222, + 515, + 249, + 526 + ], + "score": 0.89, + "content": "W ^ { ( m ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 512, + 278, + 530 + ], + "score": 1.0, + "content": "with a", + "type": "text" + }, + { + "bbox": [ + 278, + 516, + 302, + 527 + ], + "score": 0.88, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 512, + 418, + 530 + ], + "score": 1.0, + "content": "kernel of a single parameter", + "type": "text" + }, + { + "bbox": [ + 419, + 513, + 445, + 531 + ], + "score": 0.92, + "content": "W _ { \\tilde { \\boldsymbol { k } } _ { m } } ^ { ( m ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 512, + 505, + 530 + ], + "score": 1.0, + "content": "sampled from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 529, + 235, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 235, + 541 + ], + "score": 1.0, + "content": "it, the value of ERF becomes to", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 542, + 480, + 579 + ], + "lines": [ + { + "bbox": [ + 129, + 542, + 480, + 579 + ], + "spans": [ + { + "bbox": [ + 129, + 542, + 480, + 579 + ], + "score": 0.94, + "content": "\\mathcal { R } ^ { ( n ) } ( i ; j , \\tilde { k } _ { m } ) = \\sum _ { ( k _ { 1 } , \\dots , k _ { m - 1 } , k _ { m + 1 } , \\dots , k _ { n } ) \\in K ^ { n - 1 } } \\left( \\mathbb { 1 } \\left[ j + \\sum _ { s \\in \\mathbb { S } } k _ { s } = i \\right] \\cdot \\prod _ { s \\in \\mathbb { S } } W _ { k _ { s } } ^ { ( s ) } \\cdot W _ { \\tilde { k } _ { m } } ^ { ( m ) } \\right) ,", + "type": "interline_equation", + "image_path": "66c20b6fedf15073b1f4ca65c88e193746eefcc42b4c08648ed593835186f268.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 129, + 542, + 480, + 554.3333333333334 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 129, + 554.3333333333334, + 480, + 566.6666666666667 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 129, + 566.6666666666667, + 480, + 579.0000000000001 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 133, + 596 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 583, + 201, + 596 + ], + "score": 0.93, + "content": "\\mathbb { S } = [ 1 , n ] \\backslash \\{ m \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 582, + 236, + 596 + ], + "score": 1.0, + "content": ". Since a", + "type": "text" + }, + { + "bbox": [ + 237, + 585, + 267, + 594 + ], + "score": 0.91, + "content": "K \\times K", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 582, + 435, + 596 + ], + "score": 1.0, + "content": "kernel can be deemed as a composition of", + "type": "text" + }, + { + "bbox": [ + 435, + 583, + 473, + 594 + ], + "score": 0.91, + "content": "K ^ { 2 } 1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "kernels", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 594, + 379, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 379, + 607 + ], + "score": 1.0, + "content": "distributed on a square grid, Equation 3 can thus be reformulated as", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 609, + 385, + 635 + ], + "lines": [ + { + "bbox": [ + 226, + 609, + 385, + 635 + ], + "spans": [ + { + "bbox": [ + 226, + 609, + 385, + 635 + ], + "score": 0.95, + "content": "\\mathcal { R } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in \\mathcal { K } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } ) .", + "type": "interline_equation", + "image_path": "43a24a6a8f988ab4faf961b6a24ca6e2147206fc9cdc64011e67bf2ebce57d98.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 226, + 609, + 385, + 635 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 504, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 390, + 652 + ], + "score": 1.0, + "content": "For the case of complex non-linearities, where we here consider post", + "type": "text" + }, + { + "bbox": [ + 390, + 638, + 420, + 649 + ], + "score": 0.47, + "content": "\\mathrm { R e L U } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 637, + 504, + 652 + ], + "score": 1.0, + "content": "activations in Equa-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 648, + 137, + 663 + ], + "spans": [ + { + "bbox": [ + 104, + 648, + 137, + 663 + ], + "score": 1.0, + "content": "tion 1,", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 658, + 362, + 684 + ], + "lines": [ + { + "bbox": [ + 249, + 658, + 362, + 684 + ], + "spans": [ + { + "bbox": [ + 249, + 658, + 362, + 684 + ], + "score": 0.94, + "content": "O _ { j } = \\operatorname* { m a x } ( \\sum _ { k \\in \\mathcal { K } } I _ { j + k } W _ { k } , 0 ) .", + "type": "interline_equation", + "image_path": "d447143cee3fafd22e3729f18038dc74d9d5120ef20da1e1bad0d9d8716dadaf.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 249, + 658, + 362, + 684 + ], + "spans": [], + "index": 41 + } + ] + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 690, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 687, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 117, + 687, + 488, + 705 + ], + "score": 1.0, + "content": "1 The original definition of ERF in Luo et al. (2016) focuses on the central coordinate of the output, i.e.", + "type": "text" + }, + { + "bbox": [ + 488, + 691, + 506, + 701 + ], + "score": 0.86, + "content": "j =", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 107, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 107, + 701, + 128, + 712 + ], + "score": 0.87, + "content": "( 0 , 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 700, + 396, + 712 + ], + "score": 1.0, + "content": ", to partially avoid the effects of zero padding. In this work, we will keep", + "type": "text" + }, + { + "bbox": [ + 396, + 701, + 402, + 711 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "in favor of generality while", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 711, + 252, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 215, + 723 + ], + "score": 1.0, + "content": "explicitly assuming input size", + "type": "text" + }, + { + "bbox": [ + 216, + 711, + 248, + 720 + ], + "score": 0.86, + "content": "D \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 711, + 252, + 723 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 718, + 500, + 736 + ], + "spans": [ + { + "bbox": [ + 117, + 718, + 500, + 736 + ], + "score": 1.0, + "content": "2 Our analysis currently only considers the ReLU network for its nice properties and prevalent popularity.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Effective Receptive Field: Intuitively, not all pixels within a theoretical receptive field contribute", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "equally. The influence of different fields varies from region to region thanks to the central emphasis", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "of stacked convolutions and also to the non-linearity induced by activations. The notion of effective", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "receptive field (ERF) (Luo et al., 2016) is thus introduced to measure the impact of each input pixel", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "on the output at given locations. It is defined as a partial derivative field of the output with respect", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "to the input data. With the numerical approximations in linear convolution networks, the ERF was", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 148, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 104, + 148, + 506, + 162 + ], + "score": 1.0, + "content": "previously identified as a Gaussian-like soft attention map over input images whose size grows", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 291, + 172 + ], + "score": 1.0, + "content": "fractionally with respect to the network depth", + "type": "text" + }, + { + "bbox": [ + 291, + 161, + 298, + 169 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 159, + 420, + 172 + ], + "score": 1.0, + "content": "and linearly to the kernel size", + "type": "text" + }, + { + "bbox": [ + 420, + 159, + 430, + 169 + ], + "score": 0.58, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 159, + 505, + 172 + ], + "score": 1.0, + "content": ". Empirical results", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "validate this idea under more complex and realistic cases when networks exploit non-linearities,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 322, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 322, + 195 + ], + "score": 1.0, + "content": "striding, padding, skip connections, and subsampling.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 82, + 506, + 195 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 205, + 325, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 326, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 326, + 218 + ], + "score": 1.0, + "content": "3.2 ANALYSIS ON EFFECTIVE RECEPTIVE FIELDS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 226, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 238 + ], + "score": 1.0, + "content": "We aim to revisit and complement the previous analysis on ERFs by Luo et al. (2016). While the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 237, + 504, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 496, + 249 + ], + "score": 1.0, + "content": "previous analysis concentrates on studying the expectation of an ERF, i.e., when network depth", + "type": "text" + }, + { + "bbox": [ + 497, + 240, + 504, + 247 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "approaches infinity or all kernels are randomly distributed without learning in general, our analysis", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 272 + ], + "score": 1.0, + "content": "focuses on how we can perturb the computation such that the change in ERF is predictable, given an", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 271, + 235, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 235, + 282 + ], + "score": 1.0, + "content": "input and a set of kernel spaces.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 226, + 506, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 286, + 504, + 345 + ], + "lines": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "We start our analysis by considering a linear convolutional network, without any unit activations,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 297, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 430, + 311 + ], + "score": 1.0, + "content": "as defined in Section 3.1. For consistency, superscripts are introduced to image", + "type": "text" + }, + { + "bbox": [ + 431, + 299, + 438, + 308 + ], + "score": 0.66, + "content": "\\pmb { I }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 297, + 470, + 311 + ], + "score": 1.0, + "content": ", kernel", + "type": "text" + }, + { + "bbox": [ + 470, + 298, + 484, + 308 + ], + "score": 0.66, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 297, + 506, + 311 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 228, + 321 + ], + "score": 1.0, + "content": "subscripts to kernel positions", + "type": "text" + }, + { + "bbox": [ + 228, + 309, + 236, + 319 + ], + "score": 0.8, + "content": "\\boldsymbol { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 309, + 320, + 321 + ], + "score": 1.0, + "content": "to denote the index", + "type": "text" + }, + { + "bbox": [ + 320, + 309, + 363, + 321 + ], + "score": 0.92, + "content": "s \\in [ 1 , n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "of each layer. Formally, given an", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 103, + 317, + 508, + 338 + ], + "spans": [ + { + "bbox": [ + 103, + 317, + 156, + 338 + ], + "score": 1.0, + "content": "input image", + "type": "text" + }, + { + "bbox": [ + 156, + 320, + 173, + 331 + ], + "score": 0.89, + "content": "\\pmb { I } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 317, + 223, + 338 + ], + "score": 1.0, + "content": "and a set of", + "type": "text" + }, + { + "bbox": [ + 223, + 321, + 254, + 332 + ], + "score": 0.91, + "content": "K \\times K", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 317, + 286, + 338 + ], + "score": 1.0, + "content": "kernels", + "type": "text" + }, + { + "bbox": [ + 286, + 320, + 334, + 334 + ], + "score": 0.93, + "content": "\\{ W ^ { ( s ) } \\} _ { s = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 317, + 508, + 338 + ], + "score": 1.0, + "content": "of stride 1, we can roll out the final output", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 332, + 259, + 347 + ], + "spans": [ + { + "bbox": [ + 107, + 333, + 147, + 344 + ], + "score": 0.91, + "content": "{ \\cal O } \\equiv { \\cal I } ^ { ( n ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 332, + 259, + 347 + ], + "score": 1.0, + "content": "by unfolding Equation 1 as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 103, + 286, + 508, + 347 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 347, + 450, + 412 + ], + "lines": [ + { + "bbox": [ + 160, + 347, + 450, + 412 + ], + "spans": [ + { + "bbox": [ + 160, + 347, + 450, + 412 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { { \\cal I } _ { j } ^ { ( n ) } = \\displaystyle \\sum _ { k _ { n } \\in { \\cal K } } { \\cal I } _ { j + k _ { n } } ^ { ( n - 1 ) } { \\cal W } _ { k _ { n } } ^ { ( n ) } = \\displaystyle \\sum _ { ( k _ { n - 1 } , k _ { n } ) \\in { \\cal K } ^ { 2 } \\atop { } } { \\cal I } _ { j + k _ { n } + k _ { n - 1 } } ^ { ( n - 2 ) } { \\cal W } _ { k _ { n } } ^ { ( n ) } { \\cal W } _ { k _ { n - 1 } } ^ { ( n - 1 ) } = \\cdots } } \\\\ { { = \\displaystyle \\sum _ { ( k _ { 1 } , k _ { 2 } , \\ldots , k _ { n } ) \\in { \\cal K } ^ { n } } \\left( { \\cal I } _ { j + \\sum _ { s = 1 } ^ { n } k _ { s } } ^ { ( 0 ) } \\cdot \\prod _ { s = 1 } ^ { n } { \\cal W } _ { k _ { s } } ^ { ( s ) } \\right) . } } \\end{array}", + "type": "interline_equation", + "image_path": "4d0f6925d3ec949e4c211ec9d9a44a37fd7e28b11787c611b96446eb3b2375cd.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 160, + 347, + 450, + 368.6666666666667 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 160, + 368.6666666666667, + 450, + 390.33333333333337 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 160, + 390.33333333333337, + 450, + 412.00000000000006 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 504, + 442 + ], + "lines": [ + { + "bbox": [ + 103, + 411, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 103, + 411, + 304, + 435 + ], + "score": 1.0, + "content": "By definition1, the effective receptive field value", + "type": "text" + }, + { + "bbox": [ + 304, + 415, + 411, + 432 + ], + "score": 0.94, + "content": "\\mathcal { R } ^ { ( n ) } ( i ; j ) \\equiv \\partial I _ { j } ^ { ( n ) } / \\partial I _ { i } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 411, + 497, + 435 + ], + "score": 1.0, + "content": "of output coordinate", + "type": "text" + }, + { + "bbox": [ + 497, + 419, + 504, + 430 + ], + "score": 0.78, + "content": "j", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 428, + 302, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 214, + 444 + ], + "score": 1.0, + "content": "that takes input coordinate", + "type": "text" + }, + { + "bbox": [ + 214, + 431, + 220, + 440 + ], + "score": 0.74, + "content": "_ i", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 428, + 302, + 444 + ], + "score": 1.0, + "content": "can be computed by", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 103, + 411, + 504, + 444 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 444, + 429, + 480 + ], + "lines": [ + { + "bbox": [ + 181, + 444, + 429, + 480 + ], + "spans": [ + { + "bbox": [ + 181, + 444, + 429, + 480 + ], + "score": 0.94, + "content": "\\mathcal { R } ^ { ( n ) } ( i ; j ) = \\sum _ { ( k _ { 1 } , k _ { 2 } , \\ldots , k _ { n } ) \\in K ^ { n } } \\left( \\mathbb { 1 } \\left[ j + \\sum _ { s = 1 } ^ { n } k _ { s } = i \\right] \\cdot \\prod _ { s = 1 } ^ { n } W _ { k _ { s } } ^ { ( s ) } \\right) ,", + "type": "interline_equation", + "image_path": "ec2d0d9d897f7d295a2405647b593cf7b72e33ca535ed390b0fef2039da745c3.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 181, + 444, + 429, + 456.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 181, + 456.0, + 429, + 468.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 181, + 468.0, + 429, + 480.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 483, + 504, + 508 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 133, + 497 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 484, + 149, + 496 + ], + "score": 0.84, + "content": "\\mathbb { 1 } [ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 482, + 506, + 497 + ], + "score": 1.0, + "content": "denotes the indicator function. This result indicates that ERF is related only to the data", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 495, + 421, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 180, + 508 + ], + "score": 1.0, + "content": "sampling location", + "type": "text" + }, + { + "bbox": [ + 180, + 497, + 186, + 507 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 495, + 291, + 508 + ], + "score": 1.0, + "content": ", kernel sampling location", + "type": "text" + }, + { + "bbox": [ + 291, + 497, + 299, + 506 + ], + "score": 0.8, + "content": "\\boldsymbol { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 495, + 383, + 508 + ], + "score": 1.0, + "content": ", and kernel matrices", + "type": "text" + }, + { + "bbox": [ + 383, + 495, + 417, + 508 + ], + "score": 0.93, + "content": "\\{ W ^ { ( s ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 495, + 421, + 508 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 482, + 506, + 508 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 514, + 504, + 540 + ], + "lines": [ + { + "bbox": [ + 103, + 512, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 103, + 512, + 176, + 530 + ], + "score": 1.0, + "content": "If we replace the", + "type": "text" + }, + { + "bbox": [ + 177, + 515, + 193, + 526 + ], + "score": 0.88, + "content": "m ^ { \\mathrm { t h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 512, + 222, + 530 + ], + "score": 1.0, + "content": "kernel", + "type": "text" + }, + { + "bbox": [ + 222, + 515, + 249, + 526 + ], + "score": 0.89, + "content": "W ^ { ( m ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 512, + 278, + 530 + ], + "score": 1.0, + "content": "with a", + "type": "text" + }, + { + "bbox": [ + 278, + 516, + 302, + 527 + ], + "score": 0.88, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 512, + 418, + 530 + ], + "score": 1.0, + "content": "kernel of a single parameter", + "type": "text" + }, + { + "bbox": [ + 419, + 513, + 445, + 531 + ], + "score": 0.92, + "content": "W _ { \\tilde { \\boldsymbol { k } } _ { m } } ^ { ( m ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 512, + 505, + 530 + ], + "score": 1.0, + "content": "sampled from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 529, + 235, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 235, + 541 + ], + "score": 1.0, + "content": "it, the value of ERF becomes to", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 103, + 512, + 505, + 541 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 542, + 480, + 579 + ], + "lines": [ + { + "bbox": [ + 129, + 542, + 480, + 579 + ], + "spans": [ + { + "bbox": [ + 129, + 542, + 480, + 579 + ], + "score": 0.94, + "content": "\\mathcal { R } ^ { ( n ) } ( i ; j , \\tilde { k } _ { m } ) = \\sum _ { ( k _ { 1 } , \\dots , k _ { m - 1 } , k _ { m + 1 } , \\dots , k _ { n } ) \\in K ^ { n - 1 } } \\left( \\mathbb { 1 } \\left[ j + \\sum _ { s \\in \\mathbb { S } } k _ { s } = i \\right] \\cdot \\prod _ { s \\in \\mathbb { S } } W _ { k _ { s } } ^ { ( s ) } \\cdot W _ { \\tilde { k } _ { m } } ^ { ( m ) } \\right) ,", + "type": "interline_equation", + "image_path": "66c20b6fedf15073b1f4ca65c88e193746eefcc42b4c08648ed593835186f268.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 129, + 542, + 480, + 554.3333333333334 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 129, + 554.3333333333334, + 480, + 566.6666666666667 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 129, + 566.6666666666667, + 480, + 579.0000000000001 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 133, + 596 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 583, + 201, + 596 + ], + "score": 0.93, + "content": "\\mathbb { S } = [ 1 , n ] \\backslash \\{ m \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 582, + 236, + 596 + ], + "score": 1.0, + "content": ". Since a", + "type": "text" + }, + { + "bbox": [ + 237, + 585, + 267, + 594 + ], + "score": 0.91, + "content": "K \\times K", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 582, + 435, + 596 + ], + "score": 1.0, + "content": "kernel can be deemed as a composition of", + "type": "text" + }, + { + "bbox": [ + 435, + 583, + 473, + 594 + ], + "score": 0.91, + "content": "K ^ { 2 } 1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "kernels", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 594, + 379, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 379, + 607 + ], + "score": 1.0, + "content": "distributed on a square grid, Equation 3 can thus be reformulated as", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 582, + 505, + 607 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 609, + 385, + 635 + ], + "lines": [ + { + "bbox": [ + 226, + 609, + 385, + 635 + ], + "spans": [ + { + "bbox": [ + 226, + 609, + 385, + 635 + ], + "score": 0.95, + "content": "\\mathcal { R } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in \\mathcal { K } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } ) .", + "type": "interline_equation", + "image_path": "43a24a6a8f988ab4faf961b6a24ca6e2147206fc9cdc64011e67bf2ebce57d98.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 226, + 609, + 385, + 635 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 504, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 390, + 652 + ], + "score": 1.0, + "content": "For the case of complex non-linearities, where we here consider post", + "type": "text" + }, + { + "bbox": [ + 390, + 638, + 420, + 649 + ], + "score": 0.47, + "content": "\\mathrm { R e L U } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 637, + 504, + 652 + ], + "score": 1.0, + "content": "activations in Equa-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 648, + 137, + 663 + ], + "spans": [ + { + "bbox": [ + 104, + 648, + 137, + 663 + ], + "score": 1.0, + "content": "tion 1,", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 104, + 637, + 504, + 663 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 658, + 362, + 684 + ], + "lines": [ + { + "bbox": [ + 249, + 658, + 362, + 684 + ], + "spans": [ + { + "bbox": [ + 249, + 658, + 362, + 684 + ], + "score": 0.94, + "content": "O _ { j } = \\operatorname* { m a x } ( \\sum _ { k \\in \\mathcal { K } } I _ { j + k } W _ { k } , 0 ) .", + "type": "interline_equation", + "image_path": "d447143cee3fafd22e3729f18038dc74d9d5120ef20da1e1bad0d9d8716dadaf.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 249, + 658, + 362, + 684 + ], + "spans": [], + "index": 41 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 373, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 374, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 374, + 97 + ], + "score": 1.0, + "content": "We can follow a similar analysis and derive corresponding ERF as", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 132, + 99, + 507, + 159 + ], + "lines": [ + { + "bbox": [ + 132, + 99, + 507, + 159 + ], + "spans": [ + { + "bbox": [ + 132, + 99, + 507, + 159 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathcal { R } ^ { ' ( n ) } ( i ; j , \\tilde { k } _ { m } ) = \\displaystyle \\sum _ { ( k _ { 1 } , \\cdots , k _ { m - 1 } , k _ { m + 1 } , \\cdots , k _ { n } ) \\in K ^ { n - 1 } } \\left( \\mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \\cdots , k _ { n } , \\tilde { k } _ { m } ) \\cdot \\prod _ { s \\in \\mathbb { S } } W _ { \\tilde { k } _ { s } } ^ { ( s ) } \\cdot W _ { \\tilde { k } _ { m } } ^ { m } \\right) } \\\\ & { \\mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \\cdots , k _ { n } , \\tilde { k } _ { m } ) = \\mathbb { 1 } \\big [ j + \\displaystyle \\sum _ { s \\in \\mathbb { S } } k _ { s } = i \\big ] \\prod _ { s \\in \\mathbb { S } } \\mathbb { 1 } \\big [ \\displaystyle I _ { j } ^ { ( s - 1 ) } W _ { \\tilde { k } _ { s } } ^ { ( s ) } > 0 \\big ] \\mathbb { 1 } \\big [ I _ { j } ^ { ( m - 1 ) } W _ { \\tilde { k } _ { m } } ^ { ( m ) } > 0 \\big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "fd88a68380a532b2d2e5f0806b3d9d35dcad7145d9c4cd642d2e87175b43456d.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 132, + 99, + 507, + 119.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 132, + 119.0, + 507, + 139.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 132, + 139.0, + 507, + 159.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 505, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 426, + 175 + ], + "score": 1.0, + "content": "Here we can see that the ERF becomes data-dependent due to the coefficient", + "type": "text" + }, + { + "bbox": [ + 426, + 164, + 433, + 173 + ], + "score": 0.75, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 164, + 505, + 175 + ], + "score": 1.0, + "content": ", which is tied to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 173, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 173, + 346, + 189 + ], + "score": 1.0, + "content": "input coordinates, kernel sampling locations, and input data", + "type": "text" + }, + { + "bbox": [ + 346, + 174, + 363, + 185 + ], + "score": 0.88, + "content": "\\pmb { I } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 173, + 506, + 189 + ], + "score": 1.0, + "content": ". The more detailed analysis of this", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "coefficient is beyond the scope of this paper. However, it should be noted that this coefficient only", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "“gates” the contribution of the input pixels to the output. So in practice, ERF is “porous” – there are", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 209, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 220 + ], + "score": 1.0, + "content": "inactive (or gated) pixel units irregularly distributed around the ones that fire. This phenomenon also", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "appeared in previous studies (such as in Luo et al. (2016), Figure 1). The maximal size of an ERF is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 230, + 503, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 503, + 243 + ], + "score": 1.0, + "content": "still controlled by the data sampling location and kernel values as in the linear cases in Equation 5.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 247, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 248, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 259 + ], + "score": 1.0, + "content": "A nice property of Equation 4 and Equation 5 is that all computations are linear, making it com-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "patible with any linear sampling operators for querying kernel values of fractional coordinates. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "other words, sampling kernels in effect samples the ERF on the data in the linear case, but also", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "roughly generalizes to non-linear cases as well. This finding motivates our design of Deformable", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 291, + 227, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 227, + 303 + ], + "score": 1.0, + "content": "Kernels (DKs) in Section 3.3.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 316, + 235, + 327 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 236, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 236, + 329 + ], + "score": 1.0, + "content": "3.3 DEFORMABLE KERNELS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 329, + 349 + ], + "score": 1.0, + "content": "In the context of Equation 1, we resample the kernel", + "type": "text" + }, + { + "bbox": [ + 329, + 337, + 343, + 347 + ], + "score": 0.7, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 337, + 504, + 349 + ], + "score": 1.0, + "content": "with a group of learned kernel offsets", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 347, + 475, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 151, + 360 + ], + "score": 1.0, + "content": "denoted as", + "type": "text" + }, + { + "bbox": [ + 152, + 348, + 177, + 360 + ], + "score": 0.93, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 347, + 369, + 360 + ], + "score": 1.0, + "content": "that correspond to each discrete kernel position", + "type": "text" + }, + { + "bbox": [ + 369, + 348, + 376, + 358 + ], + "score": 0.78, + "content": "\\boldsymbol { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 347, + 475, + 360 + ], + "score": 1.0, + "content": ". This defines our DK as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 365, + 353, + 389 + ], + "lines": [ + { + "bbox": [ + 257, + 365, + 353, + 389 + ], + "spans": [ + { + "bbox": [ + 257, + 365, + 353, + 389 + ], + "score": 0.95, + "content": "O _ { j } = \\sum _ { k \\in \\mathcal K } I _ { j + k } W _ { k + \\Delta k } ,", + "type": "interline_equation", + "image_path": "3a071f9861f1e7be515522dff815c71dcaeddb8819e4f0c10a0dc277de76b66f.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 257, + 365, + 353, + 389 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 395, + 204, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 205, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 205, + 408 + ], + "score": 1.0, + "content": "and the value of ERF as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 409, + 401, + 435 + ], + "lines": [ + { + "bbox": [ + 210, + 409, + 401, + 435 + ], + "spans": [ + { + "bbox": [ + 210, + 409, + 401, + 435 + ], + "score": 0.94, + "content": "\\mathcal { R } _ { \\mathrm { D K } } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in { \\mathcal { K } } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } + \\Delta k _ { m } ) .", + "type": "interline_equation", + "image_path": "f56f6e5ab1490d7e415b55fc4a12313b41979597ac64d47ec5fa095c7b81272d.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 210, + 409, + 401, + 435 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 439, + 504, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 453 + ], + "score": 1.0, + "content": "Note that this operation leads to sub-pixel sampling in the kernel space. In practice, we use bilinear", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 450, + 325, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 325, + 463 + ], + "score": 1.0, + "content": "sampling to interpolate within the discrete kernel grid.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "Intuitively, the size (resolution) of the original kernel space can affect sampling performance. Con-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 259, + 491 + ], + "score": 1.0, + "content": "cretely, suppose we want to sample a", + "type": "text" + }, + { + "bbox": [ + 259, + 479, + 284, + 489 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "kernel. DKs do not have any constraint on the size of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 478, + 501 + ], + "score": 1.0, + "content": "the original kernel space, which we call the “scope size” of DKs. That said, we can use a", + "type": "text" + }, + { + "bbox": [ + 479, + 489, + 492, + 500 + ], + "score": 0.44, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 498, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 104, + 498, + 141, + 515 + ], + "score": 1.0, + "content": "any size", + "type": "text" + }, + { + "bbox": [ + 141, + 500, + 154, + 510 + ], + "score": 0.87, + "content": "K ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 498, + 383, + 515 + ], + "score": 1.0, + "content": "even though the number of sampling locations is fixed as", + "type": "text" + }, + { + "bbox": [ + 383, + 500, + 398, + 510 + ], + "score": 0.91, + "content": "K ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 498, + 506, + 515 + ], + "score": 1.0, + "content": ". We can thus exploit large", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 247, + 525 + ], + "score": 1.0, + "content": "kernels – the largest ones can reach", + "type": "text" + }, + { + "bbox": [ + 248, + 512, + 268, + 522 + ], + "score": 0.89, + "content": "9 \\times 9", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 510, + 506, + 525 + ], + "score": 1.0, + "content": "in our experiments with nearly no overhead in computation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "since bilinear interpolations are extremely lightweight compared to the cost of convolutions. This", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "can also increase the number of learning parameters, which in practice might become intractable if", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "not handled properly. In our implementation, we will exploit depthwise convolutions (Howard et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 555, + 453, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 453, + 568 + ], + "score": 1.0, + "content": "2017) such that increasing scope size induces a negligible amount of extra parameters.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "As previously discussed, sampling the kernel space in effect transforms into sampling the ERF.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "On the design of locality and spatial granularity of our learned offsets, DK naturally delivers two", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "variants – the global DK and the local DKs, as illustrated in Figure 2. In both operators, we learn a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 198, + 618 + ], + "score": 1.0, + "content": "kernel offset generator", + "type": "text" + }, + { + "bbox": [ + 199, + 605, + 206, + 615 + ], + "score": 0.83, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "that maps an input patch into a set of kernel offsets that are later applied to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 616, + 161, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 161, + 628 + ], + "score": 1.0, + "content": "rigid kernels.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 218, + 646 + ], + "score": 1.0, + "content": "In practice, we implement", + "type": "text" + }, + { + "bbox": [ + 218, + 633, + 244, + 645 + ], + "score": 0.91, + "content": "\\mathcal { G } _ { \\mathrm { g l o b a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "as a stack of one global average pooling layer, which reduces", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "feature maps into a vector, and another fully-connected layer without non-linearities, which projects", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 653, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 283, + 668 + ], + "score": 1.0, + "content": "the reduced vector into an offset vector of", + "type": "text" + }, + { + "bbox": [ + 283, + 654, + 303, + 665 + ], + "score": 0.9, + "content": "2 K ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 653, + 506, + 668 + ], + "score": 1.0, + "content": "dimensions. Then, we apply these offsets to all", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 470, + 679 + ], + "score": 1.0, + "content": "convolutions for the input image following Equation 7. For local DKs, we implement", + "type": "text" + }, + { + "bbox": [ + 470, + 666, + 492, + 677 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { \\mathrm { l o c a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 664, + 506, + 679 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "an extra convolution that has the same configuration as the target kernel, except that it only has", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 126, + 698 + ], + "score": 0.89, + "content": "2 K ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 687, + 350, + 701 + ], + "score": 1.0, + "content": "output channels. This produces kernel sampling offsets", + "type": "text" + }, + { + "bbox": [ + 350, + 688, + 375, + 700 + ], + "score": 0.93, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "that are additionally indexed by", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 172, + 711 + ], + "score": 1.0, + "content": "output locations", + "type": "text" + }, + { + "bbox": [ + 173, + 699, + 180, + 711 + ], + "score": 0.69, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 699, + 506, + 711 + ], + "score": 1.0, + "content": ". It should be noted that similar designs were also discussed in Jia et al. (2016), in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "which filters are generated given either an image or individual patches from scratch rather than by", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 719, + 155, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 155, + 735 + ], + "score": 1.0, + "content": "resampling.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 373, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 374, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 374, + 97 + ], + "score": 1.0, + "content": "We can follow a similar analysis and derive corresponding ERF as", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 80, + 374, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 132, + 99, + 507, + 159 + ], + "lines": [ + { + "bbox": [ + 132, + 99, + 507, + 159 + ], + "spans": [ + { + "bbox": [ + 132, + 99, + 507, + 159 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathcal { R } ^ { ' ( n ) } ( i ; j , \\tilde { k } _ { m } ) = \\displaystyle \\sum _ { ( k _ { 1 } , \\cdots , k _ { m - 1 } , k _ { m + 1 } , \\cdots , k _ { n } ) \\in K ^ { n - 1 } } \\left( \\mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \\cdots , k _ { n } , \\tilde { k } _ { m } ) \\cdot \\prod _ { s \\in \\mathbb { S } } W _ { \\tilde { k } _ { s } } ^ { ( s ) } \\cdot W _ { \\tilde { k } _ { m } } ^ { m } \\right) } \\\\ & { \\mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \\cdots , k _ { n } , \\tilde { k } _ { m } ) = \\mathbb { 1 } \\big [ j + \\displaystyle \\sum _ { s \\in \\mathbb { S } } k _ { s } = i \\big ] \\prod _ { s \\in \\mathbb { S } } \\mathbb { 1 } \\big [ \\displaystyle I _ { j } ^ { ( s - 1 ) } W _ { \\tilde { k } _ { s } } ^ { ( s ) } > 0 \\big ] \\mathbb { 1 } \\big [ I _ { j } ^ { ( m - 1 ) } W _ { \\tilde { k } _ { m } } ^ { ( m ) } > 0 \\big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "fd88a68380a532b2d2e5f0806b3d9d35dcad7145d9c4cd642d2e87175b43456d.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 132, + 99, + 507, + 119.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 132, + 119.0, + 507, + 139.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 132, + 139.0, + 507, + 159.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 505, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 426, + 175 + ], + "score": 1.0, + "content": "Here we can see that the ERF becomes data-dependent due to the coefficient", + "type": "text" + }, + { + "bbox": [ + 426, + 164, + 433, + 173 + ], + "score": 0.75, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 164, + 505, + 175 + ], + "score": 1.0, + "content": ", which is tied to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 173, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 173, + 346, + 189 + ], + "score": 1.0, + "content": "input coordinates, kernel sampling locations, and input data", + "type": "text" + }, + { + "bbox": [ + 346, + 174, + 363, + 185 + ], + "score": 0.88, + "content": "\\pmb { I } ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 173, + 506, + 189 + ], + "score": 1.0, + "content": ". The more detailed analysis of this", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "coefficient is beyond the scope of this paper. However, it should be noted that this coefficient only", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "“gates” the contribution of the input pixels to the output. So in practice, ERF is “porous” – there are", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 209, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 220 + ], + "score": 1.0, + "content": "inactive (or gated) pixel units irregularly distributed around the ones that fire. This phenomenon also", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 232 + ], + "score": 1.0, + "content": "appeared in previous studies (such as in Luo et al. (2016), Figure 1). The maximal size of an ERF is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 230, + 503, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 503, + 243 + ], + "score": 1.0, + "content": "still controlled by the data sampling location and kernel values as in the linear cases in Equation 5.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 164, + 506, + 243 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 247, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 248, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 259 + ], + "score": 1.0, + "content": "A nice property of Equation 4 and Equation 5 is that all computations are linear, making it com-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 270 + ], + "score": 1.0, + "content": "patible with any linear sampling operators for querying kernel values of fractional coordinates. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "other words, sampling kernels in effect samples the ERF on the data in the linear case, but also", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "roughly generalizes to non-linear cases as well. This finding motivates our design of Deformable", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 291, + 227, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 227, + 303 + ], + "score": 1.0, + "content": "Kernels (DKs) in Section 3.3.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 248, + 505, + 303 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 316, + 235, + 327 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 236, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 236, + 329 + ], + "score": 1.0, + "content": "3.3 DEFORMABLE KERNELS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 329, + 349 + ], + "score": 1.0, + "content": "In the context of Equation 1, we resample the kernel", + "type": "text" + }, + { + "bbox": [ + 329, + 337, + 343, + 347 + ], + "score": 0.7, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 337, + 504, + 349 + ], + "score": 1.0, + "content": "with a group of learned kernel offsets", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 347, + 475, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 151, + 360 + ], + "score": 1.0, + "content": "denoted as", + "type": "text" + }, + { + "bbox": [ + 152, + 348, + 177, + 360 + ], + "score": 0.93, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 347, + 369, + 360 + ], + "score": 1.0, + "content": "that correspond to each discrete kernel position", + "type": "text" + }, + { + "bbox": [ + 369, + 348, + 376, + 358 + ], + "score": 0.78, + "content": "\\boldsymbol { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 347, + 475, + 360 + ], + "score": 1.0, + "content": ". This defines our DK as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 337, + 504, + 360 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 365, + 353, + 389 + ], + "lines": [ + { + "bbox": [ + 257, + 365, + 353, + 389 + ], + "spans": [ + { + "bbox": [ + 257, + 365, + 353, + 389 + ], + "score": 0.95, + "content": "O _ { j } = \\sum _ { k \\in \\mathcal K } I _ { j + k } W _ { k + \\Delta k } ,", + "type": "interline_equation", + "image_path": "3a071f9861f1e7be515522dff815c71dcaeddb8819e4f0c10a0dc277de76b66f.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 257, + 365, + 353, + 389 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 395, + 204, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 205, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 205, + 408 + ], + "score": 1.0, + "content": "and the value of ERF as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 394, + 205, + 408 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 409, + 401, + 435 + ], + "lines": [ + { + "bbox": [ + 210, + 409, + 401, + 435 + ], + "spans": [ + { + "bbox": [ + 210, + 409, + 401, + 435 + ], + "score": 0.94, + "content": "\\mathcal { R } _ { \\mathrm { D K } } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in { \\mathcal { K } } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } + \\Delta k _ { m } ) .", + "type": "interline_equation", + "image_path": "f56f6e5ab1490d7e415b55fc4a12313b41979597ac64d47ec5fa095c7b81272d.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 210, + 409, + 401, + 435 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 439, + 504, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 453 + ], + "score": 1.0, + "content": "Note that this operation leads to sub-pixel sampling in the kernel space. In practice, we use bilinear", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 450, + 325, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 325, + 463 + ], + "score": 1.0, + "content": "sampling to interpolate within the discrete kernel grid.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 438, + 505, + 463 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "Intuitively, the size (resolution) of the original kernel space can affect sampling performance. Con-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 259, + 491 + ], + "score": 1.0, + "content": "cretely, suppose we want to sample a", + "type": "text" + }, + { + "bbox": [ + 259, + 479, + 284, + 489 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "kernel. DKs do not have any constraint on the size of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 478, + 501 + ], + "score": 1.0, + "content": "the original kernel space, which we call the “scope size” of DKs. That said, we can use a", + "type": "text" + }, + { + "bbox": [ + 479, + 489, + 492, + 500 + ], + "score": 0.44, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 498, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 104, + 498, + 141, + 515 + ], + "score": 1.0, + "content": "any size", + "type": "text" + }, + { + "bbox": [ + 141, + 500, + 154, + 510 + ], + "score": 0.87, + "content": "K ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 498, + 383, + 515 + ], + "score": 1.0, + "content": "even though the number of sampling locations is fixed as", + "type": "text" + }, + { + "bbox": [ + 383, + 500, + 398, + 510 + ], + "score": 0.91, + "content": "K ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 498, + 506, + 515 + ], + "score": 1.0, + "content": ". We can thus exploit large", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 247, + 525 + ], + "score": 1.0, + "content": "kernels – the largest ones can reach", + "type": "text" + }, + { + "bbox": [ + 248, + 512, + 268, + 522 + ], + "score": 0.89, + "content": "9 \\times 9", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 510, + 506, + 525 + ], + "score": 1.0, + "content": "in our experiments with nearly no overhead in computation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "since bilinear interpolations are extremely lightweight compared to the cost of convolutions. This", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "can also increase the number of learning parameters, which in practice might become intractable if", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "not handled properly. In our implementation, we will exploit depthwise convolutions (Howard et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 555, + 453, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 453, + 568 + ], + "score": 1.0, + "content": "2017) such that increasing scope size induces a negligible amount of extra parameters.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 467, + 506, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "As previously discussed, sampling the kernel space in effect transforms into sampling the ERF.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "On the design of locality and spatial granularity of our learned offsets, DK naturally delivers two", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "variants – the global DK and the local DKs, as illustrated in Figure 2. In both operators, we learn a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 198, + 618 + ], + "score": 1.0, + "content": "kernel offset generator", + "type": "text" + }, + { + "bbox": [ + 199, + 605, + 206, + 615 + ], + "score": 0.83, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "that maps an input patch into a set of kernel offsets that are later applied to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 616, + 161, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 161, + 628 + ], + "score": 1.0, + "content": "rigid kernels.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 572, + 505, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 218, + 646 + ], + "score": 1.0, + "content": "In practice, we implement", + "type": "text" + }, + { + "bbox": [ + 218, + 633, + 244, + 645 + ], + "score": 0.91, + "content": "\\mathcal { G } _ { \\mathrm { g l o b a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "as a stack of one global average pooling layer, which reduces", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "feature maps into a vector, and another fully-connected layer without non-linearities, which projects", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 653, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 283, + 668 + ], + "score": 1.0, + "content": "the reduced vector into an offset vector of", + "type": "text" + }, + { + "bbox": [ + 283, + 654, + 303, + 665 + ], + "score": 0.9, + "content": "2 K ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 653, + 506, + 668 + ], + "score": 1.0, + "content": "dimensions. Then, we apply these offsets to all", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 470, + 679 + ], + "score": 1.0, + "content": "convolutions for the input image following Equation 7. For local DKs, we implement", + "type": "text" + }, + { + "bbox": [ + 470, + 666, + 492, + 677 + ], + "score": 0.89, + "content": "\\mathcal { G } _ { \\mathrm { l o c a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 664, + 506, + 679 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "an extra convolution that has the same configuration as the target kernel, except that it only has", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 126, + 698 + ], + "score": 0.89, + "content": "2 K ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 687, + 350, + 701 + ], + "score": 1.0, + "content": "output channels. This produces kernel sampling offsets", + "type": "text" + }, + { + "bbox": [ + 350, + 688, + 375, + 700 + ], + "score": 0.93, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "that are additionally indexed by", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 172, + 711 + ], + "score": 1.0, + "content": "output locations", + "type": "text" + }, + { + "bbox": [ + 173, + 699, + 180, + 711 + ], + "score": 0.69, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 699, + 506, + 711 + ], + "score": 1.0, + "content": ". It should be noted that similar designs were also discussed in Jia et al. (2016), in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "which filters are generated given either an image or individual patches from scratch rather than by", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 719, + 155, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 155, + 735 + ], + "score": 1.0, + "content": "resampling.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 633, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 81, + 495, + 260 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 81, + 495, + 260 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 81, + 495, + 260 + ], + "spans": [ + { + "bbox": [ + 120, + 81, + 495, + 260 + ], + "score": 0.973, + "type": "image", + "image_path": "2bb9668aaa37218849f82168db9cfaca57d102ffed1c046e386e2dacf5e7d991.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 81, + 495, + 140.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 140.66666666666666, + 495, + 200.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 200.33333333333331, + 495, + 260.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 270, + 505, + 315 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "Figure 2: Instantiations. We show how DK variants works with an example image that contains", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "a large and a small object. (a) The global DK learns one set of kernel sampling grid given an input", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "image and apply it to all data positions. (b) The local DK adapts kernels for each input patches, and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 302, + 304, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 304, + 317 + ], + "score": 1.0, + "content": "induces better locality for deformation modeling.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Intuitively, we expect the global DK to adapt kernel space between different images but not within", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "a single input. The local DK can further adpat to specific image patches: for smaller objects, it is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "score": 1.0, + "content": "better to have shaper kernels and thus denser ERF; for larger objects, flatter kernels can be more", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "beneficial for accumulating a wider ERF. On a high level, local DKs can preserve better locality and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 372, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 386 + ], + "score": 1.0, + "content": "have larger freedom to adapt kernel spaces comparing to its global counterpart. We later compare", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 384, + 248, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 248, + 397 + ], + "score": 1.0, + "content": "these operators in our experiments.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 408, + 315, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 315, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 315, + 421 + ], + "score": 1.0, + "content": "3.4 LINK WITH DEFORMABLE CONVOLUTIONS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 429, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "The core idea of DKs is to learn adaptive offsets to sample the kernel space for modeling deforma-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "tion, which makes them similar to Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019), at", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "both the conceptual and implementation levels. Here, we distinguish DKs from Deformable Convo-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 463, + 275, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 275, + 473 + ], + "score": 1.0, + "content": "lutions and show how they can be unified.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 110, + 479, + 374, + 490 + ], + "lines": [ + { + "bbox": [ + 108, + 477, + 376, + 492 + ], + "spans": [ + { + "bbox": [ + 108, + 477, + 376, + 492 + ], + "score": 1.0, + "content": "Deformable Convolutions can be reformulated in a general form as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 492, + 353, + 517 + ], + "lines": [ + { + "bbox": [ + 258, + 492, + 353, + 517 + ], + "spans": [ + { + "bbox": [ + 258, + 492, + 353, + 517 + ], + "score": 0.95, + "content": "O _ { j } = \\sum _ { k \\in \\mathcal { K } } I _ { j + k + \\Delta j } W _ { k } ,", + "type": "interline_equation", + "image_path": "efaef5c86c9f740a90478babf1316252a167b47cdfdcaa5be7194b813e6d9bff.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 258, + 492, + 353, + 517 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 519, + 504, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 297, + 533 + ], + "score": 1.0, + "content": "where they aim to learn a group of data offsets", + "type": "text" + }, + { + "bbox": [ + 297, + 519, + 322, + 532 + ], + "score": 0.93, + "content": "\\{ \\Delta j \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 520, + 477, + 533 + ], + "score": 1.0, + "content": "with respect to discrete data positions", + "type": "text" + }, + { + "bbox": [ + 477, + 520, + 483, + 532 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 520, + 505, + 533 + ], + "score": 1.0, + "content": ". For", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 531, + 389, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 389, + 543 + ], + "score": 1.0, + "content": "consistency for analysis, the value of effective receptive field becomes", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 544, + 400, + 570 + ], + "lines": [ + { + "bbox": [ + 211, + 544, + 400, + 570 + ], + "spans": [ + { + "bbox": [ + 211, + 544, + 400, + 570 + ], + "score": 0.94, + "content": "\\mathcal { R } _ { \\mathrm { D C } } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in \\mathcal { K } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } + \\Delta j _ { m } , k _ { m } ) .", + "type": "interline_equation", + "image_path": "7c245ee76fcf8f76a73be5d04308fd0b312e6965271bcc1a3fb5805d4dbe3ebe.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 211, + 544, + 400, + 570 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "This approach essentially recomposes the input image towards common modes such that semantic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "recognition suffers less from deformation. Moreover, according to our previous analysis in Equa-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "tion 5, sampling data is another way of sampling the ERF. This, to a certain extent, also explains", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 604, + 495, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 495, + 617 + ], + "score": 1.0, + "content": "why Deformable Convolutions are well suited for learning deformation-agnostic representations.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 503, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "score": 1.0, + "content": "Moreover, we can learn both data and kernel offsets in one convolutional operator. Conceptually,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 632, + 396, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 396, + 645 + ], + "score": 1.0, + "content": "this can be done by merging Equation 7 with Equation 9, which leads to", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 646, + 421, + 697 + ], + "lines": [ + { + "bbox": [ + 190, + 646, + 421, + 697 + ], + "spans": [ + { + "bbox": [ + 190, + 646, + 421, + 697 + ], + "score": 0.92, + "content": "\\begin{array} { c } { { \\displaystyle { \\cal O } _ { j } = \\displaystyle \\sum _ { k \\in { \\cal K } } { \\cal I } _ { j + k + \\Delta j } W _ { k + \\Delta k } , } } \\\\ { { \\displaystyle \\mathcal { R } _ { \\mathrm { D C + D K } } ^ { ( n ) } ( i ; j ) = \\displaystyle \\sum _ { k _ { m } \\in { \\cal K } } { \\cal R } ^ { ( n ) } ( i ; j + k _ { m } + \\Delta j _ { m } , k _ { m } + \\Delta k _ { m } ) . } } \\end{array}", + "type": "interline_equation", + "image_path": "959a93bfb29f3ef6ec6a295944b46034218c0d6a06f2e29aa1487d882023ad74.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 190, + 646, + 421, + 663.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 190, + 663.0, + 421, + 680.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 190, + 680.0, + 421, + 697.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "We also investigate this operator in our experiments. Although the two techniques may be viewed as", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "serving a similar purpose, we find the collaboration between Deformable Kernels and Deformable", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 720, + 399, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 399, + 734 + ], + "score": 1.0, + "content": "Convolutions to be powerful in practice, suggesting strong compatibility.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 120, + 81, + 495, + 260 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 120, + 81, + 495, + 260 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 81, + 495, + 260 + ], + "spans": [ + { + "bbox": [ + 120, + 81, + 495, + 260 + ], + "score": 0.973, + "type": "image", + "image_path": "2bb9668aaa37218849f82168db9cfaca57d102ffed1c046e386e2dacf5e7d991.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 120, + 81, + 495, + 140.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 120, + 140.66666666666666, + 495, + 200.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 200.33333333333331, + 495, + 260.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 270, + 505, + 315 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "Figure 2: Instantiations. We show how DK variants works with an example image that contains", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "a large and a small object. (a) The global DK learns one set of kernel sampling grid given an input", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "image and apply it to all data positions. (b) The local DK adapts kernels for each input patches, and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 302, + 304, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 304, + 317 + ], + "score": 1.0, + "content": "induces better locality for deformation modeling.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Intuitively, we expect the global DK to adapt kernel space between different images but not within", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "a single input. The local DK can further adpat to specific image patches: for smaller objects, it is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "score": 1.0, + "content": "better to have shaper kernels and thus denser ERF; for larger objects, flatter kernels can be more", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "beneficial for accumulating a wider ERF. On a high level, local DKs can preserve better locality and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 372, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 386 + ], + "score": 1.0, + "content": "have larger freedom to adapt kernel spaces comparing to its global counterpart. We later compare", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 384, + 248, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 248, + 397 + ], + "score": 1.0, + "content": "these operators in our experiments.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 329, + 506, + 397 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 408, + 315, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 315, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 315, + 421 + ], + "score": 1.0, + "content": "3.4 LINK WITH DEFORMABLE CONVOLUTIONS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 429, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "The core idea of DKs is to learn adaptive offsets to sample the kernel space for modeling deforma-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "tion, which makes them similar to Deformable Convolutions (Dai et al., 2017; Zhu et al., 2019), at", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 464 + ], + "score": 1.0, + "content": "both the conceptual and implementation levels. Here, we distinguish DKs from Deformable Convo-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 463, + 275, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 275, + 473 + ], + "score": 1.0, + "content": "lutions and show how they can be unified.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 428, + 505, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 479, + 374, + 490 + ], + "lines": [ + { + "bbox": [ + 108, + 477, + 376, + 492 + ], + "spans": [ + { + "bbox": [ + 108, + 477, + 376, + 492 + ], + "score": 1.0, + "content": "Deformable Convolutions can be reformulated in a general form as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 108, + 477, + 376, + 492 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 492, + 353, + 517 + ], + "lines": [ + { + "bbox": [ + 258, + 492, + 353, + 517 + ], + "spans": [ + { + "bbox": [ + 258, + 492, + 353, + 517 + ], + "score": 0.95, + "content": "O _ { j } = \\sum _ { k \\in \\mathcal { K } } I _ { j + k + \\Delta j } W _ { k } ,", + "type": "interline_equation", + "image_path": "efaef5c86c9f740a90478babf1316252a167b47cdfdcaa5be7194b813e6d9bff.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 258, + 492, + 353, + 517 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 519, + 504, + 542 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 297, + 533 + ], + "score": 1.0, + "content": "where they aim to learn a group of data offsets", + "type": "text" + }, + { + "bbox": [ + 297, + 519, + 322, + 532 + ], + "score": 0.93, + "content": "\\{ \\Delta j \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 520, + 477, + 533 + ], + "score": 1.0, + "content": "with respect to discrete data positions", + "type": "text" + }, + { + "bbox": [ + 477, + 520, + 483, + 532 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 520, + 505, + 533 + ], + "score": 1.0, + "content": ". For", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 531, + 389, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 389, + 543 + ], + "score": 1.0, + "content": "consistency for analysis, the value of effective receptive field becomes", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 519, + 505, + 543 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 544, + 400, + 570 + ], + "lines": [ + { + "bbox": [ + 211, + 544, + 400, + 570 + ], + "spans": [ + { + "bbox": [ + 211, + 544, + 400, + 570 + ], + "score": 0.94, + "content": "\\mathcal { R } _ { \\mathrm { D C } } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in \\mathcal { K } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } + \\Delta j _ { m } , k _ { m } ) .", + "type": "interline_equation", + "image_path": "7c245ee76fcf8f76a73be5d04308fd0b312e6965271bcc1a3fb5805d4dbe3ebe.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 211, + 544, + 400, + 570 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "This approach essentially recomposes the input image towards common modes such that semantic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "recognition suffers less from deformation. Moreover, according to our previous analysis in Equa-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "tion 5, sampling data is another way of sampling the ERF. This, to a certain extent, also explains", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 604, + 495, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 495, + 617 + ], + "score": 1.0, + "content": "why Deformable Convolutions are well suited for learning deformation-agnostic representations.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 571, + 505, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 503, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "score": 1.0, + "content": "Moreover, we can learn both data and kernel offsets in one convolutional operator. Conceptually,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 632, + 396, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 396, + 645 + ], + "score": 1.0, + "content": "this can be done by merging Equation 7 with Equation 9, which leads to", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 620, + 505, + 645 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 646, + 421, + 697 + ], + "lines": [ + { + "bbox": [ + 190, + 646, + 421, + 697 + ], + "spans": [ + { + "bbox": [ + 190, + 646, + 421, + 697 + ], + "score": 0.92, + "content": "\\begin{array} { c } { { \\displaystyle { \\cal O } _ { j } = \\displaystyle \\sum _ { k \\in { \\cal K } } { \\cal I } _ { j + k + \\Delta j } W _ { k + \\Delta k } , } } \\\\ { { \\displaystyle \\mathcal { R } _ { \\mathrm { D C + D K } } ^ { ( n ) } ( i ; j ) = \\displaystyle \\sum _ { k _ { m } \\in { \\cal K } } { \\cal R } ^ { ( n ) } ( i ; j + k _ { m } + \\Delta j _ { m } , k _ { m } + \\Delta k _ { m } ) . } } \\end{array}", + "type": "interline_equation", + "image_path": "959a93bfb29f3ef6ec6a295944b46034218c0d6a06f2e29aa1487d882023ad74.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 190, + 646, + 421, + 663.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 190, + 663.0, + 421, + 680.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 190, + 680.0, + 421, + 697.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "We also investigate this operator in our experiments. Although the two techniques may be viewed as", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "serving a similar purpose, we find the collaboration between Deformable Kernels and Deformable", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 720, + 399, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 399, + 734 + ], + "score": 1.0, + "content": "Convolutions to be powerful in practice, suggesting strong compatibility.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 699, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 200, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 201, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 201, + 96 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 107, + 504, + 151 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "We evaluate our Deformable Kernels (DKs) on image classification using ILSVRC and object detec-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 506, + 130 + ], + "score": 1.0, + "content": "tion using the COCO benchmark. Necessary details are provided to reproduce our results, together", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "score": 1.0, + "content": "with descriptions on base models and strong baselines for all experiments and ablations. For task-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 361, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 361, + 153 + ], + "score": 1.0, + "content": "specific considerations, we refer to each corresponding section.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 156, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 505, + 169 + ], + "score": 1.0, + "content": "Implementation Details: We implement our operators in PyTorch and CUDA. We exploit depth-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 167, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 506, + 180 + ], + "score": 1.0, + "content": "wise convolutions when designing our operator for better computational efficiency3. We initialize", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 178, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 506, + 192 + ], + "score": 1.0, + "content": "kernel grids to be uniformly distributed within the scope size. For the kernel offset generator, we set", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "its learning rate to be a fraction of that of the main network, which we cross-validate for each base", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "model. We also find it important to clip sampling locations inside the original kernel space, such", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 212, + 239, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 124, + 225 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 212, + 178, + 222 + ], + "score": 0.91, + "content": "\\pmb { k } + \\Delta \\pmb { k } \\in \\mathcal { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 212, + 239, + 225 + ], + "score": 1.0, + "content": "in Equation 7.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 229, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 240 + ], + "score": 1.0, + "content": "Base Models: We choose our base models to be ResNet-50 (He et al., 2016) and MobileNet-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "V2 (Sandler et al., 2018), following the standard practice for most vision applications. As men-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "tioned, we exploit depthwise convolution and thus make changes to the ResNet model. Concretely,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 261, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 336, + 274 + ], + "score": 1.0, + "content": "we define our ResNet-50-DW base model by replacing all", + "type": "text" + }, + { + "bbox": [ + 337, + 262, + 359, + 272 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 261, + 505, + 274 + ], + "score": 1.0, + "content": "convolutions by its depthwise coun-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "terpart while doubling the dimension of intermediate channels in all residual blocks. We find it to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "a reasonable base model compared to the original ResNet-50, with comparable performance on both", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 325, + 307 + ], + "score": 1.0, + "content": "tasks. During training, we set the weight decay to be", + "type": "text" + }, + { + "bbox": [ + 326, + 294, + 365, + 305 + ], + "score": 0.92, + "content": "4 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 294, + 467, + 307 + ], + "score": 1.0, + "content": "rather than the common", + "type": "text" + }, + { + "bbox": [ + 467, + 294, + 489, + 305 + ], + "score": 0.9, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "both models since depthwise models usually underfit rather than overfit (Xie et al., 2017; Howard", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 104, + 315, + 466, + 329 + ], + "score": 1.0, + "content": "et al., 2017; Hu et al., 2018). We set the learning rate multiplier of DK operators as", + "type": "text" + }, + { + "bbox": [ + 466, + 316, + 488, + 327 + ], + "score": 0.9, + "content": "1 0 ^ { - 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "fo r", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 326, + 390, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 188, + 340 + ], + "score": 1.0, + "content": "ResNet-50-DW and", + "type": "text" + }, + { + "bbox": [ + 188, + 327, + 210, + 338 + ], + "score": 0.9, + "content": "1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 326, + 390, + 340 + ], + "score": 1.0, + "content": "for MobileNet-V2 in all of our experiments.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 505, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "Strong Baselines: We develop our comparison with two previous works: Conditional Convolu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 356, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 367 + ], + "score": 1.0, + "content": "tions (Yang et al., 2019) for dynamics inference, and Deformable Convolutions (Dai et al., 2017;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 365, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 379 + ], + "score": 1.0, + "content": "Zhu et al., 2019) for deformation modeling. We choose Conditional Convolutions due to similar", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "computation forms – sampling can be deemed as an elementewise “expert voting” mechanism. For", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 388, + 504, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 504, + 400 + ], + "score": 1.0, + "content": "fair comparisons, We reimplement and reproduce their results. We also combine our operator with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "these previous approach to show both quantitative evidence and qualitative insight that our working", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 411, + 222, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 222, + 422 + ], + "score": 1.0, + "content": "mechanisms are compatible.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 437, + 235, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 236, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 236, + 449 + ], + "score": 1.0, + "content": "4.1 IMAGE CLASSIFICATION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 108, + 457, + 504, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "We first train our networks on the ImageNet 2012 training set (Deng et al., 2009). We adopt a", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "common experiment protocol for fair comparisons as in Goyal et al. (2017); Loshchilov & Hutter", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 479, + 334, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 334, + 492 + ], + "score": 1.0, + "content": "(2017). For more details, please refer to our supplement.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "We first ablate the scope size of kernels for our DKs and study how it can affect model performance", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "using ResNet-50-DW. As shown in Table 1, our DKs are sensitive to the choice of the scope size. We", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 238, + 531 + ], + "score": 1.0, + "content": "shown that when only applied to", + "type": "text" + }, + { + "bbox": [ + 239, + 519, + 262, + 529 + ], + "score": 0.9, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "convolutions inside residual bottlenecks, local DKs induce a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 529, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 126, + 541 + ], + "score": 0.82, + "content": "+ 0 . 7", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 529, + 506, + 543 + ], + "score": 1.0, + "content": "performance gain within the original scope. By further enlarging the scope size, performance", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 267, + 554 + ], + "score": 1.0, + "content": "increases yet quickly plateaus at scope", + "type": "text" + }, + { + "bbox": [ + 268, + 541, + 292, + 551 + ], + "score": 0.89, + "content": "4 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 541, + 362, + 554 + ], + "score": 1.0, + "content": ", yielding largest", + "type": "text" + }, + { + "bbox": [ + 363, + 541, + 383, + 551 + ], + "score": 0.85, + "content": "+ 1 . 4", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "gain for top-1 accuracy. Our", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "speculation is that, although increasing scope size theoretically means better interpolation, it also", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "score": 1.0, + "content": "makes the optimization space exponentially larger for each convolutional layer. And since number", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "of entries for updating is fixed, this also leads to relatively sparse gradient flows. In principle, we set", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 585, + 267, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 189, + 596 + ], + "score": 1.0, + "content": "default scope size at", + "type": "text" + }, + { + "bbox": [ + 189, + 585, + 213, + 595 + ], + "score": 0.9, + "content": "4 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 585, + 267, + 596 + ], + "score": 1.0, + "content": "for our DKs.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 504, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "We next move on and ablate our designs by comparing the global DK with the local DK, shown in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "the table. Both operators helps while the local variants consistently performs better than their global", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 207, + 636 + ], + "score": 1.0, + "content": "counterparts, bringing a", + "type": "text" + }, + { + "bbox": [ + 207, + 623, + 227, + 634 + ], + "score": 0.84, + "content": "+ 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "gap on both base models. We also study the effect of using more", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 208, + 646 + ], + "score": 1.0, + "content": "DKs in the models – the", + "type": "text" + }, + { + "bbox": [ + 209, + 635, + 233, + 645 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 634, + 381, + 646 + ], + "score": 1.0, + "content": "convolutions are replaced by global", + "type": "text" + }, + { + "bbox": [ + 381, + 633, + 405, + 645 + ], + "score": 0.73, + "content": "\\mathrm { D K } \\dot { \\mathrm { s } } ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 634, + 453, + 646 + ], + "score": 1.0, + "content": "with scope", + "type": "text" + }, + { + "bbox": [ + 453, + 634, + 477, + 645 + ], + "score": 0.89, + "content": "2 \\times 2", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 634, + 506, + 646 + ], + "score": 1.0, + "content": ". Note", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 137, + 657 + ], + "score": 1.0, + "content": "that all", + "type": "text" + }, + { + "bbox": [ + 138, + 645, + 162, + 656 + ], + "score": 0.9, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "convolutions are not depthwise, and therefore this operation induces nearly 4 times", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "of parameters. We refer their results only for ablation and show that adding more DKs still helps –", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "especially for MobileNet-V2 since it is under-parameterized. This finding also holds for previous", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 678, + 248, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 248, + 690 + ], + "score": 1.0, + "content": "models (Yang et al., 2019) as well.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 44.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 700, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 698, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 698, + 506, + 714 + ], + "score": 1.0, + "content": "3 This makes enlarging the kernel scope size tractable and prevents extensive resource competition in CUDA", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 709, + 230, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 230, + 723 + ], + "score": 1.0, + "content": "kernels when applying local DKs.", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 719, + 460, + 735 + ], + "spans": [ + { + "bbox": [ + 117, + 719, + 460, + 735 + ], + "score": 1.0, + "content": "4 The implementation of local DKs right now cannot support large number of output channels.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": "title", + "bbox": [ + 108, + 81, + 200, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 201, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 201, + 96 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 107, + 504, + 151 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "We evaluate our Deformable Kernels (DKs) on image classification using ILSVRC and object detec-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 506, + 130 + ], + "score": 1.0, + "content": "tion using the COCO benchmark. Necessary details are provided to reproduce our results, together", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 141 + ], + "score": 1.0, + "content": "with descriptions on base models and strong baselines for all experiments and ablations. For task-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 361, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 361, + 153 + ], + "score": 1.0, + "content": "specific considerations, we refer to each corresponding section.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 106, + 506, + 153 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 157, + 505, + 223 + ], + "lines": [ + { + "bbox": [ + 105, + 156, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 505, + 169 + ], + "score": 1.0, + "content": "Implementation Details: We implement our operators in PyTorch and CUDA. We exploit depth-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 167, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 506, + 180 + ], + "score": 1.0, + "content": "wise convolutions when designing our operator for better computational efficiency3. We initialize", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 178, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 506, + 192 + ], + "score": 1.0, + "content": "kernel grids to be uniformly distributed within the scope size. For the kernel offset generator, we set", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "its learning rate to be a fraction of that of the main network, which we cross-validate for each base", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "model. We also find it important to clip sampling locations inside the original kernel space, such", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 212, + 239, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 124, + 225 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 212, + 178, + 222 + ], + "score": 0.91, + "content": "\\pmb { k } + \\Delta \\pmb { k } \\in \\mathcal { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 212, + 239, + 225 + ], + "score": 1.0, + "content": "in Equation 7.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 156, + 506, + 225 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 229, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 505, + 240 + ], + "score": 1.0, + "content": "Base Models: We choose our base models to be ResNet-50 (He et al., 2016) and MobileNet-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 252 + ], + "score": 1.0, + "content": "V2 (Sandler et al., 2018), following the standard practice for most vision applications. As men-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "tioned, we exploit depthwise convolution and thus make changes to the ResNet model. Concretely,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 261, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 336, + 274 + ], + "score": 1.0, + "content": "we define our ResNet-50-DW base model by replacing all", + "type": "text" + }, + { + "bbox": [ + 337, + 262, + 359, + 272 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 261, + 505, + 274 + ], + "score": 1.0, + "content": "convolutions by its depthwise coun-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "terpart while doubling the dimension of intermediate channels in all residual blocks. We find it to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "a reasonable base model compared to the original ResNet-50, with comparable performance on both", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 325, + 307 + ], + "score": 1.0, + "content": "tasks. During training, we set the weight decay to be", + "type": "text" + }, + { + "bbox": [ + 326, + 294, + 365, + 305 + ], + "score": 0.92, + "content": "4 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 294, + 467, + 307 + ], + "score": 1.0, + "content": "rather than the common", + "type": "text" + }, + { + "bbox": [ + 467, + 294, + 489, + 305 + ], + "score": 0.9, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "both models since depthwise models usually underfit rather than overfit (Xie et al., 2017; Howard", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 104, + 315, + 466, + 329 + ], + "score": 1.0, + "content": "et al., 2017; Hu et al., 2018). We set the learning rate multiplier of DK operators as", + "type": "text" + }, + { + "bbox": [ + 466, + 316, + 488, + 327 + ], + "score": 0.9, + "content": "1 0 ^ { - 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "fo r", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 326, + 390, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 188, + 340 + ], + "score": 1.0, + "content": "ResNet-50-DW and", + "type": "text" + }, + { + "bbox": [ + 188, + 327, + 210, + 338 + ], + "score": 0.9, + "content": "1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 326, + 390, + 340 + ], + "score": 1.0, + "content": "for MobileNet-V2 in all of our experiments.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 229, + 506, + 340 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 505, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "Strong Baselines: We develop our comparison with two previous works: Conditional Convolu-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 356, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 367 + ], + "score": 1.0, + "content": "tions (Yang et al., 2019) for dynamics inference, and Deformable Convolutions (Dai et al., 2017;", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 365, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 379 + ], + "score": 1.0, + "content": "Zhu et al., 2019) for deformation modeling. We choose Conditional Convolutions due to similar", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "computation forms – sampling can be deemed as an elementewise “expert voting” mechanism. For", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 388, + 504, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 504, + 400 + ], + "score": 1.0, + "content": "fair comparisons, We reimplement and reproduce their results. We also combine our operator with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "these previous approach to show both quantitative evidence and qualitative insight that our working", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 411, + 222, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 222, + 422 + ], + "score": 1.0, + "content": "mechanisms are compatible.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 344, + 506, + 422 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 437, + 235, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 236, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 236, + 449 + ], + "score": 1.0, + "content": "4.1 IMAGE CLASSIFICATION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 108, + 457, + 504, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "We first train our networks on the ImageNet 2012 training set (Deng et al., 2009). We adopt a", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "common experiment protocol for fair comparisons as in Goyal et al. (2017); Loshchilov & Hutter", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 479, + 334, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 334, + 492 + ], + "score": 1.0, + "content": "(2017). For more details, please refer to our supplement.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 458, + 505, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "We first ablate the scope size of kernels for our DKs and study how it can affect model performance", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "using ResNet-50-DW. As shown in Table 1, our DKs are sensitive to the choice of the scope size. We", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 238, + 531 + ], + "score": 1.0, + "content": "shown that when only applied to", + "type": "text" + }, + { + "bbox": [ + 239, + 519, + 262, + 529 + ], + "score": 0.9, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "convolutions inside residual bottlenecks, local DKs induce a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 529, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 126, + 541 + ], + "score": 0.82, + "content": "+ 0 . 7", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 529, + 506, + 543 + ], + "score": 1.0, + "content": "performance gain within the original scope. By further enlarging the scope size, performance", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 267, + 554 + ], + "score": 1.0, + "content": "increases yet quickly plateaus at scope", + "type": "text" + }, + { + "bbox": [ + 268, + 541, + 292, + 551 + ], + "score": 0.89, + "content": "4 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 541, + 362, + 554 + ], + "score": 1.0, + "content": ", yielding largest", + "type": "text" + }, + { + "bbox": [ + 363, + 541, + 383, + 551 + ], + "score": 0.85, + "content": "+ 1 . 4", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "gain for top-1 accuracy. Our", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "speculation is that, although increasing scope size theoretically means better interpolation, it also", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 505, + 575 + ], + "score": 1.0, + "content": "makes the optimization space exponentially larger for each convolutional layer. And since number", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "of entries for updating is fixed, this also leads to relatively sparse gradient flows. In principle, we set", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 585, + 267, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 189, + 596 + ], + "score": 1.0, + "content": "default scope size at", + "type": "text" + }, + { + "bbox": [ + 189, + 585, + 213, + 595 + ], + "score": 0.9, + "content": "4 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 585, + 267, + 596 + ], + "score": 1.0, + "content": "for our DKs.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 495, + 506, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 504, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "We next move on and ablate our designs by comparing the global DK with the local DK, shown in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "the table. Both operators helps while the local variants consistently performs better than their global", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 207, + 636 + ], + "score": 1.0, + "content": "counterparts, bringing a", + "type": "text" + }, + { + "bbox": [ + 207, + 623, + 227, + 634 + ], + "score": 0.84, + "content": "+ 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "gap on both base models. We also study the effect of using more", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 208, + 646 + ], + "score": 1.0, + "content": "DKs in the models – the", + "type": "text" + }, + { + "bbox": [ + 209, + 635, + 233, + 645 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 634, + 381, + 646 + ], + "score": 1.0, + "content": "convolutions are replaced by global", + "type": "text" + }, + { + "bbox": [ + 381, + 633, + 405, + 645 + ], + "score": 0.73, + "content": "\\mathrm { D K } \\dot { \\mathrm { s } } ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 634, + 453, + 646 + ], + "score": 1.0, + "content": "with scope", + "type": "text" + }, + { + "bbox": [ + 453, + 634, + 477, + 645 + ], + "score": 0.89, + "content": "2 \\times 2", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 634, + 506, + 646 + ], + "score": 1.0, + "content": ". Note", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 137, + 657 + ], + "score": 1.0, + "content": "that all", + "type": "text" + }, + { + "bbox": [ + 138, + 645, + 162, + 656 + ], + "score": 0.9, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "convolutions are not depthwise, and therefore this operation induces nearly 4 times", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "of parameters. We refer their results only for ablation and show that adding more DKs still helps –", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "especially for MobileNet-V2 since it is under-parameterized. This finding also holds for previous", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 678, + 248, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 248, + 690 + ], + "score": 1.0, + "content": "models (Yang et al., 2019) as well.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 601, + 506, + 690 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 118, + 80, + 493, + 261 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 80, + 493, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 80, + 493, + 261 + ], + "spans": [ + { + "bbox": [ + 118, + 80, + 493, + 261 + ], + "score": 0.983, + "html": "
Backbone1×1Deformable Kernels3×3Deformable Kernelstop1 (%)#P (M)GFLOPs
ResNet-50w/ow/o76.725.63.86
ResNet-50-DWw/ow/o76.323.73.82
ResNet-50-DWw/olocal, scope size 3×377.424.94.32
local, scope size 4×478.125.04.32
local, scope size 5×577.825.04.32
local, scope size 9×977.425.44.32
ResNet-50-DWw/oglobal, scope size 4×477.623.93.82
global,scope size 2×2global, scope size 4×477.980.14.09
w/olocal, scope size 4×478.125.04.32
global, scope size 2×2local, scope size 4×478.581.24.60
MobileNet-V2w/ow/o71.93.50.31
MobileNet-V2w/oglobal, scope size 4×473.63.70.31
global, scope size 2×2global, scope size 4×474.510.10.34
w/olocal, scope size 4×474.14.70.73
global, scope size 2×2local, scope size 4×474.811.10.76
", + "type": "table", + "image_path": "652f1d996a9554cdf5fff81dbfd3812d83676c7a832f4e383c6c9aa73bd64b9c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 80, + 493, + 140.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 140.33333333333334, + 493, + 200.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 200.66666666666669, + 493, + 261.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 269, + 505, + 302 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "Table 1: Ablations of scope size and different instantiations of DK for image classification.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "Using proper scope size, and more DK layers boosts performance. Modeling individual offset kernel", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 291, + 279, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 279, + 302 + ], + "score": 1.0, + "content": "grid for each data entries is also beneficial.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 118, + 309, + 493, + 435 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 309, + 493, + 435 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 309, + 493, + 435 + ], + "spans": [ + { + "bbox": [ + 118, + 309, + 493, + 435 + ], + "score": 0.983, + "html": "
Backbone1×1Deformable Kernels3×3DeformableKernelstop1 (%)#P (M)GFLOPs
ResNet-50-DWw/olocal, scope size 4×478.125.04.32
ResNet-50-DWw/ow/o77.642.57.13
with SCC ResNet-50-DWw/0local, scope size 4×478.943.77.61
w/o78.024.84.10
with DCNlocal, scope size 4×479.026.14.60
MobileNet-V2 MobileNet-V2w/olocal, scope size 4×474.14.70.73
with SCCw/ow/o74.319.02.19
local, scope size 4×475.519.72.48
MobileNet-V2 with DCNw/0w/o73.24.60.52
local, scope size 4×474.45.80.93
", + "type": "table", + "image_path": "891e2d62bba2b5ccc495a0c79ec8157d0f1351b5ca0501564dc64aad1c1b79f7.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 118, + 309, + 493, + 351.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 118, + 351.0, + 493, + 393.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 118, + 393.0, + 493, + 435.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 444, + 505, + 477 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "score": 1.0, + "content": "Table 2: Comparisons to strong baselines for image classification DKs perform comparably or", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "score": 1.0, + "content": "superiorly to previous methods. Further combinations yield consistent gain, suggesting orthogonal", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 465, + 260, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 260, + 478 + ], + "score": 1.0, + "content": "and compatible working mechanisms.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "We further compare and combine DKs with Conditional Convolutions and Deformable Convolu-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "tions. Results are recorded in Table 2. We can see that DKs perform comparably on ResNet-V2 and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 303, + 528 + ], + "score": 1.0, + "content": "compare favorably on MobileNet-V2 – improve", + "type": "text" + }, + { + "bbox": [ + 304, + 516, + 324, + 527 + ], + "score": 0.85, + "content": "+ 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "from Deformable Convolutions and achieve", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 527, + 504, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 504, + 539 + ], + "score": 1.0, + "content": "comparable results with less than a quarter number of parameters compared to Conditional Convo-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "lutions. Remarkably, we also show that if combined together, even larger performance gains are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 450, + 562 + ], + "score": 1.0, + "content": "in reach. We see consistent boost in top-1 accuracy compared to strong baselines:", + "type": "text" + }, + { + "bbox": [ + 450, + 549, + 491, + 559 + ], + "score": 0.89, + "content": "+ 1 . 3 / + 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 190, + 573 + ], + "score": 1.0, + "content": "ResNet-50-DW, and", + "type": "text" + }, + { + "bbox": [ + 190, + 560, + 231, + 570 + ], + "score": 0.9, + "content": "+ 1 . 2 / + 1 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 559, + 506, + 573 + ], + "score": 1.0, + "content": "on MobileNet-V2. These gaps are bigger than those from our own", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 571, + 504, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 504, + 583 + ], + "score": 1.0, + "content": "ablation, suggesting the working mechanisms across the operators to be orthogonal and compatible.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 108, + 595, + 218, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 220, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 220, + 608 + ], + "score": 1.0, + "content": "4.2 OBJECT DETECTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "We examine DKs on the COCO benchmark (Lin et al., 2014). For all experiments, we use Faster", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "R-CNN (Ren et al., 2015) with FPN (Lin et al., 2017) as the base detector, plugging in the backbones", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "we previously trained on ImageNet. For MobileNet-V2, we last feature maps of the each resolution", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "for FPN post aggregation. Following the standard protocol, training and evaluation are performed on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 121, + 673 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 660, + 143, + 671 + ], + "score": 0.35, + "content": "1 2 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "images in the train-val split and the 20k images in the test-dev split, respectively.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "For evaluation, we measure the standard mean average precision (mAP) and shattered scores for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 681, + 241, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 241, + 695 + ], + "score": 1.0, + "content": "small, medium and large objects.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Table 3 and Table 4 follow the same style of analysis as in image classification. While the baseline", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 222, + 722 + ], + "score": 1.0, + "content": "methods of ResNet achieve", + "type": "text" + }, + { + "bbox": [ + 222, + 710, + 265, + 721 + ], + "score": 0.45, + "content": "3 6 . 6 \\ \\mathrm { m A P } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "indicating a strong baseline detector, applying local DKs", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 141, + 733 + ], + "score": 1.0, + "content": "brings a", + "type": "text" + }, + { + "bbox": [ + 141, + 721, + 184, + 731 + ], + "score": 0.33, + "content": "+ 1 . 2 \\mathrm { m A P }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 721, + 422, + 733 + ], + "score": 1.0, + "content": "improvement when replacing 3x3 rigid kernels alone and a", + "type": "text" + }, + { + "bbox": [ + 423, + 721, + 442, + 731 + ], + "score": 0.79, + "content": "+ 1 . 8", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "mAP improve-", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 118, + 80, + 493, + 261 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 80, + 493, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 80, + 493, + 261 + ], + "spans": [ + { + "bbox": [ + 118, + 80, + 493, + 261 + ], + "score": 0.983, + "html": "
Backbone1×1Deformable Kernels3×3Deformable Kernelstop1 (%)#P (M)GFLOPs
ResNet-50w/ow/o76.725.63.86
ResNet-50-DWw/ow/o76.323.73.82
ResNet-50-DWw/olocal, scope size 3×377.424.94.32
local, scope size 4×478.125.04.32
local, scope size 5×577.825.04.32
local, scope size 9×977.425.44.32
ResNet-50-DWw/oglobal, scope size 4×477.623.93.82
global,scope size 2×2global, scope size 4×477.980.14.09
w/olocal, scope size 4×478.125.04.32
global, scope size 2×2local, scope size 4×478.581.24.60
MobileNet-V2w/ow/o71.93.50.31
MobileNet-V2w/oglobal, scope size 4×473.63.70.31
global, scope size 2×2global, scope size 4×474.510.10.34
w/olocal, scope size 4×474.14.70.73
global, scope size 2×2local, scope size 4×474.811.10.76
", + "type": "table", + "image_path": "652f1d996a9554cdf5fff81dbfd3812d83676c7a832f4e383c6c9aa73bd64b9c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 80, + 493, + 140.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 140.33333333333334, + 493, + 200.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 200.66666666666669, + 493, + 261.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 269, + 505, + 302 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "Table 1: Ablations of scope size and different instantiations of DK for image classification.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "Using proper scope size, and more DK layers boosts performance. Modeling individual offset kernel", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 291, + 279, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 279, + 302 + ], + "score": 1.0, + "content": "grid for each data entries is also beneficial.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 118, + 309, + 493, + 435 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 309, + 493, + 435 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 309, + 493, + 435 + ], + "spans": [ + { + "bbox": [ + 118, + 309, + 493, + 435 + ], + "score": 0.983, + "html": "
Backbone1×1Deformable Kernels3×3DeformableKernelstop1 (%)#P (M)GFLOPs
ResNet-50-DWw/olocal, scope size 4×478.125.04.32
ResNet-50-DWw/ow/o77.642.57.13
with SCC ResNet-50-DWw/0local, scope size 4×478.943.77.61
w/o78.024.84.10
with DCNlocal, scope size 4×479.026.14.60
MobileNet-V2 MobileNet-V2w/olocal, scope size 4×474.14.70.73
with SCCw/ow/o74.319.02.19
local, scope size 4×475.519.72.48
MobileNet-V2 with DCNw/0w/o73.24.60.52
local, scope size 4×474.45.80.93
", + "type": "table", + "image_path": "891e2d62bba2b5ccc495a0c79ec8157d0f1351b5ca0501564dc64aad1c1b79f7.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 118, + 309, + 493, + 351.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 118, + 351.0, + 493, + 393.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 118, + 393.0, + 493, + 435.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 444, + 505, + 477 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 457 + ], + "score": 1.0, + "content": "Table 2: Comparisons to strong baselines for image classification DKs perform comparably or", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 505, + 468 + ], + "score": 1.0, + "content": "superiorly to previous methods. Further combinations yield consistent gain, suggesting orthogonal", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 465, + 260, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 260, + 478 + ], + "score": 1.0, + "content": "and compatible working mechanisms.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "We further compare and combine DKs with Conditional Convolutions and Deformable Convolu-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "tions. Results are recorded in Table 2. We can see that DKs perform comparably on ResNet-V2 and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 303, + 528 + ], + "score": 1.0, + "content": "compare favorably on MobileNet-V2 – improve", + "type": "text" + }, + { + "bbox": [ + 304, + 516, + 324, + 527 + ], + "score": 0.85, + "content": "+ 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "from Deformable Convolutions and achieve", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 527, + 504, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 504, + 539 + ], + "score": 1.0, + "content": "comparable results with less than a quarter number of parameters compared to Conditional Convo-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "lutions. Remarkably, we also show that if combined together, even larger performance gains are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 450, + 562 + ], + "score": 1.0, + "content": "in reach. We see consistent boost in top-1 accuracy compared to strong baselines:", + "type": "text" + }, + { + "bbox": [ + 450, + 549, + 491, + 559 + ], + "score": 0.89, + "content": "+ 1 . 3 / + 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 559, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 190, + 573 + ], + "score": 1.0, + "content": "ResNet-50-DW, and", + "type": "text" + }, + { + "bbox": [ + 190, + 560, + 231, + 570 + ], + "score": 0.9, + "content": "+ 1 . 2 / + 1 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 559, + 506, + 573 + ], + "score": 1.0, + "content": "on MobileNet-V2. These gaps are bigger than those from our own", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 571, + 504, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 504, + 583 + ], + "score": 1.0, + "content": "ablation, suggesting the working mechanisms across the operators to be orthogonal and compatible.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 493, + 506, + 583 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 595, + 218, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 220, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 220, + 608 + ], + "score": 1.0, + "content": "4.2 OBJECT DETECTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "We examine DKs on the COCO benchmark (Lin et al., 2014). For all experiments, we use Faster", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "R-CNN (Ren et al., 2015) with FPN (Lin et al., 2017) as the base detector, plugging in the backbones", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "we previously trained on ImageNet. For MobileNet-V2, we last feature maps of the each resolution", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "for FPN post aggregation. Following the standard protocol, training and evaluation are performed on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 659, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 121, + 673 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 660, + 143, + 671 + ], + "score": 0.35, + "content": "1 2 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 659, + 505, + 673 + ], + "score": 1.0, + "content": "images in the train-val split and the 20k images in the test-dev split, respectively.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "For evaluation, we measure the standard mean average precision (mAP) and shattered scores for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 681, + 241, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 241, + 695 + ], + "score": 1.0, + "content": "small, medium and large objects.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 615, + 506, + 695 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Table 3 and Table 4 follow the same style of analysis as in image classification. While the baseline", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 222, + 722 + ], + "score": 1.0, + "content": "methods of ResNet achieve", + "type": "text" + }, + { + "bbox": [ + 222, + 710, + 265, + 721 + ], + "score": 0.45, + "content": "3 6 . 6 \\ \\mathrm { m A P } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "indicating a strong baseline detector, applying local DKs", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 141, + 733 + ], + "score": 1.0, + "content": "brings a", + "type": "text" + }, + { + "bbox": [ + 141, + 721, + 184, + 731 + ], + "score": 0.33, + "content": "+ 1 . 2 \\mathrm { m A P }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 721, + 422, + 733 + ], + "score": 1.0, + "content": "improvement when replacing 3x3 rigid kernels alone and a", + "type": "text" + }, + { + "bbox": [ + 423, + 721, + 442, + 731 + ], + "score": 0.79, + "content": "+ 1 . 8", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "mAP improve-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "ment when replacing both 1x1 and 3x3 rigid kernels. This trend magnifies on MobileNet-v2 models,", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 243, + 423 + ], + "score": 1.0, + "content": "where we see an improvement of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 243, + 411, + 263, + 422 + ], + "score": 0.79, + "content": "+ 1 . 6", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 264, + 411, + 304, + 423 + ], + "score": 1.0, + "content": "mAP and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 305, + 411, + 348, + 422 + ], + "score": 0.65, + "content": "+ 2 . 4 \\ \\mathrm { m A P } ,", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 348, + 411, + 505, + 423 + ], + "score": 1.0, + "content": ", respectively. Results also confirm the", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "effectiveness of local DKs against global DKs, which is again in line with our expectation that local", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 432, + 231, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 231, + 446 + ], + "score": 1.0, + "content": "DKs can model locality better.", + "type": "text", + "cross_page": true + } + ], + "index": 12 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 118, + 80, + 493, + 203 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 80, + 493, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 80, + 493, + 203 + ], + "spans": [ + { + "bbox": [ + 118, + 80, + 493, + 203 + ], + "score": 0.981, + "html": "
Backbone1×1Deformable Kernels3×3Deformable KernelsmAPmAPsmAPMmAPL
ResNet-50-DWw/ow/o36.622.139.946.6
ResNet-50-DWw/oglobal, scope size 4×436.722.640.246.9
global,scope size 2×2global, scope size 4×437.123.140.646.6
w/olocal, scope size 4×437.823.441.648.2
global, scope size 2×2local, scope size 4×438.423.442.049.4
MobileNet-V2w/ow/o31.318.633.740.4
MobileNet-V2w/oglobal, scope size 4×432.519.635.841.9
global,scope size 2×2global, scope size 4×432.919.435.542.8
w/0local, scope size 4×432.919.536.042.5
global, scope size 2×2local, scope size 4×433.720.236.744.0
", + "type": "table", + "image_path": "7350cae2e29b0a46813a9481577bb38913d33309325ba0ce2e1adc93f7c63273.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 80, + 493, + 121.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 121.0, + 493, + 162.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 162.0, + 493, + 203.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 131, + 211, + 478, + 223 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 209, + 479, + 225 + ], + "spans": [ + { + "bbox": [ + 131, + 209, + 479, + 225 + ], + "score": 1.0, + "content": "Table 3: Ablations for object detection. Consistent results with image classification.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 118, + 229, + 493, + 352 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 229, + 493, + 352 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 229, + 493, + 352 + ], + "spans": [ + { + "bbox": [ + 118, + 229, + 493, + 352 + ], + "score": 0.98, + "html": "
Backbone1×1Deformable Kernels3×3DeformableKernelsmAPmAPsmAPMmAPL
ResNet-50-DWglobal, scope size 2×2local, scope size 4×438.423.442.049.4
ResNet-50-DWw/ow/o36.322.139.347.0
with SCC ResNet-50-DWw/olocal, scope size 4×438.023.441.948.4
w/o39.924.043.452.6
with DCNlocal,scope size 4×440.624.643.953.3
MobileNet-V2 MobileNet-V2global, scope size 2×2local, scope size 4×4 w/o33.720.236.744.0
with SCCw/olocal, scope size 4×433.220.535.643.3
34.320.237.344.7
MobileNet-V2 with DCNw/ow/o local, scope size 4×434.4 35.620.5 20.637.0 38.544.7 47.3
", + "type": "table", + "image_path": "84f243c0470669e39536a5c1102527d64f8ccb616ae14ac691530cfd41891dfe.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 118, + 229, + 493, + 270.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 118, + 270.0, + 493, + 311.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 118, + 311.0, + 493, + 352.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 105, + 361, + 502, + 384 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 359, + 504, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 504, + 374 + ], + "score": 1.0, + "content": "Table 4: Comparisons to strong baselines for object detection DKs perform fall short to De-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 371, + 379, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 379, + 385 + ], + "score": 1.0, + "content": "formable Convolution, but combination still improves performance.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "ment when replacing both 1x1 and 3x3 rigid kernels. This trend magnifies on MobileNet-v2 models,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 243, + 423 + ], + "score": 1.0, + "content": "where we see an improvement of", + "type": "text" + }, + { + "bbox": [ + 243, + 411, + 263, + 422 + ], + "score": 0.79, + "content": "+ 1 . 6", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 411, + 304, + 423 + ], + "score": 1.0, + "content": "mAP and", + "type": "text" + }, + { + "bbox": [ + 305, + 411, + 348, + 422 + ], + "score": 0.65, + "content": "+ 2 . 4 \\ \\mathrm { m A P } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 411, + 505, + 423 + ], + "score": 1.0, + "content": ", respectively. Results also confirm the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "effectiveness of local DKs against global DKs, which is again in line with our expectation that local", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 432, + 231, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 231, + 446 + ], + "score": 1.0, + "content": "DKs can model locality better.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 463 + ], + "score": 1.0, + "content": "For the comparisons with strong baselines, an interesting phenomenon worth noting is that though", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "DKs perform better than Deformable Convolutions on image classification, they fall noticeably short", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "score": 1.0, + "content": "for object detection measured by mAP. We speculate that even though both techniques can adapt", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "score": 1.0, + "content": "ERF in theory (as justified in Section 3.2), directly shifting sampling locations on data is easier", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 493, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 506, + 508 + ], + "score": 1.0, + "content": "to optimize. Yet after combining DKs with previous approaches, we can consistently boost per-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 235, + 518 + ], + "score": 1.0, + "content": "formance for all the methods –", + "type": "text" + }, + { + "bbox": [ + 235, + 505, + 276, + 516 + ], + "score": 0.87, + "content": "+ 0 . 7 / + 1 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "for Deformable Convolutions on each base models, and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 147, + 527 + ], + "score": 0.87, + "content": "+ 1 . 7 / + 1 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "for Conditional Convolutions. These findings align with the results from image classifi-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "cation. We next investigate what DKs learn and why they are compatible with previous methods in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 538, + 141, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 141, + 550 + ], + "score": 1.0, + "content": "general.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 562, + 316, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 317, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 317, + 574 + ], + "score": 1.0, + "content": "4.3 WHAT DO DEFORMABLE KERNELS LEARN?", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 582, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "Awareness of Object Scale: Since deformation is hard to quantify, we use object scale as a rough", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "proxy to understand what DKs learn. In Figure 3, we show the t-SNE (Maaten & Hinton, 2008)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "of learned model dynamics by the last convolutional layers in MobileNet-V2 using Conditional", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "Convolution and our DKs. We validate the finding as claimed by Yang et al. (2019) that the experts of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Conditional Convolutions have better correlation with object semantics than their scales (in reference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "to Figure 6 from their paper). Instead, our DKs learn kernel sampling offsets that strongly correlate", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "to scales rather than semantics. This sheds light on why the two operators are complementary in our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 660, + 196, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 196, + 673 + ], + "score": 1.0, + "content": "previous experiments.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Adaptation of Effective Receptive Fields: To verify our claim that DK indeed adapts ERFs in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "practice, we show ERF visualizations on a set of images in which they display different degrees of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "deformations. We compare the results of rigid kernels, Deformable Convolutions, our DKs, and the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "combination of the two operators. For all examples, note that the theoretical receptive field covers", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "every pixel in the image but ERFs contain only a central portion of it. Deformable Convolutions", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + } + ], + "page_idx": 8, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 118, + 80, + 493, + 203 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 80, + 493, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 80, + 493, + 203 + ], + "spans": [ + { + "bbox": [ + 118, + 80, + 493, + 203 + ], + "score": 0.981, + "html": "
Backbone1×1Deformable Kernels3×3Deformable KernelsmAPmAPsmAPMmAPL
ResNet-50-DWw/ow/o36.622.139.946.6
ResNet-50-DWw/oglobal, scope size 4×436.722.640.246.9
global,scope size 2×2global, scope size 4×437.123.140.646.6
w/olocal, scope size 4×437.823.441.648.2
global, scope size 2×2local, scope size 4×438.423.442.049.4
MobileNet-V2w/ow/o31.318.633.740.4
MobileNet-V2w/oglobal, scope size 4×432.519.635.841.9
global,scope size 2×2global, scope size 4×432.919.435.542.8
w/0local, scope size 4×432.919.536.042.5
global, scope size 2×2local, scope size 4×433.720.236.744.0
", + "type": "table", + "image_path": "7350cae2e29b0a46813a9481577bb38913d33309325ba0ce2e1adc93f7c63273.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 80, + 493, + 121.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 121.0, + 493, + 162.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 162.0, + 493, + 203.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 131, + 211, + 478, + 223 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 209, + 479, + 225 + ], + "spans": [ + { + "bbox": [ + 131, + 209, + 479, + 225 + ], + "score": 1.0, + "content": "Table 3: Ablations for object detection. Consistent results with image classification.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 118, + 229, + 493, + 352 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 229, + 493, + 352 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 118, + 229, + 493, + 352 + ], + "spans": [ + { + "bbox": [ + 118, + 229, + 493, + 352 + ], + "score": 0.98, + "html": "
Backbone1×1Deformable Kernels3×3DeformableKernelsmAPmAPsmAPMmAPL
ResNet-50-DWglobal, scope size 2×2local, scope size 4×438.423.442.049.4
ResNet-50-DWw/ow/o36.322.139.347.0
with SCC ResNet-50-DWw/olocal, scope size 4×438.023.441.948.4
w/o39.924.043.452.6
with DCNlocal,scope size 4×440.624.643.953.3
MobileNet-V2 MobileNet-V2global, scope size 2×2local, scope size 4×4 w/o33.720.236.744.0
with SCCw/olocal, scope size 4×433.220.535.643.3
34.320.237.344.7
MobileNet-V2 with DCNw/ow/o local, scope size 4×434.4 35.620.5 20.637.0 38.544.7 47.3
", + "type": "table", + "image_path": "84f243c0470669e39536a5c1102527d64f8ccb616ae14ac691530cfd41891dfe.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 118, + 229, + 493, + 270.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 118, + 270.0, + 493, + 311.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 118, + 311.0, + 493, + 352.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 105, + 361, + 502, + 384 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 359, + 504, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 504, + 374 + ], + "score": 1.0, + "content": "Table 4: Comparisons to strong baselines for object detection DKs perform fall short to De-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 371, + 379, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 379, + 385 + ], + "score": 1.0, + "content": "formable Convolution, but combination still improves performance.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 107, + 399, + 505, + 444 + ], + "lines": [], + "index": 10.5, + "bbox_fs": [ + 105, + 400, + 505, + 446 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 463 + ], + "score": 1.0, + "content": "For the comparisons with strong baselines, an interesting phenomenon worth noting is that though", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "DKs perform better than Deformable Convolutions on image classification, they fall noticeably short", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "score": 1.0, + "content": "for object detection measured by mAP. We speculate that even though both techniques can adapt", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "score": 1.0, + "content": "ERF in theory (as justified in Section 3.2), directly shifting sampling locations on data is easier", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 493, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 104, + 493, + 506, + 508 + ], + "score": 1.0, + "content": "to optimize. Yet after combining DKs with previous approaches, we can consistently boost per-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 235, + 518 + ], + "score": 1.0, + "content": "formance for all the methods –", + "type": "text" + }, + { + "bbox": [ + 235, + 505, + 276, + 516 + ], + "score": 0.87, + "content": "+ 0 . 7 / + 1 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "for Deformable Convolutions on each base models, and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 147, + 527 + ], + "score": 0.87, + "content": "+ 1 . 7 / + 1 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "for Conditional Convolutions. These findings align with the results from image classifi-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "cation. We next investigate what DKs learn and why they are compatible with previous methods in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 538, + 141, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 141, + 550 + ], + "score": 1.0, + "content": "general.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 449, + 506, + 550 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 562, + 316, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 317, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 317, + 574 + ], + "score": 1.0, + "content": "4.3 WHAT DO DEFORMABLE KERNELS LEARN?", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 582, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "Awareness of Object Scale: Since deformation is hard to quantify, we use object scale as a rough", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "proxy to understand what DKs learn. In Figure 3, we show the t-SNE (Maaten & Hinton, 2008)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "of learned model dynamics by the last convolutional layers in MobileNet-V2 using Conditional", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "Convolution and our DKs. We validate the finding as claimed by Yang et al. (2019) that the experts of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Conditional Convolutions have better correlation with object semantics than their scales (in reference", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "to Figure 6 from their paper). Instead, our DKs learn kernel sampling offsets that strongly correlate", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "to scales rather than semantics. This sheds light on why the two operators are complementary in our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 660, + 196, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 196, + 673 + ], + "score": 1.0, + "content": "previous experiments.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 583, + 506, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "Adaptation of Effective Receptive Fields: To verify our claim that DK indeed adapts ERFs in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "practice, we show ERF visualizations on a set of images in which they display different degrees of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "deformations. We compare the results of rigid kernels, Deformable Convolutions, our DKs, and the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "combination of the two operators. For all examples, note that the theoretical receptive field covers", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "every pixel in the image but ERFs contain only a central portion of it. Deformable Convolutions", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 591 + ], + "score": 1.0, + "content": "and DKs perform similarly in terms of adapting ERFs, but Deformable Convolutions tend to spread", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "out and have sparse responses while DKs tend to concentrate and densely activate within an object", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 601, + 490, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 490, + 614 + ], + "score": 1.0, + "content": "region. Combining both operators yields more consistent ERFs that exploit both of their merits.", + "type": "text", + "cross_page": true + } + ], + "index": 22 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 677, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 79, + 494, + 180 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 79, + 494, + 180 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 79, + 494, + 180 + ], + "spans": [ + { + "bbox": [ + 115, + 79, + 494, + 180 + ], + "score": 0.972, + "type": "image", + "image_path": "03fe61b3a99a4b4fe54f5e472560a43e878aaca475f9aa9552dbcdad33a82abd.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 79, + 494, + 112.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 112.66666666666666, + 494, + 146.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 146.33333333333331, + 494, + 179.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 189, + 505, + 266 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "Figure 3: Semantics vs. Scales. We show t-SNE results of learned model dynamics using 10 ran-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "dom classes of objects from the COCO test-dev split. Each point represents an object extracted", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "by ground-truth bounding box, whose color either denotes its class label or bounding box scale. The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 222, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 234 + ], + "score": 1.0, + "content": "color of an object scale is its normalized area rank discretized by every 10th percentile among all", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "data. Numbers inside parentheses indicate the dimension of learned dynamics before t-SNE. (a)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 244, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 255 + ], + "score": 1.0, + "content": "The dynamics of Conditional Convolutions are closer to semantics than to object scales. (b) On the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 255, + 483, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 483, + 267 + ], + "score": 1.0, + "content": "contrary, our DKs learn dynamics that are significantly related to scales rather than semantics.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "image", + "bbox": [ + 117, + 280, + 494, + 470 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 280, + 494, + 470 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 280, + 494, + 470 + ], + "spans": [ + { + "bbox": [ + 117, + 280, + 494, + 470 + ], + "score": 0.977, + "type": "image", + "image_path": "711d1059d1b021301141e7743d64fe5288ae4ee7f13f4809906a3a3dbc32d974.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 117, + 280, + 494, + 343.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 117, + 343.3333333333333, + 494, + 406.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 117, + 406.66666666666663, + 494, + 469.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 478, + 505, + 556 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "score": 1.0, + "content": "Figure 4: Learned Effective Receptive Fields. We show learned ERFs on three images with large,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "medium, and small objects from the COCO test-dev split. Given each ground-truth bounding", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "box, we visualize the non-zero ERF values of its central point. Theoretical RFs cover the whole", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 506, + 525 + ], + "score": 1.0, + "content": "image for all three examples and we thus ignore them in our plots. (a) Rigid kernels have strong", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "central effects and a Gaussian-like ERF that cannot deal with object deformation alone. (b) De-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "formable Convolutions and (c) Deformable Kernels both tune ERFs to data. (d) Combining both", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 544, + 452, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 452, + 558 + ], + "score": 1.0, + "content": "operators together enables better modeling of 2D geometric transformation of objects.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 108, + 579, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 591 + ], + "score": 1.0, + "content": "and DKs perform similarly in terms of adapting ERFs, but Deformable Convolutions tend to spread", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "out and have sparse responses while DKs tend to concentrate and densely activate within an object", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 601, + 490, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 490, + 614 + ], + "score": 1.0, + "content": "region. Combining both operators yields more consistent ERFs that exploit both of their merits.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 108, + 636, + 195, + 649 + ], + "lines": [ + { + "bbox": [ + 104, + 634, + 197, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 634, + 197, + 652 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "In this paper, we introduced Deformable Kernels (DKs) to adapt effective receptive fields (ERFs)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "of convolutional networks for object deformation. We proposed to sample kernel values from the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "original kernel space. This in effect samples the ERF in linear networks and also roughly gener-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "score": 1.0, + "content": "alizes to non-linear cases. We instantiated two variants of DKs and validate our designs, showing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "connections to previous works. Consistent improvements over them and compatibility with them", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 721, + 280, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 280, + 732 + ], + "score": 1.0, + "content": "were found, as illustrated in visualizations.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + } + ], + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 79, + 494, + 180 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 79, + 494, + 180 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 79, + 494, + 180 + ], + "spans": [ + { + "bbox": [ + 115, + 79, + 494, + 180 + ], + "score": 0.972, + "type": "image", + "image_path": "03fe61b3a99a4b4fe54f5e472560a43e878aaca475f9aa9552dbcdad33a82abd.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 79, + 494, + 112.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 112.66666666666666, + 494, + 146.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 146.33333333333331, + 494, + 179.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 189, + 505, + 266 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "Figure 3: Semantics vs. Scales. We show t-SNE results of learned model dynamics using 10 ran-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "dom classes of objects from the COCO test-dev split. Each point represents an object extracted", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "by ground-truth bounding box, whose color either denotes its class label or bounding box scale. The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 222, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 234 + ], + "score": 1.0, + "content": "color of an object scale is its normalized area rank discretized by every 10th percentile among all", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 245 + ], + "score": 1.0, + "content": "data. Numbers inside parentheses indicate the dimension of learned dynamics before t-SNE. (a)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 244, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 255 + ], + "score": 1.0, + "content": "The dynamics of Conditional Convolutions are closer to semantics than to object scales. (b) On the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 255, + 483, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 483, + 267 + ], + "score": 1.0, + "content": "contrary, our DKs learn dynamics that are significantly related to scales rather than semantics.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "image", + "bbox": [ + 117, + 280, + 494, + 470 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 280, + 494, + 470 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 280, + 494, + 470 + ], + "spans": [ + { + "bbox": [ + 117, + 280, + 494, + 470 + ], + "score": 0.977, + "type": "image", + "image_path": "711d1059d1b021301141e7743d64fe5288ae4ee7f13f4809906a3a3dbc32d974.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 117, + 280, + 494, + 343.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 117, + 343.3333333333333, + 494, + 406.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 117, + 406.66666666666663, + 494, + 469.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 478, + 505, + 556 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "score": 1.0, + "content": "Figure 4: Learned Effective Receptive Fields. We show learned ERFs on three images with large,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "medium, and small objects from the COCO test-dev split. Given each ground-truth bounding", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "box, we visualize the non-zero ERF values of its central point. Theoretical RFs cover the whole", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 104, + 510, + 506, + 525 + ], + "score": 1.0, + "content": "image for all three examples and we thus ignore them in our plots. (a) Rigid kernels have strong", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "central effects and a Gaussian-like ERF that cannot deal with object deformation alone. (b) De-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "formable Convolutions and (c) Deformable Kernels both tune ERFs to data. (d) Combining both", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 544, + 452, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 452, + 558 + ], + "score": 1.0, + "content": "operators together enables better modeling of 2D geometric transformation of objects.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 108, + 579, + 505, + 613 + ], + "lines": [], + "index": 21, + "bbox_fs": [ + 105, + 579, + 506, + 614 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 636, + 195, + 649 + ], + "lines": [ + { + "bbox": [ + 104, + 634, + 197, + 652 + ], + "spans": [ + { + "bbox": [ + 104, + 634, + 197, + 652 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "In this paper, we introduced Deformable Kernels (DKs) to adapt effective receptive fields (ERFs)", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "of convolutional networks for object deformation. We proposed to sample kernel values from the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "original kernel space. This in effect samples the ERF in linear networks and also roughly gener-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 713 + ], + "score": 1.0, + "content": "alizes to non-linear cases. We instantiated two variants of DKs and validate our designs, showing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "connections to previous works. Consistent improvements over them and compatibility with them", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 721, + 280, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 280, + 732 + ], + "score": 1.0, + "content": "were found, as illustrated in visualizations.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 666, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 103, + 100, + 471, + 112 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 471, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 471, + 112 + ], + "score": 1.0, + "content": "Joan Bruna and Stephane Mallat. Invariant scattering convolution networks. ´ TPAMI, 2013.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 103, + 118, + 471, + 131 + ], + "lines": [ + { + "bbox": [ + 105, + 118, + 471, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 471, + 132 + ], + "score": 1.0, + "content": "Taco Cohen and Max Welling. Group equivariant convolutional networks. In ICML, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "Jifeng Dai, Haozhi Qi, Yuwen Xiong, Yi Li, Guodong Zhang, Han Hu, and Yichen Wei. Deformable", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 149, + 281, + 159 + ], + "spans": [ + { + "bbox": [ + 116, + 149, + 281, + 159 + ], + "score": 1.0, + "content": "convolutional networks. In CVPR, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 166, + 504, + 190 + ], + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 178, + 299, + 190 + ], + "spans": [ + { + "bbox": [ + 116, + 178, + 299, + 190 + ], + "score": 1.0, + "content": "hierarchical image database. In CVPR, 2009.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 504, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 209 + ], + "score": 1.0, + "content": "Carlos Esteves, Christine Allen-Blanchette, Xiaowei Zhou, and Kostas Daniilidis. Polar transformer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 208, + 221, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 208, + 221, + 218 + ], + "score": 1.0, + "content": "networks. In ICLR, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 105, + 226, + 416, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 416, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 416, + 240 + ], + "score": 1.0, + "content": "James J Gibson. The perception of the visual world. Houghton Mifflin, 1950.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 506, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "Priya Goyal, Piotr Dollar, Ross Girshick, Pieter Noordhuis, Lukasz Wesolowski, Aapo Kyrola, An- ´", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 255, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 506, + 270 + ], + "score": 1.0, + "content": "drew Tulloch, Yangqing Jia, and Kaiming He. Accurate, large minibatch sgd: Training imagenet", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 267, + 321, + 279 + ], + "spans": [ + { + "bbox": [ + 116, + 267, + 321, + 279 + ], + "score": 1.0, + "content": "in 1 hour. arXiv preprint arXiv:1706.02677, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 104, + 283, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 104, + 283, + 505, + 300 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 297, + 211, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 211, + 308 + ], + "score": 1.0, + "content": "nition. In CVPR, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 314, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 329 + ], + "score": 1.0, + "content": "Andrew G Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 327, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 117, + 327, + 505, + 338 + ], + "score": 1.0, + "content": "Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 338, + 294, + 349 + ], + "spans": [ + { + "bbox": [ + 116, + 338, + 294, + 349 + ], + "score": 1.0, + "content": "mobile vision applications. In CVPR, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 356, + 439, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 441, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 441, + 369 + ], + "score": 1.0, + "content": "Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In CVPR, 2018.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 504, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "Drew A Hudson and Christopher D Manning. Learning by abstraction: The neural state machine.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 385, + 279, + 398 + ], + "spans": [ + { + "bbox": [ + 116, + 385, + 279, + 398 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1907.03950, 2019.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 415, + 181, + 427 + ], + "spans": [ + { + "bbox": [ + 116, + 415, + 181, + 427 + ], + "score": 1.0, + "content": "NeurIPS, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 448 + ], + "score": 1.0, + "content": "Xu Jia, Bert De Brabandere, Tinne Tuytelaars, and Luc V Gool. Dynamic filter networks. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 445, + 181, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 445, + 181, + 457 + ], + "score": 1.0, + "content": "NeurIPS, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 463, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Angjoo Kanazawa, Abhishek Sharma, and David W. Jacobs. Locally scale-invariant convolutional", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 475, + 303, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 303, + 487 + ], + "score": 1.0, + "content": "neural networks. In NeurIPS Workshop, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 503, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "Svetlana Lazebnik, Cordelia Schmid, and Jean Ponce. Beyond bags of features: Spatial pyramid", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 505, + 387, + 517 + ], + "spans": [ + { + "bbox": [ + 116, + 505, + 387, + 517 + ], + "score": 1.0, + "content": "matching for recognizing natural scene categories. In CVPR, 2006.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 108, + 523, + 493, + 535 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 493, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 493, + 536 + ], + "score": 1.0, + "content": "Xiang Li, Wenhai Wang, Xiaolin Hu, and Jian Yang. Selective kernel networks. In CVPR, 2019.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 108, + 541, + 504, + 565 + ], + "lines": [ + { + "bbox": [ + 107, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 107, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 552, + 498, + 566 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 498, + 566 + ], + "score": 1.0, + "content": "Dollar, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In ´ ECCV, 2014.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 108, + 571, + 503, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 586 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Piotr Dollar, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie. ´", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 582, + 373, + 595 + ], + "spans": [ + { + "bbox": [ + 115, + 582, + 373, + 595 + ], + "score": 1.0, + "content": "Feature pyramid networks for object detection. In CVPR, 2017.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "Ilya Loshchilov and Frank Hutter. Sgdr: Stochastic gradient descent with warm restarts. In ICLR,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 612, + 142, + 624 + ], + "spans": [ + { + "bbox": [ + 115, + 612, + 142, + 624 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 631, + 473, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 473, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 473, + 644 + ], + "score": 1.0, + "content": "David G Lowe et al. Object recognition from local scale-invariant features. In ICCV, 1999.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 503, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 663 + ], + "score": 1.0, + "content": "Wenjie Luo, Yujia Li, Raquel Urtasun, and Richard Zemel. Understanding the effective receptive", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 661, + 370, + 673 + ], + "spans": [ + { + "bbox": [ + 116, + 661, + 370, + 673 + ], + "score": 1.0, + "content": "field in deep convolutional neural networks. In NeurIPS, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of machine", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 691, + 216, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 216, + 703 + ], + "score": 1.0, + "content": "learning research, 2008.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 720, + 358, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 358, + 732 + ], + "score": 1.0, + "content": "detection with region proposal networks. In NeurIPS, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 103, + 100, + 471, + 112 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 471, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 471, + 112 + ], + "score": 1.0, + "content": "Joan Bruna and Stephane Mallat. Invariant scattering convolution networks. ´ TPAMI, 2013.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 100, + 471, + 112 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 118, + 471, + 131 + ], + "lines": [ + { + "bbox": [ + 105, + 118, + 471, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 471, + 132 + ], + "score": 1.0, + "content": "Taco Cohen and Max Welling. Group equivariant convolutional networks. In ICML, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 118, + 471, + 132 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "Jifeng Dai, Haozhi Qi, Yuwen Xiong, Yi Li, Guodong Zhang, Han Hu, and Yichen Wei. Deformable", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 149, + 281, + 159 + ], + "spans": [ + { + "bbox": [ + 116, + 149, + 281, + 159 + ], + "score": 1.0, + "content": "convolutional networks. In CVPR, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 137, + 505, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 166, + 504, + 190 + ], + "lines": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 178, + 299, + 190 + ], + "spans": [ + { + "bbox": [ + 116, + 178, + 299, + 190 + ], + "score": 1.0, + "content": "hierarchical image database. In CVPR, 2009.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 167, + 505, + 190 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 196, + 504, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 209 + ], + "score": 1.0, + "content": "Carlos Esteves, Christine Allen-Blanchette, Xiaowei Zhou, and Kostas Daniilidis. Polar transformer", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 208, + 221, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 208, + 221, + 218 + ], + "score": 1.0, + "content": "networks. In ICLR, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 196, + 506, + 218 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 226, + 416, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 226, + 416, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 416, + 240 + ], + "score": 1.0, + "content": "James J Gibson. The perception of the visual world. Houghton Mifflin, 1950.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 226, + 416, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 506, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "Priya Goyal, Piotr Dollar, Ross Girshick, Pieter Noordhuis, Lukasz Wesolowski, Aapo Kyrola, An- ´", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 255, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 506, + 270 + ], + "score": 1.0, + "content": "drew Tulloch, Yangqing Jia, and Kaiming He. Accurate, large minibatch sgd: Training imagenet", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 267, + 321, + 279 + ], + "spans": [ + { + "bbox": [ + 116, + 267, + 321, + 279 + ], + "score": 1.0, + "content": "in 1 hour. arXiv preprint arXiv:1706.02677, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 245, + 506, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 104, + 283, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 104, + 283, + 505, + 300 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 297, + 211, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 211, + 308 + ], + "score": 1.0, + "content": "nition. In CVPR, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 283, + 505, + 308 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 314, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 329 + ], + "score": 1.0, + "content": "Andrew G Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 327, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 117, + 327, + 505, + 338 + ], + "score": 1.0, + "content": "Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 338, + 294, + 349 + ], + "spans": [ + { + "bbox": [ + 116, + 338, + 294, + 349 + ], + "score": 1.0, + "content": "mobile vision applications. In CVPR, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 314, + 505, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 356, + 439, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 441, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 441, + 369 + ], + "score": 1.0, + "content": "Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In CVPR, 2018.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 355, + 441, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 504, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "Drew A Hudson and Christopher D Manning. Learning by abstraction: The neural state machine.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 385, + 279, + 398 + ], + "spans": [ + { + "bbox": [ + 116, + 385, + 279, + 398 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1907.03950, 2019.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 374, + 505, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "Max Jaderberg, Karen Simonyan, Andrew Zisserman, et al. Spatial transformer networks. In", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 415, + 181, + 427 + ], + "spans": [ + { + "bbox": [ + 116, + 415, + 181, + 427 + ], + "score": 1.0, + "content": "NeurIPS, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 404, + 505, + 427 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 448 + ], + "score": 1.0, + "content": "Xu Jia, Bert De Brabandere, Tinne Tuytelaars, and Luc V Gool. Dynamic filter networks. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 445, + 181, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 445, + 181, + 457 + ], + "score": 1.0, + "content": "NeurIPS, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 433, + 505, + 457 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 463, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Angjoo Kanazawa, Abhishek Sharma, and David W. Jacobs. Locally scale-invariant convolutional", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 475, + 303, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 303, + 487 + ], + "score": 1.0, + "content": "neural networks. In NeurIPS Workshop, 2016.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 464, + 505, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 503, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "Svetlana Lazebnik, Cordelia Schmid, and Jean Ponce. Beyond bags of features: Spatial pyramid", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 505, + 387, + 517 + ], + "spans": [ + { + "bbox": [ + 116, + 505, + 387, + 517 + ], + "score": 1.0, + "content": "matching for recognizing natural scene categories. In CVPR, 2006.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 494, + 505, + 517 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 523, + 493, + 535 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 493, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 493, + 536 + ], + "score": 1.0, + "content": "Xiang Li, Wenhai Wang, Xiaolin Hu, and Jian Yang. Selective kernel networks. In CVPR, 2019.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 522, + 493, + 536 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 541, + 504, + 565 + ], + "lines": [ + { + "bbox": [ + 107, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 107, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 552, + 498, + 566 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 498, + 566 + ], + "score": 1.0, + "content": "Dollar, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In ´ ECCV, 2014.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 107, + 541, + 505, + 566 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 571, + 503, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 586 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Piotr Dollar, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie. ´", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 582, + 373, + 595 + ], + "spans": [ + { + "bbox": [ + 115, + 582, + 373, + 595 + ], + "score": 1.0, + "content": "Feature pyramid networks for object detection. In CVPR, 2017.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 570, + 505, + 595 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 614 + ], + "score": 1.0, + "content": "Ilya Loshchilov and Frank Hutter. Sgdr: Stochastic gradient descent with warm restarts. In ICLR,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 612, + 142, + 624 + ], + "spans": [ + { + "bbox": [ + 115, + 612, + 142, + 624 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 600, + 505, + 624 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 631, + 473, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 473, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 473, + 644 + ], + "score": 1.0, + "content": "David G Lowe et al. Object recognition from local scale-invariant features. In ICCV, 1999.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 630, + 473, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 503, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 663 + ], + "score": 1.0, + "content": "Wenjie Luo, Yujia Li, Raquel Urtasun, and Richard Zemel. Understanding the effective receptive", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 661, + 370, + 673 + ], + "spans": [ + { + "bbox": [ + 116, + 661, + 370, + 673 + ], + "score": 1.0, + "content": "field in deep convolutional neural networks. In NeurIPS, 2016.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 649, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 679, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-sne. Journal of machine", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 691, + 216, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 216, + 703 + ], + "score": 1.0, + "content": "learning research, 2008.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 679, + 505, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 720, + 358, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 358, + 732 + ], + "score": 1.0, + "content": "detection with region proposal networks. In NeurIPS, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 709, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ignacio Rocco, Relja Arandjelovic, and Josef Sivic. Convolutional neural network architecture for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 268, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 268, + 106 + ], + "score": 1.0, + "content": "geometric matching. In CVPR, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mo-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 123, + 392, + 135 + ], + "spans": [ + { + "bbox": [ + 117, + 123, + 392, + 135 + ], + "score": 1.0, + "content": "bilenetv2: Inverted residuals and linear bottlenecks. In CVPR, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "Evan Shelhamer, Dequan Wang, and Trevor Darrell. Blurring the line between structure and learning", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 433, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 433, + 165 + ], + "score": 1.0, + "content": "to optimize and adapt receptive fields. arXiv preprint arXiv:1904.11487, 2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 105, + 171, + 505, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "score": 1.0, + "content": "Laurent Sifre and Stephane Mallat. Rotation, scaling and deformation invariant scattering for texture ´", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 183, + 245, + 195 + ], + "spans": [ + { + "bbox": [ + 116, + 183, + 245, + 195 + ], + "score": 1.0, + "content": "discrimination. In CVPR, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 201, + 504, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 200, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 506, + 215 + ], + "score": 1.0, + "content": "Hugues Thomas, Charles R Qi, Jean-Emmanuel Deschaud, Beatriz Marcotegui, Franc¸ois Goulette,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "and Leonidas J Guibas. Kpconv: Flexible and deformable convolution for point clouds. In ICCV,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 142, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 142, + 235 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 242, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 253, + 444, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 444, + 266 + ], + "score": 1.0, + "content": "Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 286 + ], + "score": 1.0, + "content": "Dequan Wang, Evan Shelhamer, Bruno Olshausen, and Trevor Darrell. Dynamic scale inference by", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 284, + 367, + 296 + ], + "spans": [ + { + "bbox": [ + 115, + 284, + 367, + 296 + ], + "score": 1.0, + "content": "entropy optimization. arXiv preprint arXiv:1908.03182, 2019.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 108, + 302, + 503, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 313, + 172, + 325 + ], + "spans": [ + { + "bbox": [ + 117, + 313, + 172, + 325 + ], + "score": 1.0, + "content": "CVPR, 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 332, + 504, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "score": 1.0, + "content": "Daniel E Worrall, Stephan J Garbin, Daniyar Turmukhambetov, and Gabriel J Brostow. Harmonic", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 344, + 399, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 344, + 399, + 356 + ], + "score": 1.0, + "content": "networks: Deep translation and rotation equivariance. In CVPR, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 503, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 362, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 504, + 375 + ], + "score": 1.0, + "content": "Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual trans-´", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 374, + 333, + 385 + ], + "spans": [ + { + "bbox": [ + 116, + 374, + 333, + 385 + ], + "score": 1.0, + "content": "formations for deep neural networks. In CVPR, 2017.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 502, + 415 + ], + "lines": [ + { + "bbox": [ + 107, + 392, + 504, + 405 + ], + "spans": [ + { + "bbox": [ + 107, + 392, + 504, + 405 + ], + "score": 1.0, + "content": "Yuwen Xiong, Mengye Ren, Renjie Liao, Kelvin Wong, and Raquel Urtasun. Deformable filter", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 403, + 435, + 416 + ], + "spans": [ + { + "bbox": [ + 116, + 403, + 435, + 416 + ], + "score": 1.0, + "content": "convolution for point cloud reasoning. arXiv preprint arXiv:1907.13079, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 503, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 504, + 435 + ], + "score": 1.0, + "content": "Brandon Yang, Gabriel Bender, Quoc V Le, and Jiquan Ngiam. Soft conditional computation. arXiv", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 433, + 254, + 445 + ], + "spans": [ + { + "bbox": [ + 114, + 433, + 254, + 445 + ], + "score": 1.0, + "content": "preprint arXiv:1904.04971, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 452, + 464 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 451, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 451, + 466 + ], + "score": 1.0, + "content": "Richard Zhang. Making convolutional networks shift-invariant again. In ICML, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 470, + 503, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "Xizhou Zhu, Han Hu, Stephen Lin, and Jifeng Dai. Deformable convnets v2: More deformable,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 482, + 239, + 493 + ], + "spans": [ + { + "bbox": [ + 116, + 482, + 239, + 493 + ], + "score": 1.0, + "content": "better results. In CVPR, 2019.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ignacio Rocco, Relja Arandjelovic, and Josef Sivic. Convolutional neural network architecture for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 268, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 268, + 106 + ], + "score": 1.0, + "content": "geometric matching. In CVPR, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 505, + 126 + ], + "score": 1.0, + "content": "Mark Sandler, Andrew Howard, Menglong Zhu, Andrey Zhmoginov, and Liang-Chieh Chen. Mo-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 123, + 392, + 135 + ], + "spans": [ + { + "bbox": [ + 117, + 123, + 392, + 135 + ], + "score": 1.0, + "content": "bilenetv2: Inverted residuals and linear bottlenecks. In CVPR, 2018.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 111, + 505, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "Evan Shelhamer, Dequan Wang, and Trevor Darrell. Blurring the line between structure and learning", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 433, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 433, + 165 + ], + "score": 1.0, + "content": "to optimize and adapt receptive fields. arXiv preprint arXiv:1904.11487, 2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 141, + 505, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 171, + 505, + 195 + ], + "lines": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "score": 1.0, + "content": "Laurent Sifre and Stephane Mallat. Rotation, scaling and deformation invariant scattering for texture ´", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 183, + 245, + 195 + ], + "spans": [ + { + "bbox": [ + 116, + 183, + 245, + 195 + ], + "score": 1.0, + "content": "discrimination. In CVPR, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 171, + 505, + 195 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 201, + 504, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 200, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 506, + 215 + ], + "score": 1.0, + "content": "Hugues Thomas, Charles R Qi, Jean-Emmanuel Deschaud, Beatriz Marcotegui, Franc¸ois Goulette,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "and Leonidas J Guibas. Kpconv: Flexible and deformable convolution for point clouds. In ICCV,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 142, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 142, + 235 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 200, + 506, + 235 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 242, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 253, + 444, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 444, + 266 + ], + "score": 1.0, + "content": "Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NeurIPS, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 241, + 506, + 266 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 504, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 286 + ], + "score": 1.0, + "content": "Dequan Wang, Evan Shelhamer, Bruno Olshausen, and Trevor Darrell. Dynamic scale inference by", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 284, + 367, + 296 + ], + "spans": [ + { + "bbox": [ + 115, + 284, + 367, + 296 + ], + "score": 1.0, + "content": "entropy optimization. arXiv preprint arXiv:1908.03182, 2019.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 272, + 505, + 296 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 302, + 503, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "Xiaolong Wang, Ross Girshick, Abhinav Gupta, and Kaiming He. Non-local neural networks. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 313, + 172, + 325 + ], + "spans": [ + { + "bbox": [ + 117, + 313, + 172, + 325 + ], + "score": 1.0, + "content": "CVPR, 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 302, + 505, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 332, + 504, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 505, + 344 + ], + "score": 1.0, + "content": "Daniel E Worrall, Stephan J Garbin, Daniyar Turmukhambetov, and Gabriel J Brostow. Harmonic", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 344, + 399, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 344, + 399, + 356 + ], + "score": 1.0, + "content": "networks: Deep translation and rotation equivariance. In CVPR, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 333, + 505, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 503, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 362, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 504, + 375 + ], + "score": 1.0, + "content": "Saining Xie, Ross Girshick, Piotr Dollar, Zhuowen Tu, and Kaiming He. Aggregated residual trans-´", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 374, + 333, + 385 + ], + "spans": [ + { + "bbox": [ + 116, + 374, + 333, + 385 + ], + "score": 1.0, + "content": "formations for deep neural networks. In CVPR, 2017.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 362, + 504, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 502, + 415 + ], + "lines": [ + { + "bbox": [ + 107, + 392, + 504, + 405 + ], + "spans": [ + { + "bbox": [ + 107, + 392, + 504, + 405 + ], + "score": 1.0, + "content": "Yuwen Xiong, Mengye Ren, Renjie Liao, Kelvin Wong, and Raquel Urtasun. Deformable filter", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 403, + 435, + 416 + ], + "spans": [ + { + "bbox": [ + 116, + 403, + 435, + 416 + ], + "score": 1.0, + "content": "convolution for point cloud reasoning. arXiv preprint arXiv:1907.13079, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 107, + 392, + 504, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 503, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 504, + 435 + ], + "score": 1.0, + "content": "Brandon Yang, Gabriel Bender, Quoc V Le, and Jiquan Ngiam. Soft conditional computation. arXiv", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 433, + 254, + 445 + ], + "spans": [ + { + "bbox": [ + 114, + 433, + 254, + 445 + ], + "score": 1.0, + "content": "preprint arXiv:1904.04971, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 422, + 504, + 445 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 452, + 464 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 451, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 451, + 466 + ], + "score": 1.0, + "content": "Richard Zhang. Making convolutional networks shift-invariant again. In ICML, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 451, + 451, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 470, + 503, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "Xizhou Zhu, Han Hu, Stephen Lin, and Jifeng Dai. Deformable convnets v2: More deformable,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 482, + 239, + 493 + ], + "spans": [ + { + "bbox": [ + 116, + 482, + 239, + 493 + ], + "score": 1.0, + "content": "better results. In CVPR, 2019.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 470, + 505, + 493 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 145, + 81, + 464, + 236 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 81, + 464, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 81, + 464, + 236 + ], + "spans": [ + { + "bbox": [ + 145, + 81, + 464, + 236 + ], + "score": 0.973, + "type": "image", + "image_path": "5abbb82c034f8a61878e301501e3654d6912395090b816e2237653329513f497.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 145, + 81, + 464, + 132.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 145, + 132.66666666666666, + 464, + 184.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 145, + 184.33333333333331, + 464, + 235.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 244, + 506, + 310 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 326, + 256 + ], + "score": 1.0, + "content": "Figure 5: Illustration of feed-forwarding through a", + "type": "text" + }, + { + "bbox": [ + 326, + 244, + 346, + 255 + ], + "score": 0.87, + "content": "\\mathbf { 3 \\times 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 244, + 484, + 256 + ], + "score": 1.0, + "content": "local Deformable Kernel from a", + "type": "text" + }, + { + "bbox": [ + 484, + 244, + 505, + 255 + ], + "score": 0.85, + "content": "4 \\times 4", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 432, + 268 + ], + "score": 1.0, + "content": "scope. For each input patch, local DK first generates a group of kernel offsets", + "type": "text" + }, + { + "bbox": [ + 433, + 255, + 458, + 267 + ], + "score": 0.92, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 255, + 506, + 268 + ], + "score": 1.0, + "content": "from input", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 297, + 279 + ], + "score": 1.0, + "content": "feature patch using the light-weight generator", + "type": "text" + }, + { + "bbox": [ + 298, + 267, + 306, + 277 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 266, + 318, + 279 + ], + "score": 1.0, + "content": "(a", + "type": "text" + }, + { + "bbox": [ + 319, + 266, + 338, + 277 + ], + "score": 0.87, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "convolution of rigid kernel). Given the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 201, + 290 + ], + "score": 1.0, + "content": "original kernel weights", + "type": "text" + }, + { + "bbox": [ + 201, + 277, + 214, + 287 + ], + "score": 0.38, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 277, + 298, + 290 + ], + "score": 1.0, + "content": "and the offset group", + "type": "text" + }, + { + "bbox": [ + 298, + 277, + 323, + 289 + ], + "score": 0.92, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 277, + 456, + 290 + ], + "score": 1.0, + "content": ", DK samples a new set of kernel", + "type": "text" + }, + { + "bbox": [ + 456, + 277, + 473, + 287 + ], + "score": 0.85, + "content": "W ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "using a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 287, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 172, + 301 + ], + "score": 1.0, + "content": "bilinear sampler", + "type": "text" + }, + { + "bbox": [ + 173, + 288, + 181, + 298 + ], + "score": 0.64, + "content": "\\boldsymbol { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 287, + 505, + 301 + ], + "score": 1.0, + "content": ". Finally, DK convolves the input feature map and the sampled kernels to complete", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 299, + 203, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 203, + 312 + ], + "score": 1.0, + "content": "the whole computation.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "title", + "bbox": [ + 107, + 324, + 383, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 383, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 383, + 339 + ], + "score": 1.0, + "content": "A COMPUTATION FLOW OF DEFORMABLE KERNELS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "We now cover more details on implementing DKs by elaborating the computation flow of their", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "forward and backward passes. We will focus on the local DK given its superior performance in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 371, + 401, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 401, + 384 + ], + "score": 1.0, + "content": "practice. The extension to global DK implementation is straight-forward.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 396, + 201, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 202, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 202, + 408 + ], + "score": 1.0, + "content": "A.1 FORWARD PASS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 503, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 318, + 430 + ], + "score": 1.0, + "content": "In Section 3.3, we introduce a kernel offset generator", + "type": "text" + }, + { + "bbox": [ + 318, + 417, + 326, + 427 + ], + "score": 0.86, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 415, + 416, + 430 + ], + "score": 1.0, + "content": "and a bilinear sampler", + "type": "text" + }, + { + "bbox": [ + 416, + 417, + 424, + 426 + ], + "score": 0.79, + "content": "\\boldsymbol { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 415, + 505, + 430 + ], + "score": 1.0, + "content": ". Figure 5 illustrates", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 428, + 236, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 236, + 440 + ], + "score": 1.0, + "content": "an example of the forward pass.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 503, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 216, + 458 + ], + "score": 1.0, + "content": "Concretely, given a kernel", + "type": "text" + }, + { + "bbox": [ + 216, + 445, + 230, + 455 + ], + "score": 0.65, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 443, + 384, + 458 + ], + "score": 1.0, + "content": "and a learned group of kernel offsets", + "type": "text" + }, + { + "bbox": [ + 384, + 444, + 409, + 457 + ], + "score": 0.92, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 443, + 505, + 458 + ], + "score": 1.0, + "content": "on top of a regular 2D", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 455, + 395, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 125, + 468 + ], + "score": 1.0, + "content": "grid", + "type": "text" + }, + { + "bbox": [ + 126, + 456, + 142, + 468 + ], + "score": 0.91, + "content": "\\{ k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 455, + 268, + 468 + ], + "score": 1.0, + "content": ", we can resample a new kernel", + "type": "text" + }, + { + "bbox": [ + 268, + 456, + 285, + 466 + ], + "score": 0.87, + "content": "W ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 455, + 374, + 468 + ], + "score": 1.0, + "content": "by a bilinear operator", + "type": "text" + }, + { + "bbox": [ + 374, + 456, + 382, + 465 + ], + "score": 0.84, + "content": "\\boldsymbol { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 455, + 395, + 468 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 470, + 483, + 515 + ], + "lines": [ + { + "bbox": [ + 154, + 470, + 483, + 515 + ], + "spans": [ + { + "bbox": [ + 154, + 470, + 483, + 515 + ], + "score": 0.82, + "content": "\\begin{array} { c } { W ^ { \\prime } \\equiv W _ { k + \\Delta k } = \\displaystyle \\sum _ { k ^ { \\prime } \\in K } | \\beta ( k + \\Delta k , k ^ { \\prime } ) W _ { k ^ { \\prime } } , } \\\\ { \\displaystyle \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) = \\operatorname* { m a x } ( 0 , 1 - | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | ) \\cdot \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) . } \\end{array}", + "type": "interline_equation", + "image_path": "a608a84c320e9f9db047d8137e472273804898794dfbeeeb983cc56c63cc8680.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 123, + 470, + 483, + 485.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 123, + 485.0, + 483, + 500.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 123, + 500.0, + 483, + 515.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 504, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 530 + ], + "score": 1.0, + "content": "Given this resampled kernel, DK convolves it with the input image just as in normal convolutions", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 528, + 302, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 302, + 540 + ], + "score": 1.0, + "content": "using rigid kernels, characterized by Equation 1.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 108, + 552, + 208, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 210, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 210, + 566 + ], + "score": 1.0, + "content": "A.2 BACKWARD PASS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "score": 1.0, + "content": "The backward pass of local DK consists of three types of gradients: (1) the gradient to the data of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 585, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 596 + ], + "score": 1.0, + "content": "the previous layer, (2) the gradient to the full scope kernel of the current layer and (3) the additional", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "gradient to the kernel offset generator of the current layer. The first two types of gradients share same", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "forms of the computation comparing to the normal convolutions. We now cover the computation for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 617, + 379, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 379, + 629 + ], + "score": 1.0, + "content": "the third flow of gradient that directs where to sample kernel values.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 503, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 371, + 647 + ], + "score": 1.0, + "content": "In the context of Equation 7, the partial derivative of a output item", + "type": "text" + }, + { + "bbox": [ + 371, + 635, + 385, + 646 + ], + "score": 0.89, + "content": "O _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 633, + 408, + 647 + ], + "score": 1.0, + "content": "w.r.t.", + "type": "text" + }, + { + "bbox": [ + 408, + 637, + 416, + 644 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 633, + 505, + 647 + ], + "score": 1.0, + "content": "component of a given", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 644, + 399, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 159, + 658 + ], + "score": 1.0, + "content": "kernel offset", + "type": "text" + }, + { + "bbox": [ + 159, + 645, + 178, + 656 + ], + "score": 0.91, + "content": "\\Delta k _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 644, + 239, + 658 + ], + "score": 1.0, + "content": "(similar for its", + "type": "text" + }, + { + "bbox": [ + 239, + 647, + 246, + 657 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 644, + 294, + 658 + ], + "score": 1.0, + "content": "component", + "type": "text" + }, + { + "bbox": [ + 294, + 646, + 313, + 658 + ], + "score": 0.9, + "content": "\\Delta k _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 644, + 399, + 658 + ], + "score": 1.0, + "content": ") can be computed as", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 661, + 394, + 691 + ], + "lines": [ + { + "bbox": [ + 192, + 661, + 394, + 691 + ], + "spans": [ + { + "bbox": [ + 192, + 661, + 394, + 691 + ], + "score": 0.91, + "content": "\\frac { \\partial O _ { j } } { \\partial \\Delta k _ { x } } = \\sum _ { k } I _ { j + k } \\bigg ( \\sum _ { k ^ { \\prime } } W _ { k ^ { \\prime } } \\frac { \\partial \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) } { \\partial \\Delta k _ { x } } \\bigg ) ,", + "type": "interline_equation", + "image_path": "cc0a8c703b7b502bedc043ba2fe0f1337abf699f80982d0d75b9a5b6be8431d4.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 661, + 394, + 676.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 192, + 676.0, + 394, + 691.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 695, + 486, + 734 + ], + "lines": [ + { + "bbox": [ + 150, + 695, + 486, + 734 + ], + "spans": [ + { + "bbox": [ + 150, + 695, + 486, + 734 + ], + "score": 0.83, + "content": "\\frac { \\partial \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) } { \\partial \\Delta k _ { x } } = \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) \\cdot \\left\\{ \\begin{array} { l l } { 0 } & { | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | \\ge 1 } \\\\ { 1 } & { k _ { x } + \\Delta k _ { x } < k _ { x } ^ { \\prime } } \\\\ { - 1 } & { k _ { x } + \\Delta k _ { x } \\ge k _ { x } ^ { \\prime } } \\end{array} \\right. .", + "type": "interline_equation", + "image_path": "d3c53ed1a230cc95c857ea460abdc9afc9a2b467ba33c1a90d363151ea5d0218.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 150, + 695, + 486, + 708.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 150, + 708.0, + 486, + 721.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 150, + 721.0, + 486, + 734.0 + ], + "spans": [], + "index": 35 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 145, + 81, + 464, + 236 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 81, + 464, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 81, + 464, + 236 + ], + "spans": [ + { + "bbox": [ + 145, + 81, + 464, + 236 + ], + "score": 0.973, + "type": "image", + "image_path": "5abbb82c034f8a61878e301501e3654d6912395090b816e2237653329513f497.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 145, + 81, + 464, + 132.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 145, + 132.66666666666666, + 464, + 184.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 145, + 184.33333333333331, + 464, + 235.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 244, + 506, + 310 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 326, + 256 + ], + "score": 1.0, + "content": "Figure 5: Illustration of feed-forwarding through a", + "type": "text" + }, + { + "bbox": [ + 326, + 244, + 346, + 255 + ], + "score": 0.87, + "content": "\\mathbf { 3 \\times 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 244, + 484, + 256 + ], + "score": 1.0, + "content": "local Deformable Kernel from a", + "type": "text" + }, + { + "bbox": [ + 484, + 244, + 505, + 255 + ], + "score": 0.85, + "content": "4 \\times 4", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 432, + 268 + ], + "score": 1.0, + "content": "scope. For each input patch, local DK first generates a group of kernel offsets", + "type": "text" + }, + { + "bbox": [ + 433, + 255, + 458, + 267 + ], + "score": 0.92, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 255, + 506, + 268 + ], + "score": 1.0, + "content": "from input", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 297, + 279 + ], + "score": 1.0, + "content": "feature patch using the light-weight generator", + "type": "text" + }, + { + "bbox": [ + 298, + 267, + 306, + 277 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 266, + 318, + 279 + ], + "score": 1.0, + "content": "(a", + "type": "text" + }, + { + "bbox": [ + 319, + 266, + 338, + 277 + ], + "score": 0.87, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "convolution of rigid kernel). Given the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 201, + 290 + ], + "score": 1.0, + "content": "original kernel weights", + "type": "text" + }, + { + "bbox": [ + 201, + 277, + 214, + 287 + ], + "score": 0.38, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 277, + 298, + 290 + ], + "score": 1.0, + "content": "and the offset group", + "type": "text" + }, + { + "bbox": [ + 298, + 277, + 323, + 289 + ], + "score": 0.92, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 277, + 456, + 290 + ], + "score": 1.0, + "content": ", DK samples a new set of kernel", + "type": "text" + }, + { + "bbox": [ + 456, + 277, + 473, + 287 + ], + "score": 0.85, + "content": "W ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "using a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 287, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 172, + 301 + ], + "score": 1.0, + "content": "bilinear sampler", + "type": "text" + }, + { + "bbox": [ + 173, + 288, + 181, + 298 + ], + "score": 0.64, + "content": "\\boldsymbol { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 287, + 505, + 301 + ], + "score": 1.0, + "content": ". Finally, DK convolves the input feature map and the sampled kernels to complete", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 299, + 203, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 203, + 312 + ], + "score": 1.0, + "content": "the whole computation.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "title", + "bbox": [ + 107, + 324, + 383, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 383, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 383, + 339 + ], + "score": 1.0, + "content": "A COMPUTATION FLOW OF DEFORMABLE KERNELS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 348, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "We now cover more details on implementing DKs by elaborating the computation flow of their", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "forward and backward passes. We will focus on the local DK given its superior performance in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 371, + 401, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 401, + 384 + ], + "score": 1.0, + "content": "practice. The extension to global DK implementation is straight-forward.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 349, + 505, + 384 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 396, + 201, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 202, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 202, + 408 + ], + "score": 1.0, + "content": "A.1 FORWARD PASS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 503, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 318, + 430 + ], + "score": 1.0, + "content": "In Section 3.3, we introduce a kernel offset generator", + "type": "text" + }, + { + "bbox": [ + 318, + 417, + 326, + 427 + ], + "score": 0.86, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 415, + 416, + 430 + ], + "score": 1.0, + "content": "and a bilinear sampler", + "type": "text" + }, + { + "bbox": [ + 416, + 417, + 424, + 426 + ], + "score": 0.79, + "content": "\\boldsymbol { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 415, + 505, + 430 + ], + "score": 1.0, + "content": ". Figure 5 illustrates", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 428, + 236, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 236, + 440 + ], + "score": 1.0, + "content": "an example of the forward pass.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 415, + 505, + 440 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 503, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 216, + 458 + ], + "score": 1.0, + "content": "Concretely, given a kernel", + "type": "text" + }, + { + "bbox": [ + 216, + 445, + 230, + 455 + ], + "score": 0.65, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 443, + 384, + 458 + ], + "score": 1.0, + "content": "and a learned group of kernel offsets", + "type": "text" + }, + { + "bbox": [ + 384, + 444, + 409, + 457 + ], + "score": 0.92, + "content": "\\{ \\Delta k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 443, + 505, + 458 + ], + "score": 1.0, + "content": "on top of a regular 2D", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 455, + 395, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 125, + 468 + ], + "score": 1.0, + "content": "grid", + "type": "text" + }, + { + "bbox": [ + 126, + 456, + 142, + 468 + ], + "score": 0.91, + "content": "\\{ k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 455, + 268, + 468 + ], + "score": 1.0, + "content": ", we can resample a new kernel", + "type": "text" + }, + { + "bbox": [ + 268, + 456, + 285, + 466 + ], + "score": 0.87, + "content": "W ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 455, + 374, + 468 + ], + "score": 1.0, + "content": "by a bilinear operator", + "type": "text" + }, + { + "bbox": [ + 374, + 456, + 382, + 465 + ], + "score": 0.84, + "content": "\\boldsymbol { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 455, + 395, + 468 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 443, + 505, + 468 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 470, + 483, + 515 + ], + "lines": [ + { + "bbox": [ + 154, + 470, + 483, + 515 + ], + "spans": [ + { + "bbox": [ + 154, + 470, + 483, + 515 + ], + "score": 0.82, + "content": "\\begin{array} { c } { W ^ { \\prime } \\equiv W _ { k + \\Delta k } = \\displaystyle \\sum _ { k ^ { \\prime } \\in K } | \\beta ( k + \\Delta k , k ^ { \\prime } ) W _ { k ^ { \\prime } } , } \\\\ { \\displaystyle \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) = \\operatorname* { m a x } ( 0 , 1 - | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | ) \\cdot \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) . } \\end{array}", + "type": "interline_equation", + "image_path": "a608a84c320e9f9db047d8137e472273804898794dfbeeeb983cc56c63cc8680.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 123, + 470, + 483, + 485.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 123, + 485.0, + 483, + 500.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 123, + 500.0, + 483, + 515.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 504, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 530 + ], + "score": 1.0, + "content": "Given this resampled kernel, DK convolves it with the input image just as in normal convolutions", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 528, + 302, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 302, + 540 + ], + "score": 1.0, + "content": "using rigid kernels, characterized by Equation 1.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 517, + 505, + 540 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 552, + 208, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 210, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 210, + 566 + ], + "score": 1.0, + "content": "A.2 BACKWARD PASS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 586 + ], + "score": 1.0, + "content": "The backward pass of local DK consists of three types of gradients: (1) the gradient to the data of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 585, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 596 + ], + "score": 1.0, + "content": "the previous layer, (2) the gradient to the full scope kernel of the current layer and (3) the additional", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "gradient to the kernel offset generator of the current layer. The first two types of gradients share same", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "forms of the computation comparing to the normal convolutions. We now cover the computation for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 617, + 379, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 379, + 629 + ], + "score": 1.0, + "content": "the third flow of gradient that directs where to sample kernel values.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 572, + 506, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 503, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 371, + 647 + ], + "score": 1.0, + "content": "In the context of Equation 7, the partial derivative of a output item", + "type": "text" + }, + { + "bbox": [ + 371, + 635, + 385, + 646 + ], + "score": 0.89, + "content": "O _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 633, + 408, + 647 + ], + "score": 1.0, + "content": "w.r.t.", + "type": "text" + }, + { + "bbox": [ + 408, + 637, + 416, + 644 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 633, + 505, + 647 + ], + "score": 1.0, + "content": "component of a given", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 644, + 399, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 159, + 658 + ], + "score": 1.0, + "content": "kernel offset", + "type": "text" + }, + { + "bbox": [ + 159, + 645, + 178, + 656 + ], + "score": 0.91, + "content": "\\Delta k _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 644, + 239, + 658 + ], + "score": 1.0, + "content": "(similar for its", + "type": "text" + }, + { + "bbox": [ + 239, + 647, + 246, + 657 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 644, + 294, + 658 + ], + "score": 1.0, + "content": "component", + "type": "text" + }, + { + "bbox": [ + 294, + 646, + 313, + 658 + ], + "score": 0.9, + "content": "\\Delta k _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 644, + 399, + 658 + ], + "score": 1.0, + "content": ") can be computed as", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 633, + 505, + 658 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 661, + 394, + 691 + ], + "lines": [ + { + "bbox": [ + 192, + 661, + 394, + 691 + ], + "spans": [ + { + "bbox": [ + 192, + 661, + 394, + 691 + ], + "score": 0.91, + "content": "\\frac { \\partial O _ { j } } { \\partial \\Delta k _ { x } } = \\sum _ { k } I _ { j + k } \\bigg ( \\sum _ { k ^ { \\prime } } W _ { k ^ { \\prime } } \\frac { \\partial \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) } { \\partial \\Delta k _ { x } } \\bigg ) ,", + "type": "interline_equation", + "image_path": "cc0a8c703b7b502bedc043ba2fe0f1337abf699f80982d0d75b9a5b6be8431d4.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 661, + 394, + 676.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 192, + 676.0, + 394, + 691.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 695, + 486, + 734 + ], + "lines": [ + { + "bbox": [ + 150, + 695, + 486, + 734 + ], + "spans": [ + { + "bbox": [ + 150, + 695, + 486, + 734 + ], + "score": 0.83, + "content": "\\frac { \\partial \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) } { \\partial \\Delta k _ { x } } = \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) \\cdot \\left\\{ \\begin{array} { l l } { 0 } & { | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | \\ge 1 } \\\\ { 1 } & { k _ { x } + \\Delta k _ { x } < k _ { x } ^ { \\prime } } \\\\ { - 1 } & { k _ { x } + \\Delta k _ { x } \\ge k _ { x } ^ { \\prime } } \\end{array} \\right. .", + "type": "interline_equation", + "image_path": "d3c53ed1a230cc95c857ea460abdc9afc9a2b467ba33c1a90d363151ea5d0218.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 150, + 695, + 486, + 708.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 150, + 708.0, + 486, + 721.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 150, + 721.0, + 486, + 734.0 + ], + "spans": [], + "index": 35 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 157, + 80, + 453, + 305 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 157, + 80, + 453, + 305 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 80, + 453, + 305 + ], + "spans": [ + { + "bbox": [ + 157, + 80, + 453, + 305 + ], + "score": 0.983, + "html": "
OutputResNet-50ResNet-50-DW
112 × 1127 × 7,64,stride 2
56×563 × 3 max pool, stride 2
56×561×1,643 ×3,641 × 1,256×31 ×1,1283 × 3,128,G = 1281 × 1,256×3
28×281×1,1283 ×3,1281 × 1,512×41 ×1,2563 × 3,256,G = 2561 ×1,512×4
14 ×141 ×1,2563 ×3,2561 × 1,1024×61 ×1,5123 × 3,512,G = 5121 × 1,1024×6
7×71 ×1,5123 ×3,5121 × 1,2048×31 ×1,10243 × 3,1024,G =10241 × 1,2048×3
1×17 × 7 global average pool,1000-d fc, softmax
#P (M)25.623.7
GFLOPs3.863.82
", + "type": "table", + "image_path": "a5bfd5471dec38e95309e5d40b5738522899bfb52ad9f1e2443e02b8e16a022a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 157, + 80, + 453, + 93.23529411764706 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 157, + 93.23529411764706, + 453, + 106.47058823529412 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 157, + 106.47058823529412, + 453, + 119.70588235294117 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 157, + 119.70588235294117, + 453, + 132.94117647058823 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 157, + 132.94117647058823, + 453, + 146.1764705882353 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 157, + 146.1764705882353, + 453, + 159.41176470588238 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 157, + 159.41176470588238, + 453, + 172.64705882352945 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 157, + 172.64705882352945, + 453, + 185.88235294117652 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 157, + 185.88235294117652, + 453, + 199.1176470588236 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 157, + 199.1176470588236, + 453, + 212.35294117647067 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 157, + 212.35294117647067, + 453, + 225.58823529411774 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 157, + 225.58823529411774, + 453, + 238.8235294117648 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 157, + 238.8235294117648, + 453, + 252.05882352941188 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 157, + 252.05882352941188, + 453, + 265.29411764705895 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 157, + 265.29411764705895, + 453, + 278.529411764706 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 157, + 278.529411764706, + 453, + 291.7647058823531 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 157, + 291.7647058823531, + 453, + 305.00000000000017 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 316, + 505, + 384 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "Table 5: Network architecture of our ResNet-50-DW comparing to the original ResNet-50", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 327, + 504, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 504, + 340 + ], + "score": 1.0, + "content": "Inside the brackets are the general shape of a residual block, including filter sizes and feature di-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 339, + 504, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 504, + 351 + ], + "score": 1.0, + "content": "mensionalities. The number of stacked blocks on each stage is presented outside the brackets.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 111, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 111, + 350, + 155, + 361 + ], + "score": 0.91, + "content": "G = 1 2 8 ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "suggests the depthwise convolution with 128 input channels. Two models have sim-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "ilar numbers of parameters and FLOPs. At the same time, depthwise convolutions facilitate the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 373, + 312, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 312, + 384 + ], + "score": 1.0, + "content": "computation efficiency of our Deformable Kernels.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + } + ], + "index": 13.75 + }, + { + "type": "title", + "bbox": [ + 108, + 402, + 272, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 274, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 274, + 416 + ], + "score": 1.0, + "content": "B NETWORK ARCHITECTURES", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "Table 5 shows the comparison between the original ResNet-50 (He et al., 2016) and our modified", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "ResNet-50-DW. The motivation of introducing depthwise convolutions to ResNet is to accelerate the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 449, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 461 + ], + "score": 1.0, + "content": "computation of local DKs based on our current implementations. The ResNet-50-DW model has", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "similar model capacity/complexity and performance (see Table 1) compared to its non-depthwise", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 471, + 384, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 384, + 484 + ], + "score": 1.0, + "content": "counterpart, making it an ideal base architecture for our experiments.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 487, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "On the other hand, in all of our experiments, MobileNet-V2 (Sandler et al., 2018) base model is left", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 153, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 153, + 510 + ], + "score": 1.0, + "content": "untouched.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 108, + 526, + 445, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 446, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 446, + 540 + ], + "score": 1.0, + "content": "C ADDITIONAL COMPARISON OF EFFECTIVE RECEPTIVE FIELDS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "We here show additional comparison of ERFs when objects have different kinds of deformations", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "in Figure 6. Comparing to baseline, our method can adapt ERFs to be more persistent to object’s", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 573, + 302, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 302, + 586 + ], + "score": 1.0, + "content": "semantic rather than its geometric configuration.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 107, + 601, + 315, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 316, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 316, + 615 + ], + "score": 1.0, + "content": "D ADDITIONAL EXPERIMENT DETAILS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "Image Classification: Similar to Goyal et al. (2017); Loshchilov & Hutter (2017), training is per-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "formed by SGD for 90 epochs with momentum 0.9 and batch size 256. We set our learning rate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 118, + 661 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 647, + 139, + 658 + ], + "score": 0.9, + "content": "1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 646, + 505, + 661 + ], + "score": 1.0, + "content": "so that it linearly warms up from zero within first 5 epochs. A cosine training schedule is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "score": 1.0, + "content": "applied over the training epochs. We use scale and aspect ratio augmentation with color perturbation", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "as standard data augmentations. We evaluate the performance of trained models on the ImageNet", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "2012 validation set. The images are resized so that the shorter side is of 256 pixels. We then centrally", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 691, + 444, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 126, + 705 + ], + "score": 1.0, + "content": "crop", + "type": "text" + }, + { + "bbox": [ + 127, + 692, + 171, + 702 + ], + "score": 0.89, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 691, + 444, + 705 + ], + "score": 1.0, + "content": "windows from the images as input to measure recognition accuracy.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 157, + 80, + 453, + 305 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 157, + 80, + 453, + 305 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 80, + 453, + 305 + ], + "spans": [ + { + "bbox": [ + 157, + 80, + 453, + 305 + ], + "score": 0.983, + "html": "
OutputResNet-50ResNet-50-DW
112 × 1127 × 7,64,stride 2
56×563 × 3 max pool, stride 2
56×561×1,643 ×3,641 × 1,256×31 ×1,1283 × 3,128,G = 1281 × 1,256×3
28×281×1,1283 ×3,1281 × 1,512×41 ×1,2563 × 3,256,G = 2561 ×1,512×4
14 ×141 ×1,2563 ×3,2561 × 1,1024×61 ×1,5123 × 3,512,G = 5121 × 1,1024×6
7×71 ×1,5123 ×3,5121 × 1,2048×31 ×1,10243 × 3,1024,G =10241 × 1,2048×3
1×17 × 7 global average pool,1000-d fc, softmax
#P (M)25.623.7
GFLOPs3.863.82
", + "type": "table", + "image_path": "a5bfd5471dec38e95309e5d40b5738522899bfb52ad9f1e2443e02b8e16a022a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 157, + 80, + 453, + 93.23529411764706 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 157, + 93.23529411764706, + 453, + 106.47058823529412 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 157, + 106.47058823529412, + 453, + 119.70588235294117 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 157, + 119.70588235294117, + 453, + 132.94117647058823 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 157, + 132.94117647058823, + 453, + 146.1764705882353 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 157, + 146.1764705882353, + 453, + 159.41176470588238 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 157, + 159.41176470588238, + 453, + 172.64705882352945 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 157, + 172.64705882352945, + 453, + 185.88235294117652 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 157, + 185.88235294117652, + 453, + 199.1176470588236 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 157, + 199.1176470588236, + 453, + 212.35294117647067 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 157, + 212.35294117647067, + 453, + 225.58823529411774 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 157, + 225.58823529411774, + 453, + 238.8235294117648 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 157, + 238.8235294117648, + 453, + 252.05882352941188 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 157, + 252.05882352941188, + 453, + 265.29411764705895 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 157, + 265.29411764705895, + 453, + 278.529411764706 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 157, + 278.529411764706, + 453, + 291.7647058823531 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 157, + 291.7647058823531, + 453, + 305.00000000000017 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 316, + 505, + 384 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "Table 5: Network architecture of our ResNet-50-DW comparing to the original ResNet-50", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 327, + 504, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 504, + 340 + ], + "score": 1.0, + "content": "Inside the brackets are the general shape of a residual block, including filter sizes and feature di-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 339, + 504, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 504, + 351 + ], + "score": 1.0, + "content": "mensionalities. The number of stacked blocks on each stage is presented outside the brackets.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 111, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 111, + 350, + 155, + 361 + ], + "score": 0.91, + "content": "G = 1 2 8 ^ { \\prime \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "suggests the depthwise convolution with 128 input channels. Two models have sim-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "ilar numbers of parameters and FLOPs. At the same time, depthwise convolutions facilitate the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 373, + 312, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 312, + 384 + ], + "score": 1.0, + "content": "computation efficiency of our Deformable Kernels.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + } + ], + "index": 13.75 + }, + { + "type": "title", + "bbox": [ + 108, + 402, + 272, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 274, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 274, + 416 + ], + "score": 1.0, + "content": "B NETWORK ARCHITECTURES", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 482 + ], + "lines": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "Table 5 shows the comparison between the original ResNet-50 (He et al., 2016) and our modified", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "ResNet-50-DW. The motivation of introducing depthwise convolutions to ResNet is to accelerate the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 449, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 461 + ], + "score": 1.0, + "content": "computation of local DKs based on our current implementations. The ResNet-50-DW model has", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "similar model capacity/complexity and performance (see Table 1) compared to its non-depthwise", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 471, + 384, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 384, + 484 + ], + "score": 1.0, + "content": "counterpart, making it an ideal base architecture for our experiments.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 427, + 506, + 484 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 487, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "On the other hand, in all of our experiments, MobileNet-V2 (Sandler et al., 2018) base model is left", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 153, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 153, + 510 + ], + "score": 1.0, + "content": "untouched.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 487, + 505, + 510 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 526, + 445, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 446, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 446, + 540 + ], + "score": 1.0, + "content": "C ADDITIONAL COMPARISON OF EFFECTIVE RECEPTIVE FIELDS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 563 + ], + "score": 1.0, + "content": "We here show additional comparison of ERFs when objects have different kinds of deformations", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "in Figure 6. Comparing to baseline, our method can adapt ERFs to be more persistent to object’s", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 573, + 302, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 302, + 586 + ], + "score": 1.0, + "content": "semantic rather than its geometric configuration.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 551, + 505, + 586 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 601, + 315, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 316, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 316, + 615 + ], + "score": 1.0, + "content": "D ADDITIONAL EXPERIMENT DETAILS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "Image Classification: Similar to Goyal et al. (2017); Loshchilov & Hutter (2017), training is per-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 649 + ], + "score": 1.0, + "content": "formed by SGD for 90 epochs with momentum 0.9 and batch size 256. We set our learning rate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 118, + 661 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 647, + 139, + 658 + ], + "score": 0.9, + "content": "1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 646, + 505, + 661 + ], + "score": 1.0, + "content": "so that it linearly warms up from zero within first 5 epochs. A cosine training schedule is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "score": 1.0, + "content": "applied over the training epochs. We use scale and aspect ratio augmentation with color perturbation", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "as standard data augmentations. We evaluate the performance of trained models on the ImageNet", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "2012 validation set. The images are resized so that the shorter side is of 256 pixels. We then centrally", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 691, + 444, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 126, + 705 + ], + "score": 1.0, + "content": "crop", + "type": "text" + }, + { + "bbox": [ + 127, + 692, + 171, + 702 + ], + "score": 0.89, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 691, + 444, + 705 + ], + "score": 1.0, + "content": "windows from the images as input to measure recognition accuracy.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 624, + 506, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 147, + 246, + 464, + 517 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 246, + 464, + 517 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 246, + 464, + 517 + ], + "spans": [ + { + "bbox": [ + 147, + 246, + 464, + 517 + ], + "score": 0.974, + "type": "image", + "image_path": "fe8c4b789257333e32ac79b42776e417679053ca788bfbae0a2167b18b100042.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 246, + 464, + 336.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 336.3333333333333, + 464, + 426.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 426.66666666666663, + 464, + 517.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 527, + 506, + 572 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "Figure 6: Effective Receptive Field Comparison between rigid kernels and DKs under different", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 104, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "kinds of Object Deformation. At each row and from left to right, we show the original image", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 108, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 108, + 549, + 155, + 560 + ], + "score": 0.87, + "content": "( 1 3 0 0 \\times 8 0 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 549, + 506, + 562 + ], + "score": 1.0, + "content": ", the image rotated by -90 degrees and the image scaled by 1.5 times. Images are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 561, + 300, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 300, + 573 + ], + "score": 1.0, + "content": "cropped and resized for the typesetting purpose.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 147, + 246, + 464, + 517 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 246, + 464, + 517 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 246, + 464, + 517 + ], + "spans": [ + { + "bbox": [ + 147, + 246, + 464, + 517 + ], + "score": 0.974, + "type": "image", + "image_path": "fe8c4b789257333e32ac79b42776e417679053ca788bfbae0a2167b18b100042.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 246, + 464, + 336.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 336.3333333333333, + 464, + 426.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 426.66666666666663, + 464, + 517.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 527, + 506, + 572 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "Figure 6: Effective Receptive Field Comparison between rigid kernels and DKs under different", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 104, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "kinds of Object Deformation. At each row and from left to right, we show the original image", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 108, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 108, + 549, + 155, + 560 + ], + "score": 0.87, + "content": "( 1 3 0 0 \\times 8 0 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 549, + 506, + 562 + ], + "score": 1.0, + "content": ", the image rotated by -90 degrees and the image scaled by 1.5 times. Images are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 561, + 300, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 300, + 573 + ], + "score": 1.0, + "content": "cropped and resized for the typesetting purpose.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/SkxSv6VFvS/SkxSv6VFvS_model.json b/parse/train/SkxSv6VFvS/SkxSv6VFvS_model.json new file mode 100644 index 0000000000000000000000000000000000000000..744544ff344ea53238c6a24914db90790af94b36 --- /dev/null +++ b/parse/train/SkxSv6VFvS/SkxSv6VFvS_model.json @@ -0,0 +1,17746 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1629, + 1402, + 1629, + 1402, + 1813, + 298, + 1813 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1461, + 1402, + 1461, + 1402, + 1613, + 298, + 1613 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 398, + 682, + 1302, + 682, + 1302, + 987, + 398, + 987 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1829, + 1402, + 1829, + 1402, + 1982, + 299, + 1982 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 398, + 993, + 1302, + 993, + 1302, + 1329, + 398, + 1329 + ], + "score": 0.962 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1398, + 219, + 1398, + 324, + 300, + 324 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 320, + 2005, + 1324, + 2005, + 1324, + 2033, + 320, + 2033 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 302, + 1391, + 573, + 1391, + 573, + 1425, + 302, + 1425 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 772, + 612, + 926, + 612, + 926, + 645, + 772, + 645 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2112, + 841, + 2112 + ], + "score": 0.706 + }, + { + "category_id": 1, + "poly": [ + 316, + 372, + 1317, + 372, + 1317, + 532, + 316, + 532 + ], + "score": 0.642 + }, + { + "category_id": 13, + "poly": [ + 583, + 375, + 673, + 375, + 673, + 407, + 583, + 407 + ], + "score": 0.77, + "latex": "\\mathbf { Z } \\mathbf { h } \\mathbf { u } ^ { 2 , 3 * }" + }, + { + "category_id": 13, + "poly": [ + 392, + 375, + 486, + 375, + 486, + 407, + 392, + 407 + ], + "score": 0.66, + "latex": "\\mathbf { G a o ^ { 1 , 3 * } } ," + }, + { + "category_id": 13, + "poly": [ + 752, + 375, + 809, + 375, + 809, + 407, + 752, + 407 + ], + "score": 0.6, + "latex": "\\mathbf { L i n ^ { 3 } }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 220.0, + 1402.0, + 220.0, + 1402.0, + 269.0, + 296.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 275.0, + 1225.0, + 275.0, + 1225.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2000.0, + 1327.0, + 2000.0, + 1327.0, + 2038.0, + 331.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1387.0, + 579.0, + 1387.0, + 579.0, + 1433.0, + 294.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 611.0, + 931.0, + 611.0, + 931.0, + 648.0, + 770.0, + 648.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": [ + 840.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1627.0, + 1404.0, + 1627.0, + 1404.0, + 1664.0, + 294.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1659.0, + 1406.0, + 1659.0, + 1406.0, + 1696.0, + 293.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1691.0, + 1406.0, + 1691.0, + 1406.0, + 1726.0, + 294.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1721.0, + 1406.0, + 1721.0, + 1406.0, + 1755.0, + 293.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1751.0, + 1404.0, + 1751.0, + 1404.0, + 1786.0, + 293.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1783.0, + 855.0, + 1783.0, + 855.0, + 1816.0, + 293.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 1404.0, + 1458.0, + 1404.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1490.0, + 1404.0, + 1490.0, + 1404.0, + 1525.0, + 294.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1520.0, + 1403.0, + 1520.0, + 1403.0, + 1557.0, + 294.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1551.0, + 1404.0, + 1551.0, + 1404.0, + 1588.0, + 294.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1583.0, + 998.0, + 1583.0, + 998.0, + 1620.0, + 294.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 682.0, + 1305.0, + 682.0, + 1305.0, + 717.0, + 394.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 714.0, + 1304.0, + 714.0, + 1304.0, + 747.0, + 394.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 745.0, + 1305.0, + 745.0, + 1305.0, + 778.0, + 394.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 774.0, + 1306.0, + 774.0, + 1306.0, + 810.0, + 393.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 803.0, + 1308.0, + 803.0, + 1308.0, + 842.0, + 392.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 833.0, + 1308.0, + 833.0, + 1308.0, + 872.0, + 392.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 867.0, + 1305.0, + 867.0, + 1305.0, + 900.0, + 395.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 896.0, + 1305.0, + 896.0, + 1305.0, + 931.0, + 393.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 928.0, + 1304.0, + 928.0, + 1304.0, + 958.0, + 396.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 957.0, + 1134.0, + 957.0, + 1134.0, + 992.0, + 394.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1828.0, + 1403.0, + 1828.0, + 1403.0, + 1863.0, + 297.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1859.0, + 1404.0, + 1859.0, + 1404.0, + 1892.0, + 297.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1888.0, + 1404.0, + 1888.0, + 1404.0, + 1927.0, + 293.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1919.0, + 1404.0, + 1919.0, + 1404.0, + 1954.0, + 294.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1952.0, + 1406.0, + 1952.0, + 1406.0, + 1985.0, + 293.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 991.0, + 1307.0, + 991.0, + 1307.0, + 1029.0, + 393.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1025.0, + 1304.0, + 1025.0, + 1304.0, + 1057.0, + 395.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1054.0, + 1305.0, + 1054.0, + 1305.0, + 1088.0, + 393.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1084.0, + 1306.0, + 1084.0, + 1306.0, + 1120.0, + 394.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1116.0, + 1306.0, + 1116.0, + 1306.0, + 1148.0, + 393.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1146.0, + 1306.0, + 1146.0, + 1306.0, + 1179.0, + 394.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1177.0, + 1306.0, + 1177.0, + 1306.0, + 1212.0, + 393.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1206.0, + 1305.0, + 1206.0, + 1305.0, + 1240.0, + 394.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1235.0, + 1303.0, + 1235.0, + 1303.0, + 1271.0, + 395.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1268.0, + 1306.0, + 1268.0, + 1306.0, + 1304.0, + 393.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1298.0, + 1303.0, + 1298.0, + 1303.0, + 1333.0, + 393.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 372.0, + 391.0, + 372.0, + 391.0, + 411.0, + 315.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 372.0, + 582.0, + 372.0, + 582.0, + 411.0, + 487.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 372.0, + 751.0, + 372.0, + 751.0, + 411.0, + 674.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 372.0, + 960.0, + 372.0, + 960.0, + 411.0, + 810.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 402.0, + 1318.0, + 402.0, + 1318.0, + 444.0, + 311.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 439.0, + 1052.0, + 439.0, + 1052.0, + 474.0, + 310.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 471.0, + 781.0, + 471.0, + 781.0, + 503.0, + 314.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 501.0, + 1198.0, + 501.0, + 1198.0, + 533.0, + 322.0, + 533.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1422, + 1404, + 1422, + 1404, + 1818, + 297, + 1818 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1130, + 1404, + 1130, + 1404, + 1407, + 297, + 1407 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 325, + 225, + 1375, + 225, + 1375, + 766, + 325, + 766 + ], + "score": 0.979 + }, + { + "category_id": 4, + "poly": [ + 297, + 787, + 1404, + 787, + 1404, + 1064, + 297, + 1064 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1400, + 1972, + 1400, + 2033, + 298, + 2033 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 301, + 1887, + 603, + 1887, + 603, + 1923, + 301, + 1923 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.705 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.108 + }, + { + "category_id": 13, + "poly": [ + 1037, + 789, + 1105, + 789, + 1105, + 818, + 1037, + 818 + ], + "score": 0.88, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1241, + 820, + 1279, + 820, + 1279, + 849, + 1241, + 849 + ], + "score": 0.67, + "latex": "\\cdot + \\overrightarrow { \\mathbf { \\Gamma } }" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 268.0, + 362.0, + 268.0, + 362.0, + 432.0, + 323.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 272.0, + 1014.0, + 272.0, + 1014.0, + 299.0, + 982.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 276.0, + 1073.0, + 276.0, + 1073.0, + 296.0, + 1050.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 290.0, + 1306.0, + 290.0, + 1306.0, + 300.0, + 1293.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 314.0, + 1001.0, + 314.0, + 1001.0, + 322.0, + 987.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 339.0, + 1012.0, + 339.0, + 1012.0, + 362.0, + 985.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 339.0, + 1070.0, + 339.0, + 1070.0, + 359.0, + 1049.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 340.0, + 1208.0, + 340.0, + 1208.0, + 359.0, + 1188.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 345.0, + 1308.0, + 345.0, + 1308.0, + 359.0, + 1292.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 393.0, + 546.0, + 393.0, + 546.0, + 408.0, + 530.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 399.0, + 1078.0, + 399.0, + 1078.0, + 427.0, + 1044.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 402.0, + 1012.0, + 402.0, + 1012.0, + 426.0, + 984.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 529.0, + 361.0, + 529.0, + 361.0, + 674.0, + 323.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 541.0, + 446.0, + 541.0, + 446.0, + 557.0, + 430.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 539.0, + 549.0, + 539.0, + 549.0, + 565.0, + 524.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 539.0, + 810.0, + 539.0, + 810.0, + 564.0, + 784.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 523.0, + 993.0, + 523.0, + 993.0, + 543.0, + 972.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 544.0, + 1039.0, + 544.0, + 1039.0, + 574.0, + 1008.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 566.0, + 969.0, + 566.0, + 969.0, + 591.0, + 941.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 572.0, + 1081.0, + 572.0, + 1081.0, + 597.0, + 1054.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 591.0, + 451.0, + 591.0, + 451.0, + 616.0, + 425.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 590.0, + 503.0, + 590.0, + 503.0, + 618.0, + 469.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 586.0, + 554.0, + 586.0, + 554.0, + 619.0, + 519.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 592.0, + 710.0, + 592.0, + 710.0, + 615.0, + 687.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 590.0, + 761.0, + 590.0, + 761.0, + 618.0, + 731.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 589.0, + 808.0, + 589.0, + 808.0, + 615.0, + 784.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 585.0, + 1015.0, + 585.0, + 1015.0, + 619.0, + 979.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 606.0, + 945.0, + 606.0, + 945.0, + 636.0, + 915.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 613.0, + 1057.0, + 613.0, + 1057.0, + 640.0, + 1025.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 639.0, + 503.0, + 639.0, + 503.0, + 668.0, + 471.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 639.0, + 553.0, + 639.0, + 553.0, + 668.0, + 522.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 639.0, + 712.0, + 639.0, + 712.0, + 669.0, + 682.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 640.0, + 760.0, + 640.0, + 760.0, + 664.0, + 734.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 639.0, + 813.0, + 639.0, + 813.0, + 669.0, + 782.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 630.0, + 991.0, + 630.0, + 991.0, + 663.0, + 954.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 645.0, + 1308.0, + 645.0, + 1308.0, + 659.0, + 1292.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 658.0, + 1032.0, + 658.0, + 1032.0, + 686.0, + 999.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 730.0, + 1359.0, + 730.0, + 1359.0, + 769.0, + 374.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.25, + 641.5, + 444.25, + 641.5, + 444.25, + 666.5, + 430.25, + 666.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 788.0, + 1036.0, + 788.0, + 1036.0, + 821.0, + 296.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 788.0, + 1404.0, + 788.0, + 1404.0, + 821.0, + 1106.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 818.0, + 1240.0, + 818.0, + 1240.0, + 855.0, + 295.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 818.0, + 1406.0, + 818.0, + 1406.0, + 855.0, + 1280.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 848.0, + 1404.0, + 848.0, + 1404.0, + 885.0, + 294.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 880.0, + 1406.0, + 880.0, + 1406.0, + 916.0, + 294.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 908.0, + 1406.0, + 908.0, + 1406.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 940.0, + 1404.0, + 940.0, + 1404.0, + 977.0, + 294.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 969.0, + 1405.0, + 969.0, + 1405.0, + 1007.0, + 294.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1000.0, + 1406.0, + 1000.0, + 1406.0, + 1037.0, + 294.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1034.0, + 1215.0, + 1034.0, + 1215.0, + 1067.0, + 296.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1884.0, + 608.0, + 1884.0, + 608.0, + 1931.0, + 291.0, + 1931.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, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2121.0, + 839.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1421.0, + 1401.0, + 1421.0, + 1401.0, + 1456.0, + 295.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1451.0, + 1406.0, + 1451.0, + 1406.0, + 1490.0, + 292.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1483.0, + 1406.0, + 1483.0, + 1406.0, + 1519.0, + 294.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1513.0, + 1404.0, + 1513.0, + 1404.0, + 1549.0, + 294.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1581.0, + 292.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1610.0, + 292.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1603.0, + 1404.0, + 1603.0, + 1404.0, + 1642.0, + 291.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 1405.0, + 1634.0, + 1405.0, + 1670.0, + 294.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1666.0, + 1406.0, + 1666.0, + 1406.0, + 1703.0, + 294.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1726.0, + 1404.0, + 1726.0, + 1404.0, + 1763.0, + 294.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1754.0, + 1405.0, + 1754.0, + 1405.0, + 1794.0, + 292.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1788.0, + 1337.0, + 1788.0, + 1337.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1131.0, + 1405.0, + 1131.0, + 1405.0, + 1166.0, + 292.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1199.0, + 292.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1194.0, + 1404.0, + 1194.0, + 1404.0, + 1227.0, + 295.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 1404.0, + 1223.0, + 1404.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1253.0, + 1405.0, + 1253.0, + 1405.0, + 1288.0, + 292.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 1406.0, + 1284.0, + 1406.0, + 1321.0, + 294.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1314.0, + 1406.0, + 1314.0, + 1406.0, + 1351.0, + 294.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 1404.0, + 1344.0, + 1404.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1375.0, + 1116.0, + 1375.0, + 1116.0, + 1410.0, + 293.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1402.0, + 1969.0, + 1402.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 566.0, + 2001.0, + 566.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 782, + 1404, + 782, + 1404, + 1268, + 298, + 1268 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 535, + 297, + 535 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1403, + 1849, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 550, + 1403, + 550, + 1403, + 766, + 298, + 766 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1384, + 1403, + 1384, + 1403, + 1508, + 299, + 1508 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1601, + 1403, + 1601, + 1403, + 1696, + 296, + 1696 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 738, + 1697, + 959, + 1697, + 959, + 1761, + 738, + 1761 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 295, + 1771, + 1402, + 1771, + 1402, + 1836, + 295, + 1836 + ], + "score": 0.957 + }, + { + "category_id": 0, + "poly": [ + 301, + 1546, + 721, + 1546, + 721, + 1578, + 301, + 1578 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 300, + 1315, + 508, + 1315, + 508, + 1350, + 300, + 1350 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1705, + 1400, + 1705, + 1400, + 1732, + 1369, + 1732 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.604 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.468 + }, + { + "category_id": 14, + "poly": [ + 739, + 1693, + 959, + 1693, + 959, + 1762, + 739, + 1762 + ], + "score": 0.95, + "latex": "O _ { j } = \\sum _ { k \\in \\mathcal { K } } I _ { j + k } W _ { k } ," + }, + { + "category_id": 13, + "poly": [ + 921, + 1601, + 1056, + 1601, + 1056, + 1633, + 921, + 1633 + ], + "score": 0.92, + "latex": "\\pmb { I } \\in \\mathbb { R } ^ { D \\times D }" + }, + { + "category_id": 13, + "poly": [ + 350, + 1665, + 432, + 1665, + 432, + 1698, + 350, + 1698 + ], + "score": 0.91, + "latex": "j \\in \\mathbb R ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 980, + 1771, + 1251, + 1771, + 1251, + 1807, + 980, + 1807 + ], + "score": 0.91, + "latex": "\\mathcal { K } = [ - K / 2 , K / 2 ] ^ { 2 } \\cap \\mathbb { Z }" + }, + { + "category_id": 13, + "poly": [ + 343, + 1633, + 506, + 1633, + 506, + 1663, + 343, + 1663 + ], + "score": 0.9, + "latex": "\\pmb { W } \\in \\mathbb { R } ^ { K \\times K }" + }, + { + "category_id": 13, + "poly": [ + 750, + 1775, + 770, + 1775, + 770, + 1801, + 750, + 1801 + ], + "score": 0.83, + "latex": "\\boldsymbol { k }" + }, + { + "category_id": 13, + "poly": [ + 960, + 1637, + 987, + 1637, + 987, + 1664, + 960, + 1664 + ], + "score": 0.82, + "latex": "o" + }, + { + "category_id": 13, + "poly": [ + 701, + 2005, + 728, + 2005, + 728, + 2030, + 701, + 2030 + ], + "score": 0.79, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 504, + 2007, + 524, + 2007, + 524, + 2030, + 504, + 2030 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 574, + 1887, + 594, + 1887, + 594, + 1909, + 574, + 1909 + ], + "score": 0.73, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 832, + 1851, + 869, + 1851, + 869, + 1878, + 832, + 1878 + ], + "score": 0.68, + "latex": "W" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1542.0, + 727.0, + 1542.0, + 727.0, + 1584.0, + 293.0, + 1584.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, + 1310.0, + 514.0, + 1310.0, + 514.0, + 1358.0, + 292.0, + 1358.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, + 782.0, + 1405.0, + 782.0, + 1405.0, + 816.0, + 296.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 809.0, + 1405.0, + 809.0, + 1405.0, + 848.0, + 292.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 841.0, + 1406.0, + 841.0, + 1406.0, + 877.0, + 293.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 871.0, + 1405.0, + 871.0, + 1405.0, + 908.0, + 293.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 903.0, + 1405.0, + 903.0, + 1405.0, + 940.0, + 292.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 930.0, + 1406.0, + 930.0, + 1406.0, + 971.0, + 291.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 963.0, + 1406.0, + 963.0, + 1406.0, + 999.0, + 292.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 993.0, + 1405.0, + 993.0, + 1405.0, + 1029.0, + 292.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1023.0, + 1406.0, + 1023.0, + 1406.0, + 1058.0, + 293.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1054.0, + 1404.0, + 1054.0, + 1404.0, + 1091.0, + 293.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1085.0, + 1406.0, + 1085.0, + 1406.0, + 1123.0, + 293.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1114.0, + 1405.0, + 1114.0, + 1405.0, + 1153.0, + 292.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1143.0, + 1405.0, + 1143.0, + 1405.0, + 1184.0, + 292.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1174.0, + 1405.0, + 1174.0, + 1405.0, + 1213.0, + 292.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1208.0, + 1405.0, + 1208.0, + 1405.0, + 1242.0, + 294.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1240.0, + 1385.0, + 1240.0, + 1385.0, + 1270.0, + 296.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 1404.0, + 293.0, + 1404.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1406.0, + 321.0, + 1406.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 386.0, + 294.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 1406.0, + 381.0, + 1406.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 414.0, + 1406.0, + 414.0, + 1406.0, + 449.0, + 295.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 442.0, + 1404.0, + 442.0, + 1404.0, + 478.0, + 294.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 476.0, + 1404.0, + 476.0, + 1404.0, + 508.0, + 296.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 502.0, + 431.0, + 502.0, + 431.0, + 538.0, + 294.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 831.0, + 1849.0, + 831.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1849.0, + 1404.0, + 1849.0, + 1404.0, + 1886.0, + 870.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1883.0, + 573.0, + 1883.0, + 573.0, + 1915.0, + 297.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1883.0, + 1403.0, + 1883.0, + 1403.0, + 1915.0, + 595.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1978.0, + 294.0, + 1978.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": [ + 294.0, + 2001.0, + 503.0, + 2001.0, + 503.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 2001.0, + 700.0, + 2001.0, + 700.0, + 2037.0, + 525.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 2001.0, + 926.0, + 2001.0, + 926.0, + 2037.0, + 729.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 548.0, + 1405.0, + 548.0, + 1405.0, + 588.0, + 293.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 583.0, + 1405.0, + 583.0, + 1405.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 609.0, + 1405.0, + 609.0, + 1405.0, + 651.0, + 292.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 643.0, + 1405.0, + 643.0, + 1405.0, + 678.0, + 294.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 707.0, + 293.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 701.0, + 1407.0, + 701.0, + 1407.0, + 741.0, + 292.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 733.0, + 802.0, + 733.0, + 802.0, + 770.0, + 295.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1384.0, + 1405.0, + 1384.0, + 1405.0, + 1420.0, + 295.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1416.0, + 1405.0, + 1416.0, + 1405.0, + 1448.0, + 294.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1447.0, + 1403.0, + 1447.0, + 1403.0, + 1480.0, + 294.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1074.0, + 1476.0, + 1074.0, + 1512.0, + 294.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1599.0, + 920.0, + 1599.0, + 920.0, + 1640.0, + 293.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1599.0, + 1405.0, + 1599.0, + 1405.0, + 1640.0, + 1057.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1625.0, + 342.0, + 1625.0, + 342.0, + 1672.0, + 291.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1625.0, + 959.0, + 1625.0, + 959.0, + 1672.0, + 507.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1625.0, + 1405.0, + 1625.0, + 1405.0, + 1672.0, + 988.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1663.0, + 349.0, + 1663.0, + 349.0, + 1702.0, + 295.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1663.0, + 662.0, + 1663.0, + 662.0, + 1702.0, + 433.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1771.0, + 749.0, + 1771.0, + 749.0, + 1807.0, + 294.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1771.0, + 979.0, + 1771.0, + 979.0, + 1807.0, + 771.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1771.0, + 1404.0, + 1771.0, + 1404.0, + 1807.0, + 1252.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1804.0, + 769.0, + 1804.0, + 769.0, + 1837.0, + 291.0, + 1837.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 536, + 297, + 536 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 628, + 1403, + 628, + 1403, + 784, + 298, + 784 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 797, + 1401, + 797, + 1401, + 960, + 300, + 960 + ], + "score": 0.978 + }, + { + "category_id": 8, + "poly": [ + 447, + 967, + 1252, + 967, + 1252, + 1144, + 447, + 1144 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 503, + 1239, + 1194, + 1239, + 1194, + 1333, + 503, + 1333 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 628, + 1695, + 1070, + 1695, + 1070, + 1763, + 628, + 1763 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 296, + 1344, + 1402, + 1344, + 1402, + 1412, + 296, + 1412 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 297, + 1622, + 1403, + 1622, + 1403, + 1685, + 297, + 1685 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 295, + 1154, + 1400, + 1154, + 1400, + 1229, + 295, + 1229 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 294, + 1428, + 1401, + 1428, + 1401, + 1502, + 294, + 1502 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 355, + 1513, + 1331, + 1513, + 1331, + 1611, + 355, + 1611 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 694, + 1835, + 1003, + 1835, + 1003, + 1899, + 694, + 1899 + ], + "score": 0.941 + }, + { + "category_id": 2, + "poly": [ + 297, + 1917, + 1402, + 1917, + 1402, + 2036, + 297, + 2036 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 298, + 1775, + 1401, + 1775, + 1401, + 1836, + 298, + 1836 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 299, + 571, + 904, + 571, + 904, + 603, + 299, + 603 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1843, + 1400, + 1843, + 1400, + 1870, + 1369, + 1870 + ], + "score": 0.872 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1705, + 1400, + 1705, + 1400, + 1733, + 1369, + 1733 + ], + "score": 0.857 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1539, + 1401, + 1539, + 1401, + 1567, + 1369, + 1567 + ], + "score": 0.802 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.786 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1042, + 1401, + 1042, + 1401, + 1070, + 1368, + 1070 + ], + "score": 0.722 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1264, + 1401, + 1264, + 1401, + 1293, + 1368, + 1293 + ], + "score": 0.525 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1264, + 1401, + 1264, + 1401, + 1293, + 1368, + 1293 + ], + "score": 0.413 + }, + { + "category_id": 9, + "poly": [ + 1368, + 1042, + 1401, + 1042, + 1401, + 1070, + 1368, + 1070 + ], + "score": 0.266 + }, + { + "category_id": 14, + "poly": [ + 628, + 1694, + 1070, + 1694, + 1070, + 1764, + 628, + 1764 + ], + "score": 0.95, + "latex": "\\mathcal { R } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in \\mathcal { K } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } ) ." + }, + { + "category_id": 13, + "poly": [ + 846, + 1154, + 1144, + 1154, + 1144, + 1201, + 846, + 1201 + ], + "score": 0.94, + "latex": "\\mathcal { R } ^ { ( n ) } ( i ; j ) \\equiv \\partial I _ { j } ^ { ( n ) } / \\partial I _ { i } ^ { ( 0 ) }" + }, + { + "category_id": 14, + "poly": [ + 360, + 1508, + 1336, + 1508, + 1336, + 1611, + 360, + 1611 + ], + "score": 0.94, + "latex": "\\mathcal { R } ^ { ( n ) } ( i ; j , \\tilde { k } _ { m } ) = \\sum _ { ( k _ { 1 } , \\dots , k _ { m - 1 } , k _ { m + 1 } , \\dots , k _ { n } ) \\in K ^ { n - 1 } } \\left( \\mathbb { 1 } \\left[ j + \\sum _ { s \\in \\mathbb { S } } k _ { s } = i \\right] \\cdot \\prod _ { s \\in \\mathbb { S } } W _ { k _ { s } } ^ { ( s ) } \\cdot W _ { \\tilde { k } _ { m } } ^ { ( m ) } \\right) ," + }, + { + "category_id": 14, + "poly": [ + 693, + 1830, + 1006, + 1830, + 1006, + 1900, + 693, + 1900 + ], + "score": 0.94, + "latex": "O _ { j } = \\operatorname* { m a x } ( \\sum _ { k \\in \\mathcal { K } } I _ { j + k } W _ { k } , 0 ) ." + }, + { + "category_id": 14, + "poly": [ + 503, + 1235, + 1193, + 1235, + 1193, + 1335, + 503, + 1335 + ], + "score": 0.94, + "latex": "\\mathcal { R } ^ { ( n ) } ( i ; j ) = \\sum _ { ( k _ { 1 } , k _ { 2 } , \\ldots , k _ { n } ) \\in K ^ { n } } \\left( \\mathbb { 1 } \\left[ j + \\sum _ { s = 1 } ^ { n } k _ { s } = i \\right] \\cdot \\prod _ { s = 1 } ^ { n } W _ { k _ { s } } ^ { ( s ) } \\right) ," + }, + { + "category_id": 13, + "poly": [ + 797, + 891, + 930, + 891, + 930, + 928, + 797, + 928 + ], + "score": 0.93, + "latex": "\\{ W ^ { ( s ) } \\} _ { s = 1 } ^ { n }" + }, + { + "category_id": 14, + "poly": [ + 445, + 965, + 1251, + 965, + 1251, + 1146, + 445, + 1146 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { { { \\cal I } _ { j } ^ { ( n ) } = \\displaystyle \\sum _ { k _ { n } \\in { \\cal K } } { \\cal I } _ { j + k _ { n } } ^ { ( n - 1 ) } { \\cal W } _ { k _ { n } } ^ { ( n ) } = \\displaystyle \\sum _ { ( k _ { n - 1 } , k _ { n } ) \\in { \\cal K } ^ { 2 } \\atop { } } { \\cal I } _ { j + k _ { n } + k _ { n - 1 } } ^ { ( n - 2 ) } { \\cal W } _ { k _ { n } } ^ { ( n ) } { \\cal W } _ { k _ { n - 1 } } ^ { ( n - 1 ) } = \\cdots } } \\\\ { { = \\displaystyle \\sum _ { ( k _ { 1 } , k _ { 2 } , \\ldots , k _ { n } ) \\in { \\cal K } ^ { n } } \\left( { \\cal I } _ { j + \\sum _ { s = 1 } ^ { n } k _ { s } } ^ { ( 0 ) } \\cdot \\prod _ { s = 1 } ^ { n } { \\cal W } _ { k _ { s } } ^ { ( s ) } \\right) . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1376, + 1159, + 1376, + 1159, + 1413, + 1066, + 1413 + ], + "score": 0.93, + "latex": "\\{ W ^ { ( s ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 372, + 1622, + 560, + 1622, + 560, + 1657, + 372, + 1657 + ], + "score": 0.93, + "latex": "\\mathbb { S } = [ 1 , n ] \\backslash \\{ m \\}" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1427, + 1238, + 1427, + 1238, + 1477, + 1164, + 1477 + ], + "score": 0.92, + "latex": "W _ { \\tilde { \\boldsymbol { k } } _ { m } } ^ { ( m ) }" + }, + { + "category_id": 13, + "poly": [ + 891, + 859, + 1009, + 859, + 1009, + 893, + 891, + 893 + ], + "score": 0.92, + "latex": "s \\in [ 1 , n ]" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1621, + 1315, + 1621, + 1315, + 1652, + 1211, + 1652 + ], + "score": 0.91, + "latex": "K ^ { 2 } 1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 298, + 925, + 409, + 925, + 409, + 958, + 298, + 958 + ], + "score": 0.91, + "latex": "{ \\cal O } \\equiv { \\cal I } ^ { ( n ) }" + }, + { + "category_id": 13, + "poly": [ + 621, + 893, + 706, + 893, + 706, + 923, + 621, + 923 + ], + "score": 0.91, + "latex": "K \\times K" + }, + { + "category_id": 13, + "poly": [ + 659, + 1625, + 742, + 1625, + 742, + 1652, + 659, + 1652 + ], + "score": 0.91, + "latex": "K \\times K" + }, + { + "category_id": 13, + "poly": [ + 435, + 890, + 483, + 890, + 483, + 922, + 435, + 922 + ], + "score": 0.89, + "latex": "\\pmb { I } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 618, + 1432, + 692, + 1432, + 692, + 1463, + 618, + 1463 + ], + "score": 0.89, + "latex": "W ^ { ( m ) }" + }, + { + "category_id": 13, + "poly": [ + 774, + 1435, + 840, + 1435, + 840, + 1464, + 774, + 1464 + ], + "score": 0.88, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 492, + 1433, + 537, + 1433, + 537, + 1463, + 492, + 1463 + ], + "score": 0.88, + "latex": "m ^ { \\mathrm { t h } }" + }, + { + "category_id": 13, + "poly": [ + 299, + 1948, + 356, + 1948, + 356, + 1978, + 299, + 1978 + ], + "score": 0.87, + "latex": "( 0 , 0 )" + }, + { + "category_id": 13, + "poly": [ + 1357, + 1921, + 1406, + 1921, + 1406, + 1949, + 1357, + 1949 + ], + "score": 0.86, + "latex": "j =" + }, + { + "category_id": 13, + "poly": [ + 600, + 1977, + 689, + 1977, + 689, + 2000, + 600, + 2000 + ], + "score": 0.86, + "latex": "D \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 373, + 1345, + 415, + 1345, + 415, + 1379, + 373, + 1379 + ], + "score": 0.84, + "latex": "\\mathbb { 1 } [ \\cdot ]" + }, + { + "category_id": 13, + "poly": [ + 502, + 1381, + 519, + 1381, + 519, + 1411, + 502, + 1411 + ], + "score": 0.83, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1102, + 1949, + 1119, + 1949, + 1119, + 1977, + 1102, + 1977 + ], + "score": 0.83, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 636, + 861, + 657, + 861, + 657, + 887, + 636, + 887 + ], + "score": 0.8, + "latex": "\\boldsymbol { k }" + }, + { + "category_id": 13, + "poly": [ + 811, + 1381, + 831, + 1381, + 831, + 1407, + 811, + 1407 + ], + "score": 0.8, + "latex": "\\boldsymbol { k }" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1164, + 1401, + 1164, + 1401, + 1195, + 1383, + 1195 + ], + "score": 0.78, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 597, + 1198, + 612, + 1198, + 612, + 1224, + 597, + 1224 + ], + "score": 0.74, + "latex": "_ i" + }, + { + "category_id": 13, + "poly": [ + 810, + 449, + 830, + 449, + 830, + 471, + 810, + 471 + ], + "score": 0.7, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1381, + 667, + 1401, + 667, + 1401, + 688, + 1381, + 688 + ], + "score": 0.68, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1308, + 830, + 1345, + 830, + 1345, + 858, + 1308, + 858 + ], + "score": 0.66, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1198, + 831, + 1218, + 831, + 1218, + 857, + 1198, + 857 + ], + "score": 0.66, + "latex": "\\pmb { I }" + }, + { + "category_id": 13, + "poly": [ + 1168, + 444, + 1196, + 444, + 1196, + 472, + 1168, + 472 + ], + "score": 0.58, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1774, + 1168, + 1774, + 1168, + 1805, + 1086, + 1805 + ], + "score": 0.47, + "latex": "\\mathrm { R e L U } ^ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1911.0, + 1356.0, + 1911.0, + 1356.0, + 1959.0, + 327.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1945.0, + 1101.0, + 1945.0, + 1101.0, + 1979.0, + 357.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1945.0, + 1403.0, + 1945.0, + 1403.0, + 1979.0, + 1120.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 599.0, + 1975.0, + 599.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1975.0, + 701.0, + 1975.0, + 701.0, + 2009.0, + 690.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1996.0, + 1391.0, + 1996.0, + 1391.0, + 2045.0, + 325.0, + 2045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 571.0, + 907.0, + 571.0, + 907.0, + 607.0, + 295.0, + 607.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, + 863.0, + 2085.0, + 863.0, + 2118.0, + 838.0, + 2118.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, + 262.0, + 1405.0, + 262.0, + 1405.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1404.0, + 291.0, + 1404.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 321.0, + 1406.0, + 321.0, + 1406.0, + 356.0, + 292.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 353.0, + 1406.0, + 353.0, + 1406.0, + 389.0, + 295.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 412.0, + 1407.0, + 412.0, + 1407.0, + 450.0, + 291.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 444.0, + 809.0, + 444.0, + 809.0, + 478.0, + 292.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 444.0, + 1167.0, + 444.0, + 1167.0, + 478.0, + 831.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 444.0, + 1404.0, + 444.0, + 1404.0, + 478.0, + 1197.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 473.0, + 1406.0, + 473.0, + 1406.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 897.0, + 503.0, + 897.0, + 542.0, + 294.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 630.0, + 1405.0, + 630.0, + 1405.0, + 663.0, + 297.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 661.0, + 1380.0, + 661.0, + 1380.0, + 694.0, + 294.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 689.0, + 1406.0, + 689.0, + 1406.0, + 727.0, + 292.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 718.0, + 1405.0, + 718.0, + 1405.0, + 758.0, + 292.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 753.0, + 655.0, + 753.0, + 655.0, + 786.0, + 296.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 796.0, + 1403.0, + 796.0, + 1403.0, + 833.0, + 295.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 827.0, + 1197.0, + 827.0, + 1197.0, + 864.0, + 293.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 827.0, + 1307.0, + 827.0, + 1307.0, + 864.0, + 1219.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 827.0, + 1406.0, + 827.0, + 1406.0, + 864.0, + 1346.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 861.0, + 635.0, + 861.0, + 635.0, + 894.0, + 295.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 861.0, + 890.0, + 861.0, + 890.0, + 894.0, + 658.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 861.0, + 1405.0, + 861.0, + 1405.0, + 894.0, + 1010.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 881.0, + 434.0, + 881.0, + 434.0, + 940.0, + 288.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 881.0, + 620.0, + 881.0, + 620.0, + 940.0, + 484.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 881.0, + 796.0, + 881.0, + 796.0, + 940.0, + 707.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 881.0, + 1413.0, + 881.0, + 1413.0, + 940.0, + 931.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 923.0, + 297.0, + 923.0, + 297.0, + 964.0, + 294.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 923.0, + 722.0, + 923.0, + 722.0, + 964.0, + 410.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1340.0, + 372.0, + 1340.0, + 372.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1340.0, + 1406.0, + 1340.0, + 1406.0, + 1382.0, + 416.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 501.0, + 1375.0, + 501.0, + 1413.0, + 294.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1375.0, + 810.0, + 1375.0, + 810.0, + 1413.0, + 520.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1375.0, + 1065.0, + 1375.0, + 1065.0, + 1413.0, + 832.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1375.0, + 1171.0, + 1375.0, + 1171.0, + 1413.0, + 1160.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 371.0, + 1619.0, + 371.0, + 1657.0, + 293.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1619.0, + 658.0, + 1619.0, + 658.0, + 1657.0, + 561.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1619.0, + 1210.0, + 1619.0, + 1210.0, + 1657.0, + 743.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1657.0, + 1316.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1652.0, + 1054.0, + 1652.0, + 1054.0, + 1688.0, + 295.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1142.0, + 845.0, + 1142.0, + 845.0, + 1209.0, + 288.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1142.0, + 1382.0, + 1142.0, + 1382.0, + 1209.0, + 1145.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1142.0, + 1409.0, + 1142.0, + 1409.0, + 1209.0, + 1402.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1190.0, + 596.0, + 1190.0, + 596.0, + 1234.0, + 293.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1190.0, + 841.0, + 1190.0, + 841.0, + 1234.0, + 613.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1424.0, + 491.0, + 1424.0, + 491.0, + 1473.0, + 287.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1424.0, + 617.0, + 1424.0, + 617.0, + 1473.0, + 538.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1424.0, + 773.0, + 1424.0, + 773.0, + 1473.0, + 693.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1424.0, + 1163.0, + 1424.0, + 1163.0, + 1473.0, + 841.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1424.0, + 1404.0, + 1424.0, + 1404.0, + 1473.0, + 1239.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1470.0, + 654.0, + 1470.0, + 654.0, + 1504.0, + 294.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1448.5, + 1230.0, + 1448.5, + 1230.0, + 1483.5, + 1191.0, + 1483.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1770.0, + 1085.0, + 1770.0, + 1085.0, + 1813.0, + 292.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1770.0, + 1402.0, + 1770.0, + 1402.0, + 1813.0, + 1169.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1800.0, + 381.0, + 1800.0, + 381.0, + 1842.0, + 290.0, + 1842.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1297, + 1405, + 1297, + 1405, + 1576, + 297, + 1576 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1758, + 1404, + 1758, + 1404, + 2036, + 297, + 2036 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 687, + 1403, + 687, + 1403, + 841, + 298, + 841 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 454, + 1405, + 454, + 1405, + 673, + 296, + 673 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1589, + 1403, + 1589, + 1403, + 1744, + 298, + 1744 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 295, + 1221, + 1400, + 1221, + 1400, + 1285, + 295, + 1285 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 296, + 936, + 1404, + 936, + 1404, + 999, + 296, + 999 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 585, + 1138, + 1113, + 1138, + 1113, + 1206, + 585, + 1206 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 716, + 1017, + 981, + 1017, + 981, + 1083, + 716, + 1083 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 298, + 1098, + 568, + 1098, + 568, + 1129, + 298, + 1129 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1037, + 228, + 1037, + 263, + 297, + 263 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 299, + 878, + 655, + 878, + 655, + 910, + 299, + 910 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 817, + 74, + 817, + 105, + 298, + 105 + ], + "score": 0.913 + }, + { + "category_id": 8, + "poly": [ + 331, + 278, + 1403, + 278, + 1403, + 439, + 331, + 439 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1026, + 1400, + 1026, + 1400, + 1054, + 1369, + 1054 + ], + "score": 0.747 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.736 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1149, + 1400, + 1149, + 1400, + 1177, + 1369, + 1177 + ], + "score": 0.733 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1149, + 1400, + 1149, + 1400, + 1177, + 1369, + 1177 + ], + "score": 0.182 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1026, + 1400, + 1026, + 1400, + 1054, + 1369, + 1054 + ], + "score": 0.171 + }, + { + "category_id": 14, + "poly": [ + 716, + 1014, + 982, + 1014, + 982, + 1083, + 716, + 1083 + ], + "score": 0.95, + "latex": "O _ { j } = \\sum _ { k \\in \\mathcal K } I _ { j + k } W _ { k + \\Delta k } ," + }, + { + "category_id": 14, + "poly": [ + 585, + 1137, + 1114, + 1137, + 1114, + 1209, + 585, + 1209 + ], + "score": 0.94, + "latex": "\\mathcal { R } _ { \\mathrm { D K } } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in { \\mathcal { K } } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } , k _ { m } + \\Delta k _ { m } ) ." + }, + { + "category_id": 13, + "poly": [ + 974, + 1912, + 1044, + 1912, + 1044, + 1945, + 974, + 1945 + ], + "score": 0.93, + "latex": "\\{ \\Delta k \\}" + }, + { + "category_id": 13, + "poly": [ + 423, + 967, + 493, + 967, + 493, + 1001, + 423, + 1001 + ], + "score": 0.93, + "latex": "\\{ \\Delta k \\}" + }, + { + "category_id": 14, + "poly": [ + 367, + 277, + 1409, + 277, + 1409, + 443, + 367, + 443 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\mathcal { R } ^ { ' ( n ) } ( i ; j , \\tilde { k } _ { m } ) = \\displaystyle \\sum _ { ( k _ { 1 } , \\cdots , k _ { m - 1 } , k _ { m + 1 } , \\cdots , k _ { n } ) \\in K ^ { n - 1 } } \\left( \\mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \\cdots , k _ { n } , \\tilde { k } _ { m } ) \\cdot \\prod _ { s \\in \\mathbb { S } } W _ { \\tilde { k } _ { s } } ^ { ( s ) } \\cdot W _ { \\tilde { k } _ { m } } ^ { m } \\right) } \\\\ & { \\mathcal { C } ^ { ( n ) } ( i ; j , k _ { 1 } , \\cdots , k _ { n } , \\tilde { k } _ { m } ) = \\mathbb { 1 } \\big [ j + \\displaystyle \\sum _ { s \\in \\mathbb { S } } k _ { s } = i \\big ] \\prod _ { s \\in \\mathbb { S } } \\mathbb { 1 } \\big [ \\displaystyle I _ { j } ^ { ( s - 1 ) } W _ { \\tilde { k } _ { s } } ^ { ( s ) } > 0 \\big ] \\mathbb { 1 } \\big [ I _ { j } ^ { ( m - 1 ) } W _ { \\tilde { k } _ { m } } ^ { ( m ) } > 0 \\big ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 607, + 1761, + 678, + 1761, + 678, + 1794, + 607, + 1794 + ], + "score": 0.91, + "latex": "\\mathcal { G } _ { \\mathrm { g l o b a l } }" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1390, + 1106, + 1390, + 1106, + 1419, + 1066, + 1419 + ], + "score": 0.91, + "latex": "K ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 788, + 1819, + 844, + 1819, + 844, + 1849, + 788, + 1849 + ], + "score": 0.9, + "latex": "2 K ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 689, + 1423, + 747, + 1423, + 747, + 1451, + 689, + 1451 + ], + "score": 0.89, + "latex": "9 \\times 9" + }, + { + "category_id": 13, + "poly": [ + 1307, + 1851, + 1368, + 1851, + 1368, + 1882, + 1307, + 1882 + ], + "score": 0.89, + "latex": "\\mathcal { G } _ { \\mathrm { l o c a l } }" + }, + { + "category_id": 13, + "poly": [ + 722, + 1331, + 790, + 1331, + 790, + 1360, + 722, + 1360 + ], + "score": 0.89, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 297, + 1910, + 352, + 1910, + 352, + 1940, + 297, + 1940 + ], + "score": 0.89, + "latex": "2 K ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 963, + 485, + 1010, + 485, + 1010, + 516, + 963, + 516 + ], + "score": 0.88, + "latex": "\\pmb { I } ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1391, + 429, + 1391, + 429, + 1419, + 394, + 1419 + ], + "score": 0.87, + "latex": "K ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 553, + 1683, + 574, + 1683, + 574, + 1711, + 553, + 1711 + ], + "score": 0.83, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 1027, + 969, + 1046, + 969, + 1046, + 995, + 1027, + 995 + ], + "score": 0.78, + "latex": "\\boldsymbol { k }" + }, + { + "category_id": 13, + "poly": [ + 1186, + 457, + 1205, + 457, + 1205, + 483, + 1186, + 483 + ], + "score": 0.75, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 916, + 938, + 954, + 938, + 954, + 966, + 916, + 966 + ], + "score": 0.7, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 481, + 1944, + 500, + 1944, + 500, + 1975, + 481, + 1975 + ], + "score": 0.69, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1361, + 1369, + 1361, + 1369, + 1389, + 1331, + 1389 + ], + "score": 0.44, + "latex": "W" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 658.0, + 878.0, + 658.0, + 914.0, + 295.0, + 914.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, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1405.0, + 1298.0, + 1405.0, + 1335.0, + 294.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1330.0, + 721.0, + 1330.0, + 721.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1330.0, + 1406.0, + 1330.0, + 1406.0, + 1365.0, + 791.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 1330.0, + 1360.0, + 1330.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1393.0, + 1370.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1385.0, + 393.0, + 1385.0, + 393.0, + 1431.0, + 291.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1385.0, + 1065.0, + 1385.0, + 1065.0, + 1431.0, + 430.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1385.0, + 1406.0, + 1385.0, + 1406.0, + 1431.0, + 1107.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1419.0, + 688.0, + 1419.0, + 688.0, + 1460.0, + 291.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1419.0, + 1407.0, + 1419.0, + 1407.0, + 1460.0, + 748.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1454.0, + 1405.0, + 1454.0, + 1405.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 1407.0, + 1481.0, + 1407.0, + 1518.0, + 292.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1514.0, + 1403.0, + 1514.0, + 1403.0, + 1547.0, + 295.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1542.0, + 1260.0, + 1542.0, + 1260.0, + 1580.0, + 294.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1759.0, + 606.0, + 1759.0, + 606.0, + 1796.0, + 294.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1759.0, + 1406.0, + 1759.0, + 1406.0, + 1796.0, + 679.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 1404.0, + 1791.0, + 1404.0, + 1823.0, + 295.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1816.0, + 787.0, + 1816.0, + 787.0, + 1856.0, + 292.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1816.0, + 1406.0, + 1816.0, + 1406.0, + 1856.0, + 845.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1847.0, + 1306.0, + 1847.0, + 1306.0, + 1888.0, + 292.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 1847.0, + 1406.0, + 1847.0, + 1406.0, + 1888.0, + 1369.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1915.0, + 294.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1909.0, + 973.0, + 1909.0, + 973.0, + 1948.0, + 353.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1948.0, + 1045.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 480.0, + 1942.0, + 480.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1977.0, + 501.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1998.0, + 433.0, + 1998.0, + 433.0, + 2042.0, + 292.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 689.0, + 1404.0, + 689.0, + 1404.0, + 722.0, + 296.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 718.0, + 1405.0, + 718.0, + 1405.0, + 752.0, + 292.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 747.0, + 1405.0, + 747.0, + 1405.0, + 783.0, + 294.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 814.0, + 293.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 809.0, + 632.0, + 809.0, + 632.0, + 842.0, + 296.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 456.0, + 1185.0, + 456.0, + 1185.0, + 487.0, + 295.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 456.0, + 1405.0, + 456.0, + 1405.0, + 487.0, + 1206.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 483.0, + 962.0, + 483.0, + 962.0, + 525.0, + 290.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 483.0, + 1407.0, + 483.0, + 1407.0, + 525.0, + 1011.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 517.0, + 1403.0, + 517.0, + 1403.0, + 555.0, + 293.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 550.0, + 1406.0, + 550.0, + 1406.0, + 585.0, + 296.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 582.0, + 1403.0, + 582.0, + 1403.0, + 613.0, + 295.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 611.0, + 1406.0, + 611.0, + 1406.0, + 646.0, + 293.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 641.0, + 1398.0, + 641.0, + 1398.0, + 676.0, + 295.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1591.0, + 1403.0, + 1591.0, + 1403.0, + 1624.0, + 296.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1620.0, + 1403.0, + 1620.0, + 1403.0, + 1653.0, + 296.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1685.0, + 296.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1680.0, + 552.0, + 1680.0, + 552.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1717.0, + 575.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1713.0, + 448.0, + 1713.0, + 448.0, + 1746.0, + 293.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1217.0, + 1405.0, + 1217.0, + 1405.0, + 1259.0, + 293.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 905.0, + 1252.0, + 905.0, + 1288.0, + 294.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 938.0, + 915.0, + 938.0, + 915.0, + 970.0, + 295.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 938.0, + 1401.0, + 938.0, + 1401.0, + 970.0, + 955.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 965.0, + 422.0, + 965.0, + 422.0, + 1001.0, + 295.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 965.0, + 1026.0, + 965.0, + 1026.0, + 1001.0, + 494.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 965.0, + 1321.0, + 965.0, + 1321.0, + 1001.0, + 1047.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1095.0, + 570.0, + 1095.0, + 570.0, + 1134.0, + 295.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 224.0, + 1041.0, + 224.0, + 1041.0, + 270.0, + 295.0, + 270.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 915, + 1405, + 915, + 1405, + 1100, + 297, + 1100 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1192, + 1404, + 1192, + 1404, + 1316, + 297, + 1316 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1589, + 1404, + 1589, + 1404, + 1713, + 298, + 1713 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 334, + 227, + 1377, + 227, + 1377, + 723, + 334, + 723 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1400, + 1942, + 1400, + 2036, + 301, + 2036 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 528, + 1798, + 1168, + 1798, + 1168, + 1935, + 528, + 1935 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 296, + 752, + 1405, + 752, + 1405, + 877, + 296, + 877 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 300, + 1444, + 1401, + 1444, + 1401, + 1507, + 300, + 1507 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 587, + 1515, + 1111, + 1515, + 1111, + 1581, + 587, + 1581 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 718, + 1370, + 980, + 1370, + 980, + 1436, + 718, + 1436 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 1726, + 1399, + 1726, + 1399, + 1789, + 298, + 1789 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 298, + 1135, + 875, + 1135, + 875, + 1168, + 298, + 1168 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1357, + 1523, + 1399, + 1523, + 1399, + 1552, + 1357, + 1552 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 307, + 1331, + 1041, + 1331, + 1041, + 1363, + 307, + 1363 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1357, + 1851, + 1400, + 1851, + 1400, + 1880, + 1357, + 1880 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 816, + 76, + 816, + 104, + 298, + 104 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1380, + 1400, + 1380, + 1400, + 1408, + 1369, + 1408 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.817 + }, + { + "category_id": 14, + "poly": [ + 718, + 1369, + 981, + 1369, + 981, + 1437, + 718, + 1437 + ], + "score": 0.95, + "latex": "O _ { j } = \\sum _ { k \\in \\mathcal { K } } I _ { j + k + \\Delta j } W _ { k } ," + }, + { + "category_id": 14, + "poly": [ + 587, + 1513, + 1112, + 1513, + 1112, + 1584, + 587, + 1584 + ], + "score": 0.94, + "latex": "\\mathcal { R } _ { \\mathrm { D C } } ^ { ( n ) } ( i ; j ) = \\sum _ { k _ { m } \\in \\mathcal { K } } \\mathcal { R } ^ { ( n ) } ( i ; j + k _ { m } + \\Delta j _ { m } , k _ { m } ) ." + }, + { + "category_id": 13, + "poly": [ + 827, + 1444, + 895, + 1444, + 895, + 1479, + 827, + 1479 + ], + "score": 0.93, + "latex": "\\{ \\Delta j \\}" + }, + { + "category_id": 14, + "poly": [ + 528, + 1795, + 1170, + 1795, + 1170, + 1938, + 528, + 1938 + ], + "score": 0.92, + "latex": "\\begin{array} { c } { { \\displaystyle { \\cal O } _ { j } = \\displaystyle \\sum _ { k \\in { \\cal K } } { \\cal I } _ { j + k + \\Delta j } W _ { k + \\Delta k } , } } \\\\ { { \\displaystyle \\mathcal { R } _ { \\mathrm { D C + D K } } ^ { ( n ) } ( i ; j ) = \\displaystyle \\sum _ { k _ { m } \\in { \\cal K } } { \\cal R } ^ { ( n ) } ( i ; j + k _ { m } + \\Delta j _ { m } , k _ { m } + \\Delta k _ { m } ) . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1447, + 1344, + 1447, + 1344, + 1478, + 1327, + 1478 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 229.0, + 363.0, + 229.0, + 363.0, + 721.0, + 326.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 288.0, + 1331.0, + 288.0, + 1331.0, + 307.0, + 1285.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 390.0, + 1276.0, + 390.0, + 1276.0, + 413.0, + 1228.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 399.0, + 1358.0, + 399.0, + 1358.0, + 425.0, + 1323.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 409.0, + 1287.0, + 409.0, + 1287.0, + 432.0, + 1227.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 503.0, + 867.0, + 503.0, + 867.0, + 511.0, + 858.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 536.0, + 867.0, + 536.0, + 867.0, + 545.0, + 858.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 570.0, + 717.0, + 570.0, + 717.0, + 631.0, + 694.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 573.0, + 702.0, + 573.0, + 702.0, + 593.0, + 684.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 591.0, + 698.0, + 591.0, + 698.0, + 607.0, + 689.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 608.0, + 697.0, + 608.0, + 697.0, + 623.0, + 688.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 616.0, + 838.0, + 616.0, + 838.0, + 624.0, + 827.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 655.0, + 723.0, + 655.0, + 723.0, + 679.0, + 667.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 654.0, + 1325.0, + 654.0, + 1325.0, + 671.0, + 1284.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.75, + 496.0, + 842.75, + 496.0, + 842.75, + 512.5, + 822.75, + 512.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 527.0, + 721.0, + 527.0, + 721.0, + 554.0, + 664.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.25, + 531.5, + 1326.25, + 531.5, + 1326.25, + 559.5, + 1271.25, + 559.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 751.0, + 1403.0, + 751.0, + 1403.0, + 786.0, + 294.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 784.0, + 1405.0, + 784.0, + 1405.0, + 817.0, + 294.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 816.0, + 1405.0, + 816.0, + 1405.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 841.0, + 847.0, + 841.0, + 847.0, + 881.0, + 293.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1134.0, + 877.0, + 1134.0, + 877.0, + 1171.0, + 293.0, + 1171.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, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 916.0, + 1405.0, + 916.0, + 1405.0, + 952.0, + 295.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 946.0, + 1405.0, + 946.0, + 1405.0, + 982.0, + 292.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 976.0, + 1406.0, + 976.0, + 1406.0, + 1013.0, + 292.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1005.0, + 1405.0, + 1005.0, + 1405.0, + 1042.0, + 292.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1035.0, + 1405.0, + 1035.0, + 1405.0, + 1074.0, + 292.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1069.0, + 691.0, + 1069.0, + 691.0, + 1103.0, + 295.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 1404.0, + 1191.0, + 1404.0, + 1227.0, + 294.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 1405.0, + 1222.0, + 1405.0, + 1255.0, + 295.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1254.0, + 1405.0, + 1254.0, + 1405.0, + 1290.0, + 294.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1287.0, + 766.0, + 1287.0, + 766.0, + 1316.0, + 296.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1587.0, + 1405.0, + 1587.0, + 1405.0, + 1625.0, + 293.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1404.0, + 1619.0, + 1404.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1649.0, + 1404.0, + 1649.0, + 1404.0, + 1687.0, + 292.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1375.0, + 1680.0, + 1375.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1979.0, + 296.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2006.0, + 293.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1110.0, + 2002.0, + 1110.0, + 2040.0, + 296.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1445.0, + 826.0, + 1445.0, + 826.0, + 1481.0, + 296.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1445.0, + 1326.0, + 1445.0, + 1326.0, + 1481.0, + 896.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1445.0, + 1403.0, + 1445.0, + 1403.0, + 1481.0, + 1345.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1476.0, + 1082.0, + 1476.0, + 1082.0, + 1511.0, + 296.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1723.0, + 1404.0, + 1723.0, + 1404.0, + 1765.0, + 293.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1758.0, + 1102.0, + 1758.0, + 1102.0, + 1793.0, + 296.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1326.0, + 1046.0, + 1326.0, + 1046.0, + 1368.0, + 302.0, + 1368.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1379, + 1404, + 1379, + 1404, + 1655, + 298, + 1655 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 635, + 1403, + 635, + 1403, + 941, + 297, + 941 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 957, + 1404, + 957, + 1404, + 1171, + 298, + 1171 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 437, + 1403, + 437, + 1403, + 620, + 298, + 620 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1671, + 1402, + 1671, + 1402, + 1915, + 299, + 1915 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 298, + 1402, + 298, + 1402, + 421, + 299, + 421 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 301, + 1271, + 1400, + 1271, + 1400, + 1364, + 301, + 1364 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 297, + 1947, + 1401, + 1947, + 1401, + 2035, + 297, + 2035 + ], + "score": 0.951 + }, + { + "category_id": 0, + "poly": [ + 300, + 1214, + 653, + 1214, + 653, + 1245, + 300, + 1245 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 557, + 226, + 557, + 261, + 300, + 261 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 104, + 300, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.667 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.176 + }, + { + "category_id": 13, + "poly": [ + 906, + 818, + 1016, + 818, + 1016, + 849, + 906, + 849 + ], + "score": 0.92, + "latex": "4 \\times 1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 346, + 590, + 496, + 590, + 496, + 619, + 346, + 619 + ], + "score": 0.91, + "latex": "\\pmb { k } + \\Delta \\pmb { k } \\in \\mathcal { K }" + }, + { + "category_id": 13, + "poly": [ + 524, + 909, + 584, + 909, + 584, + 939, + 524, + 939 + ], + "score": 0.9, + "latex": "1 0 ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1299, + 818, + 1360, + 818, + 1360, + 848, + 1299, + 848 + ], + "score": 0.9, + "latex": "1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 527, + 1626, + 593, + 1626, + 593, + 1653, + 527, + 1653 + ], + "score": 0.9, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 384, + 1794, + 452, + 1794, + 452, + 1823, + 384, + 1823 + ], + "score": 0.9, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 664, + 1443, + 728, + 1443, + 728, + 1471, + 664, + 1471 + ], + "score": 0.9, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1297, + 879, + 1357, + 879, + 1357, + 909, + 1297, + 909 + ], + "score": 0.9, + "latex": "1 0 ^ { - 2 }" + }, + { + "category_id": 13, + "poly": [ + 581, + 1765, + 649, + 1765, + 649, + 1792, + 581, + 1792 + ], + "score": 0.89, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 745, + 1504, + 813, + 1504, + 813, + 1532, + 745, + 1532 + ], + "score": 0.89, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 937, + 728, + 999, + 728, + 999, + 757, + 937, + 757 + ], + "score": 0.89, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1763, + 1327, + 1763, + 1327, + 1792, + 1260, + 1792 + ], + "score": 0.89, + "latex": "2 \\times 2" + }, + { + "category_id": 13, + "poly": [ + 1009, + 1504, + 1064, + 1504, + 1064, + 1532, + 1009, + 1532 + ], + "score": 0.85, + "latex": "+ 1 . 4" + }, + { + "category_id": 13, + "poly": [ + 577, + 1733, + 633, + 1733, + 633, + 1762, + 577, + 1762 + ], + "score": 0.84, + "latex": "+ 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 297, + 1472, + 351, + 1472, + 351, + 1503, + 297, + 1503 + ], + "score": 0.82, + "latex": "+ 0 . 7" + }, + { + "category_id": 13, + "poly": [ + 1060, + 1761, + 1126, + 1761, + 1126, + 1792, + 1060, + 1792 + ], + "score": 0.73, + "latex": "\\mathrm { D K } \\dot { \\mathrm { s } } ^ { 4 }" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1984.0, + 325.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 641.0, + 1972.0, + 641.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1998.0, + 1280.0, + 1998.0, + 1280.0, + 2042.0, + 325.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1211.0, + 657.0, + 1211.0, + 657.0, + 1249.0, + 294.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 223.0, + 561.0, + 223.0, + 561.0, + 267.0, + 293.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": [ + 840.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1417.0, + 295.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 1404.0, + 1409.0, + 1404.0, + 1445.0, + 294.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1443.0, + 663.0, + 1443.0, + 663.0, + 1475.0, + 296.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1443.0, + 1406.0, + 1443.0, + 1406.0, + 1475.0, + 729.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1471.0, + 296.0, + 1471.0, + 296.0, + 1509.0, + 293.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1471.0, + 1406.0, + 1471.0, + 1406.0, + 1509.0, + 352.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1503.0, + 744.0, + 1503.0, + 744.0, + 1539.0, + 293.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1503.0, + 1008.0, + 1503.0, + 1008.0, + 1539.0, + 814.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 1503.0, + 1406.0, + 1503.0, + 1406.0, + 1539.0, + 1065.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1531.0, + 1406.0, + 1531.0, + 1406.0, + 1569.0, + 292.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1563.0, + 1405.0, + 1563.0, + 1405.0, + 1598.0, + 293.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1593.0, + 1406.0, + 1593.0, + 1406.0, + 1629.0, + 294.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1625.0, + 526.0, + 1625.0, + 526.0, + 1658.0, + 296.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1625.0, + 742.0, + 1625.0, + 742.0, + 1658.0, + 594.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 637.0, + 1404.0, + 637.0, + 1404.0, + 669.0, + 295.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 666.0, + 1405.0, + 666.0, + 1405.0, + 702.0, + 295.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 697.0, + 1405.0, + 697.0, + 1405.0, + 733.0, + 294.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 727.0, + 936.0, + 727.0, + 936.0, + 763.0, + 295.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 727.0, + 1405.0, + 727.0, + 1405.0, + 763.0, + 1000.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 758.0, + 1407.0, + 758.0, + 1407.0, + 793.0, + 293.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 791.0, + 1405.0, + 791.0, + 1405.0, + 822.0, + 293.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 818.0, + 905.0, + 818.0, + 905.0, + 853.0, + 293.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 818.0, + 1298.0, + 818.0, + 1298.0, + 853.0, + 1017.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 818.0, + 1406.0, + 818.0, + 1406.0, + 853.0, + 1361.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 849.0, + 1407.0, + 849.0, + 1407.0, + 884.0, + 295.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 877.0, + 1296.0, + 877.0, + 1296.0, + 916.0, + 291.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 877.0, + 1408.0, + 877.0, + 1408.0, + 916.0, + 1358.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 906.0, + 523.0, + 906.0, + 523.0, + 947.0, + 292.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 906.0, + 1084.0, + 906.0, + 1084.0, + 947.0, + 585.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 957.0, + 1404.0, + 957.0, + 1404.0, + 992.0, + 294.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 990.0, + 1404.0, + 990.0, + 1404.0, + 1021.0, + 296.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1016.0, + 1405.0, + 1016.0, + 1405.0, + 1053.0, + 293.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 1405.0, + 1049.0, + 1405.0, + 1084.0, + 294.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1079.0, + 1402.0, + 1079.0, + 1402.0, + 1113.0, + 294.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1108.0, + 1406.0, + 1108.0, + 1406.0, + 1147.0, + 292.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1143.0, + 617.0, + 1143.0, + 617.0, + 1173.0, + 294.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 436.0, + 1404.0, + 436.0, + 1404.0, + 472.0, + 294.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 465.0, + 1406.0, + 465.0, + 1406.0, + 502.0, + 292.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 497.0, + 1407.0, + 497.0, + 1407.0, + 534.0, + 293.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 527.0, + 1405.0, + 527.0, + 1405.0, + 563.0, + 294.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 558.0, + 1405.0, + 558.0, + 1405.0, + 594.0, + 293.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 589.0, + 345.0, + 589.0, + 345.0, + 625.0, + 294.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 589.0, + 665.0, + 589.0, + 665.0, + 625.0, + 497.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1670.0, + 1406.0, + 1670.0, + 1406.0, + 1707.0, + 295.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1702.0, + 1404.0, + 1702.0, + 1404.0, + 1736.0, + 295.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1733.0, + 576.0, + 1733.0, + 576.0, + 1767.0, + 295.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1733.0, + 1406.0, + 1733.0, + 1406.0, + 1767.0, + 634.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1762.0, + 580.0, + 1762.0, + 580.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1762.0, + 1059.0, + 1762.0, + 1059.0, + 1795.0, + 650.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1762.0, + 1259.0, + 1762.0, + 1259.0, + 1795.0, + 1127.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 1762.0, + 1406.0, + 1762.0, + 1406.0, + 1795.0, + 1328.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1792.0, + 383.0, + 1792.0, + 383.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1792.0, + 1406.0, + 1792.0, + 1406.0, + 1826.0, + 453.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1820.0, + 1406.0, + 1820.0, + 1406.0, + 1860.0, + 293.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1853.0, + 1406.0, + 1853.0, + 1406.0, + 1889.0, + 293.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1885.0, + 689.0, + 1885.0, + 689.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 297.0, + 1404.0, + 297.0, + 1404.0, + 332.0, + 294.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 330.0, + 1406.0, + 330.0, + 1406.0, + 363.0, + 295.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 361.0, + 1403.0, + 361.0, + 1403.0, + 393.0, + 295.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 391.0, + 1005.0, + 391.0, + 1005.0, + 426.0, + 293.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1273.0, + 1405.0, + 1273.0, + 1405.0, + 1307.0, + 296.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1304.0, + 1405.0, + 1304.0, + 1405.0, + 1338.0, + 295.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1333.0, + 930.0, + 1333.0, + 930.0, + 1368.0, + 296.0, + 1368.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 329, + 224, + 1371, + 224, + 1371, + 725, + 329, + 725 + ], + "score": 0.983, + "html": "
Backbone1×1Deformable Kernels3×3Deformable Kernelstop1 (%)#P (M)GFLOPs
ResNet-50w/ow/o76.725.63.86
ResNet-50-DWw/ow/o76.323.73.82
ResNet-50-DWw/olocal, scope size 3×377.424.94.32
local, scope size 4×478.125.04.32
local, scope size 5×577.825.04.32
local, scope size 9×977.425.44.32
ResNet-50-DWw/oglobal, scope size 4×477.623.93.82
global,scope size 2×2global, scope size 4×477.980.14.09
w/olocal, scope size 4×478.125.04.32
global, scope size 2×2local, scope size 4×478.581.24.60
MobileNet-V2w/ow/o71.93.50.31
MobileNet-V2w/oglobal, scope size 4×473.63.70.31
global, scope size 2×2global, scope size 4×474.510.10.34
w/olocal, scope size 4×474.14.70.73
global, scope size 2×2local, scope size 4×474.811.10.76
" + }, + { + "category_id": 5, + "poly": [ + 328, + 860, + 1371, + 860, + 1371, + 1211, + 328, + 1211 + ], + "score": 0.983, + "html": "
Backbone1×1Deformable Kernels3×3DeformableKernelstop1 (%)#P (M)GFLOPs
ResNet-50-DWw/olocal, scope size 4×478.125.04.32
ResNet-50-DWw/ow/o77.642.57.13
with SCC ResNet-50-DWw/0local, scope size 4×478.943.77.61
w/o78.024.84.10
with DCNlocal, scope size 4×479.026.14.60
MobileNet-V2 MobileNet-V2w/olocal, scope size 4×474.14.70.73
with SCCw/ow/o74.319.02.19
local, scope size 4×475.519.72.48
MobileNet-V2 with DCNw/0w/o73.24.60.52
local, scope size 4×474.45.80.93
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1370, + 1404, + 1370, + 1404, + 1619, + 298, + 1619 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1711, + 1404, + 1711, + 1404, + 1926, + 297, + 1926 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.97 + }, + { + "category_id": 6, + "poly": [ + 301, + 749, + 1403, + 749, + 1403, + 840, + 301, + 840 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 105, + 300, + 105 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 1655, + 607, + 1655, + 607, + 1686, + 300, + 1686 + ], + "score": 0.895 + }, + { + "category_id": 6, + "poly": [ + 299, + 1234, + 1404, + 1234, + 1404, + 1326, + 299, + 1326 + ], + "score": 0.799 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.792 + }, + { + "category_id": 13, + "poly": [ + 530, + 1556, + 643, + 1556, + 643, + 1586, + 530, + 1586 + ], + "score": 0.9, + "latex": "+ 1 . 2 / + 1 . 2" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1526, + 1365, + 1526, + 1365, + 1555, + 1251, + 1555 + ], + "score": 0.89, + "latex": "+ 1 . 3 / + 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 845, + 1434, + 901, + 1434, + 901, + 1464, + 845, + 1464 + ], + "score": 0.85, + "latex": "+ 0 . 9" + }, + { + "category_id": 13, + "poly": [ + 1175, + 2004, + 1229, + 2004, + 1229, + 2032, + 1175, + 2032 + ], + "score": 0.79, + "latex": "+ 1 . 8" + }, + { + "category_id": 13, + "poly": [ + 791, + 229, + 837, + 229, + 837, + 254, + 791, + 254 + ], + "score": 0.77, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 791, + 867, + 837, + 867, + 837, + 891, + 791, + 891 + ], + "score": 0.74, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 979, + 486, + 1023, + 486, + 1023, + 504, + 979, + 504 + ], + "score": 0.7, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 521, + 230, + 567, + 230, + 567, + 254, + 521, + 254 + ], + "score": 0.7, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 393, + 2003, + 447, + 2003, + 447, + 2033, + 393, + 2033 + ], + "score": 0.69, + "latex": "+ 1 . 2" + }, + { + "category_id": 13, + "poly": [ + 971, + 514, + 1016, + 514, + 1016, + 533, + 971, + 533 + ], + "score": 0.69, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 979, + 457, + 1023, + 457, + 1023, + 474, + 979, + 474 + ], + "score": 0.67, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 522, + 868, + 567, + 868, + 567, + 891, + 522, + 891 + ], + "score": 0.67, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 971, + 1178, + 1018, + 1178, + 1018, + 1202, + 971, + 1202 + ], + "score": 0.65, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 972, + 390, + 1016, + 390, + 1016, + 410, + 972, + 410 + ], + "score": 0.63, + "latex": "5 \\times 5" + }, + { + "category_id": 13, + "poly": [ + 707, + 635, + 755, + 635, + 755, + 659, + 707, + 659 + ], + "score": 0.59, + "latex": "\\overline { { 2 \\times 2 } }" + }, + { + "category_id": 13, + "poly": [ + 971, + 419, + 1017, + 419, + 1017, + 438, + 971, + 438 + ], + "score": 0.58, + "latex": "9 \\times 9" + }, + { + "category_id": 13, + "poly": [ + 708, + 485, + 753, + 485, + 753, + 504, + 708, + 504 + ], + "score": 0.57, + "latex": "2 \\times 2" + }, + { + "category_id": 13, + "poly": [ + 978, + 607, + 1024, + 607, + 1024, + 630, + 978, + 630 + ], + "score": 0.56, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 977, + 636, + 1024, + 636, + 1024, + 659, + 977, + 659 + ], + "score": 0.56, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 971, + 331, + 1016, + 331, + 1016, + 351, + 971, + 351 + ], + "score": 0.54, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 973, + 361, + 1018, + 361, + 1018, + 381, + 973, + 381 + ], + "score": 0.52, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 972, + 1022, + 1019, + 1022, + 1019, + 1046, + 972, + 1046 + ], + "score": 0.51, + "latex": "\\overline { { 4 \\times 4 } }" + }, + { + "category_id": 13, + "poly": [ + 972, + 541, + 1018, + 541, + 1018, + 563, + 972, + 563 + ], + "score": 0.5, + "latex": "{ \\bf 4 } \\times { \\bf 4 }" + }, + { + "category_id": 13, + "poly": [ + 971, + 664, + 1018, + 664, + 1018, + 688, + 971, + 688 + ], + "score": 0.47, + "latex": "\\overline { { 4 \\times 4 } }" + }, + { + "category_id": 13, + "poly": [ + 972, + 692, + 1020, + 692, + 1020, + 718, + 972, + 718 + ], + "score": 0.46, + "latex": "\\overline { { 4 \\times 4 } }" + }, + { + "category_id": 13, + "poly": [ + 619, + 1973, + 738, + 1973, + 738, + 2003, + 619, + 2003 + ], + "score": 0.45, + "latex": "3 6 . 6 \\ \\mathrm { m A P } ," + }, + { + "category_id": 13, + "poly": [ + 972, + 1118, + 1019, + 1118, + 1019, + 1142, + 972, + 1142 + ], + "score": 0.44, + "latex": "\\overline { { 4 \\times 4 } }" + }, + { + "category_id": 13, + "poly": [ + 709, + 692, + 757, + 692, + 757, + 717, + 709, + 717 + ], + "score": 0.42, + "latex": "\\overline { { 2 \\times 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1111, + 233, + 1143, + 233, + 1143, + 255, + 1111, + 255 + ], + "score": 0.4, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 1110, + 868, + 1147, + 868, + 1147, + 893, + 1110, + 893 + ], + "score": 0.39, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 971, + 1060, + 1017, + 1060, + 1017, + 1083, + 971, + 1083 + ], + "score": 0.36, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 338, + 1835, + 399, + 1835, + 399, + 1864, + 338, + 1864 + ], + "score": 0.35, + "latex": "1 2 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 393, + 2003, + 512, + 2003, + 512, + 2033, + 393, + 2033 + ], + "score": 0.33, + "latex": "+ 1 . 2 \\mathrm { m A P }" + }, + { + "category_id": 13, + "poly": [ + 710, + 541, + 756, + 541, + 756, + 563, + 710, + 563 + ], + "score": 0.31, + "latex": "\\pmb { 2 } \\times \\pmb { 2 }" + }, + { + "category_id": 13, + "poly": [ + 971, + 903, + 1018, + 903, + 1018, + 927, + 971, + 927 + ], + "score": 0.28, + "latex": "4 \\times 4" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 746.0, + 1403.0, + 746.0, + 1403.0, + 785.0, + 294.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 780.0, + 1403.0, + 780.0, + 1403.0, + 814.0, + 296.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 810.0, + 777.0, + 810.0, + 777.0, + 841.0, + 296.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 612.0, + 1652.0, + 612.0, + 1691.0, + 294.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1272.0, + 293.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1263.0, + 1405.0, + 1263.0, + 1405.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1294.0, + 724.0, + 1294.0, + 724.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1372.0, + 1404.0, + 1372.0, + 1404.0, + 1406.0, + 296.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1404.0, + 1404.0, + 1404.0, + 1404.0, + 1438.0, + 294.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1433.0, + 844.0, + 1433.0, + 844.0, + 1469.0, + 293.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1433.0, + 1404.0, + 1433.0, + 1404.0, + 1469.0, + 902.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1465.0, + 1402.0, + 1465.0, + 1402.0, + 1499.0, + 294.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1493.0, + 1404.0, + 1493.0, + 1404.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1525.0, + 1250.0, + 1525.0, + 1250.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 1525.0, + 1406.0, + 1525.0, + 1406.0, + 1562.0, + 1366.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1553.0, + 529.0, + 1553.0, + 529.0, + 1594.0, + 292.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1553.0, + 1406.0, + 1553.0, + 1406.0, + 1594.0, + 644.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1588.0, + 1402.0, + 1588.0, + 1402.0, + 1622.0, + 294.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1710.0, + 1406.0, + 1710.0, + 1406.0, + 1747.0, + 295.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1741.0, + 1405.0, + 1741.0, + 1405.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1404.0, + 1773.0, + 1404.0, + 1807.0, + 294.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1805.0, + 1404.0, + 1805.0, + 1404.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1833.0, + 337.0, + 1833.0, + 337.0, + 1871.0, + 294.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1833.0, + 1405.0, + 1833.0, + 1405.0, + 1871.0, + 400.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1865.0, + 1406.0, + 1865.0, + 1406.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1894.0, + 671.0, + 1894.0, + 671.0, + 1932.0, + 292.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 618.0, + 1971.0, + 618.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 739.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 392.0, + 2004.0, + 392.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 2004.0, + 1174.0, + 2004.0, + 1174.0, + 2037.0, + 513.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2037.0, + 1230.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1251, + 1404, + 1251, + 1404, + 1526, + 298, + 1526 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 330, + 224, + 1370, + 224, + 1370, + 565, + 330, + 565 + ], + "score": 0.981, + "html": "
Backbone1×1Deformable Kernels3×3Deformable KernelsmAPmAPsmAPMmAPL
ResNet-50-DWw/ow/o36.622.139.946.6
ResNet-50-DWw/oglobal, scope size 4×436.722.640.246.9
global,scope size 2×2global, scope size 4×437.123.140.646.6
w/olocal, scope size 4×437.823.441.648.2
global, scope size 2×2local, scope size 4×438.423.442.049.4
MobileNet-V2w/ow/o31.318.633.740.4
MobileNet-V2w/oglobal, scope size 4×432.519.635.841.9
global,scope size 2×2global, scope size 4×432.919.435.542.8
w/0local, scope size 4×432.919.536.042.5
global, scope size 2×2local, scope size 4×433.720.236.744.0
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1619, + 1404, + 1619, + 1404, + 1866, + 297, + 1866 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 329, + 638, + 1371, + 638, + 1371, + 980, + 329, + 980 + ], + "score": 0.98, + "html": "
Backbone1×1Deformable Kernels3×3DeformableKernelsmAPmAPsmAPMmAPL
ResNet-50-DWglobal, scope size 2×2local, scope size 4×438.423.442.049.4
ResNet-50-DWw/ow/o36.322.139.347.0
with SCC ResNet-50-DWw/olocal, scope size 4×438.023.441.948.4
w/o39.924.043.452.6
with DCNlocal,scope size 4×440.624.643.953.3
MobileNet-V2 MobileNet-V2global, scope size 2×2local, scope size 4×4 w/o33.720.236.744.0
with SCCw/olocal, scope size 4×433.220.535.643.3
34.320.237.344.7
MobileNet-V2 with DCNw/ow/o local, scope size 4×434.4 35.620.5 20.637.0 38.544.7 47.3
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1111, + 1403, + 1111, + 1403, + 1235, + 299, + 1235 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1881, + 1402, + 1881, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 105, + 300, + 105 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 298, + 1563, + 879, + 1563, + 879, + 1594, + 298, + 1594 + ], + "score": 0.893 + }, + { + "category_id": 6, + "poly": [ + 292, + 1003, + 1397, + 1003, + 1397, + 1067, + 292, + 1067 + ], + "score": 0.86 + }, + { + "category_id": 6, + "poly": [ + 366, + 587, + 1329, + 587, + 1329, + 620, + 366, + 620 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 13, + "poly": [ + 296, + 1434, + 409, + 1434, + 409, + 1464, + 296, + 1464 + ], + "score": 0.87, + "latex": "+ 1 . 7 / + 1 . 1" + }, + { + "category_id": 13, + "poly": [ + 654, + 1404, + 767, + 1404, + 767, + 1434, + 654, + 1434 + ], + "score": 0.87, + "latex": "+ 0 . 7 / + 1 . 2" + }, + { + "category_id": 13, + "poly": [ + 677, + 1144, + 733, + 1144, + 733, + 1173, + 677, + 1173 + ], + "score": 0.79, + "latex": "+ 1 . 6" + }, + { + "category_id": 13, + "poly": [ + 518, + 230, + 562, + 230, + 562, + 254, + 518, + 254 + ], + "score": 0.78, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 517, + 644, + 562, + 644, + 562, + 668, + 517, + 668 + ], + "score": 0.71, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 782, + 231, + 826, + 231, + 826, + 254, + 782, + 254 + ], + "score": 0.71, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 781, + 644, + 826, + 644, + 826, + 668, + 781, + 668 + ], + "score": 0.7, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 966, + 301, + 1008, + 301, + 1008, + 318, + 966, + 318 + ], + "score": 0.69, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 848, + 1144, + 968, + 1144, + 968, + 1173, + 848, + 1173 + ], + "score": 0.65, + "latex": "+ 2 . 4 \\ \\mathrm { m A P } ," + }, + { + "category_id": 13, + "poly": [ + 959, + 382, + 1005, + 382, + 1005, + 405, + 959, + 405 + ], + "score": 0.53, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 965, + 329, + 1009, + 329, + 1009, + 347, + 965, + 347 + ], + "score": 0.52, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 700, + 680, + 746, + 680, + 746, + 704, + 700, + 704 + ], + "score": 0.51, + "latex": "2 \\times 2" + }, + { + "category_id": 13, + "poly": [ + 957, + 505, + 1003, + 505, + 1003, + 528, + 957, + 528 + ], + "score": 0.51, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 964, + 477, + 1009, + 477, + 1009, + 498, + 964, + 498 + ], + "score": 0.48, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 964, + 449, + 1009, + 449, + 1009, + 469, + 964, + 469 + ], + "score": 0.48, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 848, + 1144, + 904, + 1144, + 904, + 1173, + 848, + 1173 + ], + "score": 0.46, + "latex": "+ 2 . 4" + }, + { + "category_id": 13, + "poly": [ + 702, + 380, + 748, + 380, + 748, + 405, + 702, + 405 + ], + "score": 0.42, + "latex": "\\overline { { 2 \\times 2 } }" + }, + { + "category_id": 13, + "poly": [ + 959, + 355, + 1002, + 355, + 1002, + 375, + 959, + 375 + ], + "score": 0.41, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 701, + 532, + 748, + 532, + 748, + 557, + 701, + 557 + ], + "score": 0.37, + "latex": "\\overline { { 2 \\times 2 } }" + }, + { + "category_id": 13, + "poly": [ + 700, + 476, + 745, + 476, + 745, + 499, + 700, + 499 + ], + "score": 0.37, + "latex": "2 \\times 2" + }, + { + "category_id": 13, + "poly": [ + 958, + 532, + 1005, + 532, + 1005, + 556, + 958, + 556 + ], + "score": 0.37, + "latex": "\\overline { { 4 \\times 4 } }" + }, + { + "category_id": 13, + "poly": [ + 700, + 833, + 745, + 833, + 745, + 856, + 700, + 856 + ], + "score": 0.36, + "latex": "2 \\times 2" + }, + { + "category_id": 13, + "poly": [ + 700, + 326, + 745, + 326, + 745, + 347, + 700, + 347 + ], + "score": 0.29, + "latex": "2 \\times 2" + }, + { + "category_id": 13, + "poly": [ + 959, + 947, + 1005, + 947, + 1005, + 973, + 959, + 973 + ], + "score": 0.27, + "latex": "\\overline { { 4 \\times 4 } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1562.0, + 883.0, + 1562.0, + 883.0, + 1597.0, + 295.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 998.0, + 1402.0, + 998.0, + 1402.0, + 1040.0, + 292.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1031.0, + 1053.0, + 1031.0, + 1053.0, + 1071.0, + 294.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 581.0, + 1333.0, + 581.0, + 1333.0, + 626.0, + 364.0, + 626.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": [ + 293.0, + 1249.0, + 1404.0, + 1249.0, + 1404.0, + 1287.0, + 293.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1279.0, + 1406.0, + 1279.0, + 1406.0, + 1317.0, + 293.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1312.0, + 1406.0, + 1312.0, + 1406.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1340.0, + 1406.0, + 1340.0, + 1406.0, + 1379.0, + 292.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1370.0, + 1408.0, + 1370.0, + 1408.0, + 1412.0, + 291.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1403.0, + 653.0, + 1403.0, + 653.0, + 1439.0, + 294.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1403.0, + 1405.0, + 1403.0, + 1405.0, + 1439.0, + 768.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1433.0, + 1404.0, + 1433.0, + 1404.0, + 1469.0, + 410.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1464.0, + 1405.0, + 1464.0, + 1405.0, + 1500.0, + 293.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1496.0, + 393.0, + 1496.0, + 393.0, + 1529.0, + 293.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1621.0, + 1404.0, + 1621.0, + 1404.0, + 1655.0, + 295.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1686.0, + 292.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1406.0, + 1682.0, + 1406.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1711.0, + 1406.0, + 1711.0, + 1406.0, + 1747.0, + 294.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1741.0, + 1405.0, + 1741.0, + 1405.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1771.0, + 1404.0, + 1771.0, + 1404.0, + 1810.0, + 292.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1803.0, + 1404.0, + 1803.0, + 1404.0, + 1839.0, + 292.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1836.0, + 547.0, + 1836.0, + 547.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1112.0, + 1405.0, + 1112.0, + 1405.0, + 1145.0, + 295.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1144.0, + 676.0, + 1144.0, + 676.0, + 1177.0, + 297.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1144.0, + 847.0, + 1144.0, + 847.0, + 1177.0, + 734.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1144.0, + 1403.0, + 1144.0, + 1403.0, + 1177.0, + 969.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1209.0, + 293.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 642.0, + 1202.0, + 642.0, + 1240.0, + 294.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1881.0, + 1403.0, + 1881.0, + 1403.0, + 1914.0, + 297.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1946.0, + 296.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1404.0, + 2001.0, + 1404.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1404, + 1849, + 1404, + 2033, + 298, + 2033 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 325, + 780, + 1374, + 780, + 1374, + 1306, + 325, + 1306 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 1609, + 1404, + 1609, + 1404, + 1703, + 300, + 1703 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 322, + 222, + 1374, + 222, + 1374, + 500, + 322, + 500 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 296, + 1330, + 1404, + 1330, + 1404, + 1546, + 296, + 1546 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 295, + 525, + 1405, + 525, + 1405, + 740, + 295, + 740 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 300, + 1768, + 543, + 1768, + 543, + 1804, + 300, + 1804 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.846 + }, + { + "category_id": 13, + "poly": [ + 1241, + 475, + 1328, + 475, + 1328, + 498, + 1241, + 498 + ], + "score": 0.59, + "latex": "1 8 = 2 \\times 3 \\times 3 )" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1283, + 1321, + 1283, + 1321, + 1303, + 1303, + 1303 + ], + "score": 0.58, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 842.0, + 414.0, + 842.0, + 414.0, + 856.0, + 389.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 840.0, + 678.0, + 840.0, + 678.0, + 858.0, + 651.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 840.0, + 944.0, + 840.0, + 944.0, + 858.0, + 914.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 840.0, + 1209.0, + 840.0, + 1209.0, + 858.0, + 1179.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1047.0, + 468.0, + 1047.0, + 468.0, + 1063.0, + 405.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1044.0, + 731.0, + 1044.0, + 731.0, + 1065.0, + 665.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1047.0, + 993.0, + 1047.0, + 993.0, + 1063.0, + 931.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1047.0, + 1258.0, + 1047.0, + 1258.0, + 1063.0, + 1195.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1275.0, + 519.0, + 1275.0, + 519.0, + 1311.0, + 389.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1275.0, + 816.0, + 1275.0, + 816.0, + 1311.0, + 622.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1278.0, + 1077.0, + 1278.0, + 1077.0, + 1310.0, + 888.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1277.0, + 1302.0, + 1277.0, + 1302.0, + 1311.0, + 1113.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1277.0, + 1376.0, + 1277.0, + 1376.0, + 1311.0, + 1322.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 228.0, + 435.0, + 228.0, + 435.0, + 258.0, + 329.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 230.0, + 660.0, + 230.0, + 660.0, + 258.0, + 589.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 290.0, + 506.0, + 290.0, + 506.0, + 310.0, + 488.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 307.0, + 710.0, + 307.0, + 710.0, + 316.0, + 702.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 311.0, + 532.0, + 311.0, + 532.0, + 321.0, + 519.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 347.0, + 348.0, + 347.0, + 348.0, + 353.0, + 342.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 343.0, + 612.0, + 343.0, + 612.0, + 357.0, + 597.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 362.0, + 567.0, + 362.0, + 567.0, + 380.0, + 553.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 438.0, + 517.0, + 438.0, + 517.0, + 457.0, + 495.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 443.0, + 687.0, + 443.0, + 687.0, + 452.0, + 678.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 440.0, + 775.0, + 440.0, + 775.0, + 454.0, + 756.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 435.0, + 980.0, + 435.0, + 980.0, + 445.0, + 966.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 437.0, + 1028.0, + 437.0, + 1028.0, + 446.0, + 1018.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 435.0, + 1287.0, + 435.0, + 1287.0, + 444.0, + 1278.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 468.0, + 766.0, + 468.0, + 766.0, + 502.0, + 403.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 468.0, + 1240.0, + 468.0, + 1240.0, + 502.0, + 896.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 468.0, + 1335.0, + 468.0, + 1335.0, + 502.0, + 1329.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1328.0, + 1405.0, + 1328.0, + 1405.0, + 1369.0, + 293.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1360.0, + 1404.0, + 1360.0, + 1404.0, + 1397.0, + 293.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1394.0, + 1404.0, + 1394.0, + 1404.0, + 1424.0, + 296.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1461.0, + 291.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1404.0, + 1453.0, + 1404.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1484.0, + 1405.0, + 1484.0, + 1405.0, + 1518.0, + 295.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1513.0, + 1256.0, + 1513.0, + 1256.0, + 1552.0, + 295.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 525.0, + 1403.0, + 525.0, + 1403.0, + 560.0, + 295.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 555.0, + 1405.0, + 555.0, + 1405.0, + 591.0, + 293.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 587.0, + 1405.0, + 587.0, + 1405.0, + 621.0, + 294.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 618.0, + 1406.0, + 618.0, + 1406.0, + 652.0, + 293.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 647.0, + 1405.0, + 647.0, + 1405.0, + 682.0, + 293.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 678.0, + 1403.0, + 678.0, + 1403.0, + 711.0, + 295.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 711.0, + 1343.0, + 711.0, + 1343.0, + 742.0, + 297.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1762.0, + 549.0, + 1762.0, + 549.0, + 1813.0, + 290.0, + 1813.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, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1883.0, + 294.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1883.0, + 1404.0, + 1883.0, + 1404.0, + 1914.0, + 296.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1937.0, + 1405.0, + 1937.0, + 1405.0, + 1982.0, + 292.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 778.0, + 2004.0, + 778.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1610.0, + 1406.0, + 1610.0, + 1406.0, + 1644.0, + 294.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1641.0, + 1404.0, + 1641.0, + 1404.0, + 1675.0, + 294.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1672.0, + 1362.0, + 1672.0, + 1362.0, + 1707.0, + 294.0, + 1707.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 74, + 817, + 74, + 817, + 106, + 299, + 106 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 302, + 1505, + 1402, + 1505, + 1402, + 1571, + 302, + 1571 + ], + "score": 0.868 + }, + { + "category_id": 1, + "poly": [ + 300, + 1588, + 1399, + 1588, + 1399, + 1653, + 300, + 1653 + ], + "score": 0.861 + }, + { + "category_id": 1, + "poly": [ + 297, + 1371, + 1399, + 1371, + 1399, + 1436, + 297, + 1436 + ], + "score": 0.858 + }, + { + "category_id": 1, + "poly": [ + 298, + 1670, + 1403, + 1670, + 1403, + 1736, + 298, + 1736 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 299, + 227, + 490, + 227, + 490, + 262, + 299, + 262 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 300, + 1453, + 1371, + 1453, + 1371, + 1488, + 300, + 1488 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 297, + 1288, + 1404, + 1288, + 1404, + 1355, + 297, + 1355 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 296, + 546, + 1402, + 546, + 1402, + 611, + 296, + 611 + ], + "score": 0.814 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 294, + 629, + 1158, + 629, + 1158, + 665, + 294, + 665 + ], + "score": 0.807 + }, + { + "category_id": 1, + "poly": [ + 296, + 793, + 1401, + 793, + 1401, + 859, + 296, + 859 + ], + "score": 0.807 + }, + { + "category_id": 1, + "poly": [ + 288, + 278, + 1309, + 278, + 1309, + 313, + 288, + 313 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 292, + 1753, + 1316, + 1753, + 1316, + 1789, + 292, + 1789 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 299, + 1206, + 1404, + 1206, + 1404, + 1271, + 299, + 1271 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 296, + 1041, + 1402, + 1041, + 1402, + 1106, + 296, + 1106 + ], + "score": 0.793 + }, + { + "category_id": 1, + "poly": [ + 288, + 329, + 1309, + 329, + 1309, + 364, + 288, + 364 + ], + "score": 0.781 + }, + { + "category_id": 1, + "poly": [ + 296, + 463, + 1402, + 463, + 1402, + 529, + 296, + 529 + ], + "score": 0.777 + }, + { + "category_id": 1, + "poly": [ + 294, + 989, + 1222, + 989, + 1222, + 1025, + 294, + 1025 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 299, + 1123, + 1404, + 1123, + 1404, + 1189, + 299, + 1189 + ], + "score": 0.768 + }, + { + "category_id": 1, + "poly": [ + 297, + 381, + 1403, + 381, + 1403, + 446, + 297, + 446 + ], + "score": 0.761 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1398, + 1971, + 1398, + 2035, + 298, + 2035 + ], + "score": 0.743 + }, + { + "category_id": 1, + "poly": [ + 296, + 1806, + 1398, + 1806, + 1398, + 1870, + 296, + 1870 + ], + "score": 0.739 + }, + { + "category_id": 1, + "poly": [ + 298, + 1887, + 1400, + 1887, + 1400, + 1953, + 298, + 1953 + ], + "score": 0.721 + }, + { + "category_id": 1, + "poly": [ + 297, + 681, + 1406, + 681, + 1406, + 776, + 297, + 776 + ], + "score": 0.717 + }, + { + "category_id": 1, + "poly": [ + 298, + 876, + 1405, + 876, + 1405, + 971, + 298, + 971 + ], + "score": 0.613 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 490.0, + 230.0, + 490.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1504.0, + 1404.0, + 1504.0, + 1404.0, + 1541.0, + 298.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1535.0, + 1385.0, + 1535.0, + 1385.0, + 1573.0, + 322.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1586.0, + 1403.0, + 1586.0, + 1403.0, + 1628.0, + 294.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1619.0, + 1037.0, + 1619.0, + 1037.0, + 1654.0, + 322.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1373.0, + 1403.0, + 1373.0, + 1403.0, + 1409.0, + 296.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1404.0, + 1076.0, + 1404.0, + 1076.0, + 1437.0, + 323.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1668.0, + 1405.0, + 1668.0, + 1405.0, + 1707.0, + 293.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1700.0, + 397.0, + 1700.0, + 397.0, + 1735.0, + 320.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1451.0, + 1370.0, + 1451.0, + 1370.0, + 1490.0, + 295.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1289.0, + 1404.0, + 1289.0, + 1404.0, + 1325.0, + 296.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1320.0, + 844.0, + 1320.0, + 844.0, + 1355.0, + 321.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 546.0, + 1406.0, + 546.0, + 1406.0, + 582.0, + 295.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 579.0, + 615.0, + 579.0, + 615.0, + 608.0, + 322.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 628.0, + 1156.0, + 628.0, + 1156.0, + 668.0, + 294.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 787.0, + 1405.0, + 787.0, + 1405.0, + 836.0, + 291.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 825.0, + 588.0, + 825.0, + 588.0, + 858.0, + 322.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 278.0, + 1311.0, + 278.0, + 1311.0, + 313.0, + 293.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1752.0, + 1316.0, + 1752.0, + 1316.0, + 1791.0, + 294.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1205.0, + 1405.0, + 1205.0, + 1405.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1237.0, + 503.0, + 1237.0, + 503.0, + 1271.0, + 322.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1041.0, + 1404.0, + 1041.0, + 1404.0, + 1077.0, + 294.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1072.0, + 775.0, + 1072.0, + 775.0, + 1107.0, + 323.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 329.0, + 1309.0, + 329.0, + 1309.0, + 368.0, + 293.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 465.0, + 1403.0, + 465.0, + 1403.0, + 501.0, + 295.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 496.0, + 831.0, + 496.0, + 831.0, + 528.0, + 323.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 988.0, + 1226.0, + 988.0, + 1226.0, + 1027.0, + 293.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1124.0, + 1404.0, + 1124.0, + 1404.0, + 1160.0, + 294.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1155.0, + 504.0, + 1155.0, + 504.0, + 1188.0, + 323.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 381.0, + 1405.0, + 381.0, + 1405.0, + 417.0, + 293.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 414.0, + 783.0, + 414.0, + 783.0, + 444.0, + 324.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 1402.0, + 1970.0, + 1402.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2002.0, + 995.0, + 2002.0, + 995.0, + 2035.0, + 323.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 1403.0, + 1803.0, + 1403.0, + 1844.0, + 295.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1838.0, + 1029.0, + 1838.0, + 1029.0, + 1870.0, + 324.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1888.0, + 1404.0, + 1888.0, + 1404.0, + 1924.0, + 294.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1920.0, + 602.0, + 1920.0, + 602.0, + 1954.0, + 322.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 682.0, + 1403.0, + 682.0, + 1403.0, + 716.0, + 296.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 710.0, + 1406.0, + 710.0, + 1406.0, + 750.0, + 323.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 743.0, + 892.0, + 743.0, + 892.0, + 777.0, + 324.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 874.0, + 1403.0, + 874.0, + 1403.0, + 915.0, + 292.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 910.0, + 1403.0, + 910.0, + 1403.0, + 941.0, + 325.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 941.0, + 817.0, + 941.0, + 817.0, + 972.0, + 323.0, + 972.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 296, + 1307, + 1398, + 1307, + 1398, + 1373, + 296, + 1373 + ], + "score": 0.679 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1402, + 228, + 1402, + 294, + 294, + 294 + ], + "score": 0.628 + }, + { + "category_id": 1, + "poly": [ + 297, + 1256, + 1258, + 1256, + 1258, + 1291, + 297, + 1291 + ], + "score": 0.624 + }, + { + "category_id": 1, + "poly": [ + 299, + 1172, + 1399, + 1172, + 1399, + 1237, + 299, + 1237 + ], + "score": 0.601 + }, + { + "category_id": 1, + "poly": [ + 299, + 560, + 1401, + 560, + 1401, + 655, + 299, + 655 + ], + "score": 0.595 + }, + { + "category_id": 1, + "poly": [ + 294, + 477, + 1403, + 477, + 1403, + 542, + 294, + 542 + ], + "score": 0.589 + }, + { + "category_id": 1, + "poly": [ + 299, + 1006, + 1398, + 1006, + 1398, + 1071, + 299, + 1071 + ], + "score": 0.581 + }, + { + "category_id": 1, + "poly": [ + 298, + 1089, + 1395, + 1089, + 1395, + 1155, + 298, + 1155 + ], + "score": 0.58 + }, + { + "category_id": 1, + "poly": [ + 298, + 923, + 1402, + 923, + 1402, + 988, + 298, + 988 + ], + "score": 0.569 + }, + { + "category_id": 1, + "poly": [ + 301, + 840, + 1398, + 840, + 1398, + 905, + 301, + 905 + ], + "score": 0.565 + }, + { + "category_id": 1, + "poly": [ + 293, + 311, + 1400, + 311, + 1400, + 377, + 293, + 377 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 296, + 394, + 1401, + 394, + 1401, + 460, + 296, + 460 + ], + "score": 0.553 + }, + { + "category_id": 1, + "poly": [ + 295, + 757, + 1400, + 757, + 1400, + 822, + 295, + 822 + ], + "score": 0.511 + }, + { + "category_id": 1, + "poly": [ + 295, + 674, + 1401, + 674, + 1401, + 739, + 295, + 739 + ], + "score": 0.496 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1308.0, + 1403.0, + 1308.0, + 1403.0, + 1344.0, + 295.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1340.0, + 665.0, + 1340.0, + 665.0, + 1372.0, + 324.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 262.0, + 746.0, + 262.0, + 746.0, + 295.0, + 321.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1255.0, + 1255.0, + 1255.0, + 1255.0, + 1295.0, + 295.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1174.0, + 1401.0, + 1174.0, + 1401.0, + 1210.0, + 295.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1205.0, + 708.0, + 1205.0, + 708.0, + 1238.0, + 319.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 558.0, + 1406.0, + 558.0, + 1406.0, + 599.0, + 293.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 592.0, + 1405.0, + 592.0, + 1405.0, + 628.0, + 320.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 621.0, + 397.0, + 621.0, + 397.0, + 655.0, + 322.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 477.0, + 1405.0, + 477.0, + 1405.0, + 515.0, + 294.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 510.0, + 683.0, + 510.0, + 683.0, + 542.0, + 323.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1008.0, + 1402.0, + 1008.0, + 1402.0, + 1044.0, + 295.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1039.0, + 926.0, + 1039.0, + 926.0, + 1071.0, + 324.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1090.0, + 1401.0, + 1090.0, + 1401.0, + 1126.0, + 298.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1121.0, + 1209.0, + 1121.0, + 1209.0, + 1156.0, + 323.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 926.0, + 1403.0, + 926.0, + 1403.0, + 958.0, + 297.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 956.0, + 1111.0, + 956.0, + 1111.0, + 989.0, + 322.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 839.0, + 1403.0, + 839.0, + 1403.0, + 875.0, + 296.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 871.0, + 479.0, + 871.0, + 479.0, + 905.0, + 325.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 310.0, + 1403.0, + 310.0, + 1403.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 344.0, + 1089.0, + 344.0, + 1089.0, + 376.0, + 325.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 393.0, + 1405.0, + 393.0, + 1405.0, + 434.0, + 295.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 427.0, + 1205.0, + 427.0, + 1205.0, + 461.0, + 321.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 756.0, + 1404.0, + 756.0, + 1404.0, + 797.0, + 293.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 790.0, + 1022.0, + 790.0, + 1022.0, + 823.0, + 322.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 670.0, + 1406.0, + 670.0, + 1406.0, + 714.0, + 294.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 704.0, + 1235.0, + 704.0, + 1235.0, + 739.0, + 320.0, + 739.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1592, + 1405, + 1592, + 1405, + 1748, + 297, + 1748 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 404, + 227, + 1291, + 227, + 1291, + 656, + 404, + 656 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 969, + 1402, + 969, + 1402, + 1065, + 299, + 1065 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 295, + 678, + 1407, + 678, + 1407, + 863, + 295, + 863 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 554, + 1311, + 1062, + 1311, + 1062, + 1382, + 554, + 1382 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 298, + 1156, + 1399, + 1156, + 1399, + 1222, + 298, + 1222 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 299, + 1436, + 1401, + 1436, + 1401, + 1502, + 299, + 1502 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 1235, + 1399, + 1235, + 1399, + 1298, + 298, + 1298 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 299, + 1762, + 1399, + 1762, + 1399, + 1826, + 299, + 1826 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 346, + 1931, + 1351, + 1931, + 1351, + 2041, + 346, + 2041 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 537, + 1838, + 1097, + 1838, + 1097, + 1921, + 537, + 1921 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 299, + 901, + 1064, + 901, + 1064, + 939, + 299, + 939 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 300, + 1536, + 579, + 1536, + 579, + 1569, + 300, + 1569 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 300, + 1100, + 560, + 1100, + 560, + 1132, + 300, + 1132 + ], + "score": 0.921 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1321, + 1400, + 1321, + 1400, + 1352, + 1352, + 1352 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 816, + 76, + 816, + 104, + 298, + 104 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1860, + 1400, + 1860, + 1400, + 1891, + 1352, + 1891 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 1, + "poly": [ + 343, + 1388, + 1344, + 1388, + 1344, + 1427, + 343, + 1427 + ], + "score": 0.662 + }, + { + "category_id": 8, + "poly": [ + 343, + 1388, + 1344, + 1388, + 1344, + 1427, + 343, + 1427 + ], + "score": 0.292 + }, + { + "category_id": 13, + "poly": [ + 1069, + 1236, + 1138, + 1236, + 1138, + 1270, + 1069, + 1270 + ], + "score": 0.92, + "latex": "\\{ \\Delta k \\}" + }, + { + "category_id": 13, + "poly": [ + 830, + 771, + 899, + 771, + 899, + 804, + 830, + 804 + ], + "score": 0.92, + "latex": "\\{ \\Delta k \\}" + }, + { + "category_id": 13, + "poly": [ + 1203, + 709, + 1273, + 709, + 1273, + 743, + 1203, + 743 + ], + "score": 0.92, + "latex": "\\{ \\Delta k \\}" + }, + { + "category_id": 13, + "poly": [ + 350, + 1267, + 396, + 1267, + 396, + 1300, + 350, + 1300 + ], + "score": 0.91, + "latex": "\\{ k \\}" + }, + { + "category_id": 14, + "poly": [ + 536, + 1837, + 1096, + 1837, + 1096, + 1922, + 536, + 1922 + ], + "score": 0.91, + "latex": "\\frac { \\partial O _ { j } } { \\partial \\Delta k _ { x } } = \\sum _ { k } I _ { j + k } \\bigg ( \\sum _ { k ^ { \\prime } } W _ { k ^ { \\prime } } \\frac { \\partial \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) } { \\partial \\Delta k _ { x } } \\bigg ) ," + }, + { + "category_id": 13, + "poly": [ + 443, + 1794, + 496, + 1794, + 496, + 1824, + 443, + 1824 + ], + "score": 0.91, + "latex": "\\Delta k _ { x }" + }, + { + "category_id": 13, + "poly": [ + 818, + 1795, + 871, + 1795, + 871, + 1828, + 818, + 1828 + ], + "score": 0.9, + "latex": "\\Delta k _ { y }" + }, + { + "category_id": 13, + "poly": [ + 1032, + 1764, + 1070, + 1764, + 1070, + 1797, + 1032, + 1797 + ], + "score": 0.89, + "latex": "O _ { j }" + }, + { + "category_id": 13, + "poly": [ + 907, + 679, + 963, + 679, + 963, + 709, + 907, + 709 + ], + "score": 0.87, + "latex": "\\mathbf { 3 \\times 3 }" + }, + { + "category_id": 13, + "poly": [ + 747, + 1267, + 792, + 1267, + 792, + 1295, + 747, + 1295 + ], + "score": 0.87, + "latex": "W ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 887, + 741, + 941, + 741, + 941, + 770, + 887, + 770 + ], + "score": 0.87, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 885, + 1161, + 906, + 1161, + 906, + 1188, + 885, + 1188 + ], + "score": 0.86, + "latex": "\\mathcal { G }" + }, + { + "category_id": 14, + "poly": [ + 556, + 1310, + 1060, + 1310, + 1060, + 1385, + 556, + 1385 + ], + "score": 0.86, + "latex": "W ^ { \\prime } \\equiv W _ { k + \\Delta k } = \\sum _ { k ^ { \\prime } \\in \\mathcal { K } } \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) W _ { k ^ { \\prime } } ," + }, + { + "category_id": 13, + "poly": [ + 1269, + 771, + 1315, + 771, + 1315, + 799, + 1269, + 799 + ], + "score": 0.85, + "latex": "W ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 679, + 1403, + 679, + 1403, + 709, + 1347, + 709 + ], + "score": 0.85, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 828, + 742, + 850, + 742, + 850, + 770, + 828, + 770 + ], + "score": 0.84, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1268, + 1063, + 1268, + 1063, + 1294, + 1040, + 1294 + ], + "score": 0.84, + "latex": "\\boldsymbol { B }" + }, + { + "category_id": 14, + "poly": [ + 419, + 1933, + 1352, + 1933, + 1352, + 2041, + 419, + 2041 + ], + "score": 0.83, + "latex": "\\frac { \\partial \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) } { \\partial \\Delta k _ { x } } = \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) \\cdot \\left\\{ \\begin{array} { l l } { 0 } & { | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | \\ge 1 } \\\\ { 1 } & { k _ { x } + \\Delta k _ { x } < k _ { x } ^ { \\prime } } \\\\ { - 1 } & { k _ { x } + \\Delta k _ { x } \\ge k _ { x } ^ { \\prime } } \\end{array} \\right. ." + }, + { + "category_id": 14, + "poly": [ + 428, + 1308, + 1344, + 1308, + 1344, + 1432, + 428, + 1432 + ], + "score": 0.82, + "latex": "\\begin{array} { c } { W ^ { \\prime } \\equiv W _ { k + \\Delta k } = \\displaystyle \\sum _ { k ^ { \\prime } \\in K } | \\beta ( k + \\Delta k , k ^ { \\prime } ) W _ { k ^ { \\prime } } , } \\\\ { \\displaystyle \\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) = \\operatorname* { m a x } ( 0 , 1 - | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | ) \\cdot \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 666, + 1799, + 685, + 1799, + 685, + 1826, + 666, + 1826 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1157, + 1160, + 1179, + 1160, + 1179, + 1186, + 1157, + 1186 + ], + "score": 0.79, + "latex": "\\boldsymbol { B }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1770, + 1156, + 1770, + 1156, + 1791, + 1136, + 1791 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 601, + 1237, + 639, + 1237, + 639, + 1265, + 601, + 1265 + ], + "score": 0.65, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 481, + 802, + 503, + 802, + 503, + 830, + 481, + 830 + ], + "score": 0.64, + "latex": "\\boldsymbol { B }" + }, + { + "category_id": 14, + "poly": [ + 429, + 1375, + 1344, + 1375, + 1344, + 1429, + 429, + 1429 + ], + "score": 0.4, + "latex": "\\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) = \\operatorname* { m a x } ( 0 , 1 - | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | ) \\cdot \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { y } - k _ { y } ^ { \\prime } | ) ." + }, + { + "category_id": 13, + "poly": [ + 560, + 771, + 597, + 771, + 597, + 799, + 560, + 799 + ], + "score": 0.38, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 431, + 1391, + 1239, + 1391, + 1239, + 1426, + 431, + 1426 + ], + "score": 0.3, + "latex": "\\mathcal { B } ( k + \\Delta k , k ^ { \\prime } ) = \\operatorname* { m a x } ( 0 , 1 - | k _ { x } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | ) \\cdot \\operatorname* { m a x } ( 0 , 1 - | k _ { y } + \\Delta k _ { x } - k _ { x } ^ { \\prime } | ) ." + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 261.0, + 1284.0, + 261.0, + 1284.0, + 296.0, + 1153.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 300.0, + 1288.0, + 300.0, + 1288.0, + 347.0, + 1151.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 376.0, + 931.0, + 376.0, + 931.0, + 430.0, + 894.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 469.0, + 731.0, + 469.0, + 731.0, + 511.0, + 663.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 472.0, + 1120.0, + 472.0, + 1120.0, + 501.0, + 1075.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 496.0, + 1253.0, + 496.0, + 1253.0, + 544.0, + 1228.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 515.0, + 1146.0, + 515.0, + 1146.0, + 565.0, + 1101.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 678.0, + 906.0, + 678.0, + 906.0, + 712.0, + 293.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 678.0, + 1346.0, + 678.0, + 1346.0, + 712.0, + 964.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 709.0, + 1202.0, + 709.0, + 1202.0, + 745.0, + 293.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 709.0, + 1406.0, + 709.0, + 1406.0, + 745.0, + 1274.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 740.0, + 827.0, + 740.0, + 827.0, + 776.0, + 293.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 740.0, + 886.0, + 740.0, + 886.0, + 776.0, + 851.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 740.0, + 1406.0, + 740.0, + 1406.0, + 776.0, + 942.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 770.0, + 559.0, + 770.0, + 559.0, + 806.0, + 294.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 770.0, + 829.0, + 770.0, + 829.0, + 806.0, + 598.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 770.0, + 1268.0, + 770.0, + 1268.0, + 806.0, + 900.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 770.0, + 1406.0, + 770.0, + 1406.0, + 806.0, + 1316.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 798.0, + 480.0, + 798.0, + 480.0, + 838.0, + 293.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 798.0, + 1405.0, + 798.0, + 1405.0, + 838.0, + 504.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 832.0, + 566.0, + 832.0, + 566.0, + 867.0, + 294.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 898.0, + 1066.0, + 898.0, + 1066.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1532.0, + 584.0, + 1532.0, + 584.0, + 1573.0, + 294.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1100.0, + 562.0, + 1100.0, + 562.0, + 1136.0, + 296.0, + 1136.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": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1591.0, + 1407.0, + 1591.0, + 1407.0, + 1630.0, + 294.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1625.0, + 1403.0, + 1625.0, + 1403.0, + 1658.0, + 295.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 1406.0, + 1655.0, + 1406.0, + 1691.0, + 294.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1686.0, + 1403.0, + 1686.0, + 1403.0, + 1719.0, + 296.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1715.0, + 1055.0, + 1715.0, + 1055.0, + 1749.0, + 296.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 972.0, + 1404.0, + 972.0, + 1404.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1001.0, + 1404.0, + 1001.0, + 1404.0, + 1038.0, + 294.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1033.0, + 1114.0, + 1033.0, + 1114.0, + 1067.0, + 294.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1155.0, + 884.0, + 1155.0, + 884.0, + 1195.0, + 293.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1155.0, + 1156.0, + 1155.0, + 1156.0, + 1195.0, + 907.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1155.0, + 1405.0, + 1155.0, + 1405.0, + 1195.0, + 1180.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1189.0, + 656.0, + 1189.0, + 656.0, + 1224.0, + 294.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1437.0, + 1405.0, + 1437.0, + 1405.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1469.0, + 839.0, + 1469.0, + 839.0, + 1501.0, + 295.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1233.0, + 600.0, + 1233.0, + 600.0, + 1273.0, + 294.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1233.0, + 1068.0, + 1233.0, + 1068.0, + 1273.0, + 640.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1233.0, + 1404.0, + 1233.0, + 1404.0, + 1273.0, + 1139.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1265.0, + 349.0, + 1265.0, + 349.0, + 1302.0, + 293.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1265.0, + 746.0, + 1265.0, + 746.0, + 1302.0, + 397.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1265.0, + 1039.0, + 1265.0, + 1039.0, + 1302.0, + 793.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1265.0, + 1099.0, + 1265.0, + 1099.0, + 1302.0, + 1064.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1761.0, + 1031.0, + 1761.0, + 1031.0, + 1799.0, + 294.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1761.0, + 1135.0, + 1761.0, + 1135.0, + 1799.0, + 1071.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1761.0, + 1403.0, + 1761.0, + 1403.0, + 1799.0, + 1157.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1791.0, + 442.0, + 1791.0, + 442.0, + 1829.0, + 294.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1791.0, + 665.0, + 1791.0, + 665.0, + 1829.0, + 497.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1791.0, + 817.0, + 1791.0, + 817.0, + 1829.0, + 686.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1791.0, + 1109.0, + 1791.0, + 1109.0, + 1829.0, + 872.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1381.0, + 427.0, + 1381.0, + 427.0, + 1435.0, + 352.0, + 1435.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 438, + 224, + 1261, + 224, + 1261, + 848, + 438, + 848 + ], + "score": 0.983, + "html": "
OutputResNet-50ResNet-50-DW
112 × 1127 × 7,64,stride 2
56×563 × 3 max pool, stride 2
56×561×1,643 ×3,641 × 1,256×31 ×1,1283 × 3,128,G = 1281 × 1,256×3
28×281×1,1283 ×3,1281 × 1,512×41 ×1,2563 × 3,256,G = 2561 ×1,512×4
14 ×141 ×1,2563 ×3,2561 × 1,1024×61 ×1,5123 × 3,512,G = 5121 × 1,1024×6
7×71 ×1,5123 ×3,5121 × 1,2048×31 ×1,10243 × 3,1024,G =10241 × 1,2048×3
1×17 × 7 global average pool,1000-d fc, softmax
#P (M)25.623.7
GFLOPs3.863.82
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1738, + 1403, + 1738, + 1403, + 1955, + 297, + 1955 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1531, + 1405, + 1531, + 1405, + 1625, + 299, + 1625 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1186, + 1404, + 1186, + 1404, + 1341, + 298, + 1341 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1354, + 1401, + 1354, + 1401, + 1418, + 297, + 1418 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 298, + 1670, + 876, + 1670, + 876, + 1705, + 298, + 1705 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 816, + 75, + 816, + 105, + 298, + 105 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 302, + 1117, + 756, + 1117, + 756, + 1153, + 302, + 1153 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 302, + 1462, + 1237, + 1462, + 1237, + 1498, + 302, + 1498 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 6, + "poly": [ + 296, + 880, + 1405, + 880, + 1405, + 1068, + 296, + 1068 + ], + "score": 0.319 + }, + { + "category_id": 13, + "poly": [ + 309, + 974, + 433, + 974, + 433, + 1004, + 309, + 1004 + ], + "score": 0.91, + "latex": "G = 1 2 8 ^ { \\prime \\prime }" + }, + { + "category_id": 13, + "poly": [ + 329, + 1799, + 388, + 1799, + 388, + 1829, + 329, + 1829 + ], + "score": 0.9, + "latex": "1 0 ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 353, + 1923, + 475, + 1923, + 475, + 1952, + 353, + 1952 + ], + "score": 0.89, + "latex": "2 2 4 \\times 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 471, + 578, + 563, + 578, + 563, + 600, + 471, + 600 + ], + "score": 0.89, + "latex": "1 4 \\times 1 4" + }, + { + "category_id": 13, + "poly": [ + 470, + 476, + 563, + 476, + 563, + 498, + 470, + 498 + ], + "score": 0.87, + "latex": "2 8 \\times 2 8" + }, + { + "category_id": 13, + "poly": [ + 484, + 680, + 549, + 680, + 549, + 701, + 484, + 701 + ], + "score": 0.87, + "latex": "7 \\times 7" + }, + { + "category_id": 13, + "poly": [ + 921, + 544, + 1040, + 544, + 1040, + 569, + 921, + 569 + ], + "score": 0.85, + "latex": "1 \\times 1 , 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 920, + 443, + 1040, + 443, + 1040, + 468, + 920, + 468 + ], + "score": 0.85, + "latex": "1 \\times 1 , 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 920, + 510, + 1041, + 510, + 1041, + 535, + 920, + 535 + ], + "score": 0.85, + "latex": "1 \\times 1 , 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 643, + 510, + 764, + 510, + 764, + 535, + 643, + 535 + ], + "score": 0.85, + "latex": "1 \\times 1 , 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 801, + 476, + 843, + 476, + 843, + 498, + 801, + 498 + ], + "score": 0.84, + "latex": "\\times 4" + }, + { + "category_id": 13, + "poly": [ + 1189, + 476, + 1231, + 476, + 1231, + 498, + 1189, + 498 + ], + "score": 0.83, + "latex": "\\times 4" + }, + { + "category_id": 13, + "poly": [ + 470, + 375, + 563, + 375, + 563, + 397, + 470, + 397 + ], + "score": 0.83, + "latex": "5 6 \\times 5 6" + }, + { + "category_id": 13, + "poly": [ + 638, + 544, + 758, + 544, + 758, + 569, + 638, + 569 + ], + "score": 0.81, + "latex": "1 \\times 1 , 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 918, + 475, + 1155, + 475, + 1155, + 501, + 918, + 501 + ], + "score": 0.81, + "latex": "3 \\times 3 , 2 5 6 , G = 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 807, + 578, + 850, + 578, + 850, + 600, + 807, + 600 + ], + "score": 0.81, + "latex": "\\times 6" + }, + { + "category_id": 13, + "poly": [ + 1189, + 578, + 1232, + 578, + 1232, + 600, + 1189, + 600 + ], + "score": 0.81, + "latex": "\\times 6" + }, + { + "category_id": 13, + "poly": [ + 807, + 680, + 849, + 680, + 849, + 702, + 807, + 702 + ], + "score": 0.79, + "latex": "\\times 3" + }, + { + "category_id": 13, + "poly": [ + 643, + 443, + 763, + 443, + 763, + 467, + 643, + 467 + ], + "score": 0.76, + "latex": "1 \\times 1 , 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 917, + 577, + 1154, + 577, + 1154, + 603, + 917, + 603 + ], + "score": 0.76, + "latex": "3 \\times 3 , 5 1 2 , G = 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 801, + 375, + 843, + 375, + 843, + 397, + 801, + 397 + ], + "score": 0.76, + "latex": "\\times 3" + }, + { + "category_id": 13, + "poly": [ + 637, + 610, + 771, + 610, + 771, + 636, + 637, + 636 + ], + "score": 0.75, + "latex": "1 \\times 1 , 1 0 2 4" + }, + { + "category_id": 13, + "poly": [ + 1189, + 375, + 1231, + 375, + 1231, + 397, + 1189, + 397 + ], + "score": 0.75, + "latex": "\\times 3" + }, + { + "category_id": 13, + "poly": [ + 643, + 476, + 764, + 476, + 764, + 501, + 643, + 501 + ], + "score": 0.75, + "latex": "3 \\times 3 , 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 457, + 271, + 577, + 271, + 577, + 293, + 457, + 293 + ], + "score": 0.68, + "latex": "1 1 2 \\times 1 1 2" + }, + { + "category_id": 13, + "poly": [ + 919, + 407, + 1041, + 407, + 1041, + 433, + 919, + 433 + ], + "score": 0.67, + "latex": "1 \\times 1 , 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 643, + 407, + 764, + 407, + 764, + 433, + 643, + 433 + ], + "score": 0.66, + "latex": "1 \\times 1 , 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 635, + 577, + 758, + 577, + 758, + 603, + 635, + 603 + ], + "score": 0.64, + "latex": "3 \\times 3 , 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 989, + 678, + 1163, + 678, + 1163, + 704, + 989, + 704 + ], + "score": 0.63, + "latex": "1 0 2 4 , G = 1 0 2 4" + }, + { + "category_id": 13, + "poly": [ + 470, + 307, + 563, + 307, + 563, + 329, + 470, + 329 + ], + "score": 0.63, + "latex": "5 6 \\times 5 6" + }, + { + "category_id": 13, + "poly": [ + 920, + 610, + 1056, + 610, + 1056, + 636, + 920, + 636 + ], + "score": 0.63, + "latex": "1 \\times 1 , 1 0 2 4" + }, + { + "category_id": 13, + "poly": [ + 485, + 746, + 549, + 746, + 549, + 769, + 485, + 769 + ], + "score": 0.62, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 638, + 646, + 757, + 646, + 757, + 670, + 638, + 670 + ], + "score": 0.62, + "latex": "1 \\times 1 , 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 632, + 338, + 764, + 338, + 764, + 435, + 632, + 435 + ], + "score": 0.61, + "latex": "\\begin{array} { l } { 1 \\times 1 , 6 4 } \\\\ { 3 \\times 3 , 6 4 } \\\\ { 1 \\times 1 , 2 5 6 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1199, + 680, + 1241, + 680, + 1241, + 702, + 1199, + 702 + ], + "score": 0.6, + "latex": "\\times 3" + }, + { + "category_id": 13, + "poly": [ + 662, + 741, + 728, + 741, + 728, + 769, + 662, + 769 + ], + "score": 0.6, + "latex": "7 \\times 7" + }, + { + "category_id": 13, + "poly": [ + 644, + 341, + 750, + 341, + 750, + 366, + 644, + 366 + ], + "score": 0.59, + "latex": "1 \\times 1 , 6 4" + }, + { + "category_id": 13, + "poly": [ + 917, + 373, + 1155, + 373, + 1155, + 400, + 917, + 400 + ], + "score": 0.54, + "latex": "3 \\times 3 , 1 2 8 , G = 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 627, + 643, + 771, + 643, + 771, + 739, + 627, + 739 + ], + "score": 0.54, + "latex": "\\begin{array} { l } { 1 \\times 1 , 5 1 2 } \\\\ { 3 \\times 3 , 5 1 2 } \\\\ { 1 \\times 1 , 2 0 4 8 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 920, + 341, + 1040, + 341, + 1040, + 366, + 920, + 366 + ], + "score": 0.51, + "latex": "1 \\times 1 , 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 628, + 545, + 771, + 545, + 771, + 638, + 628, + 638 + ], + "score": 0.47, + "latex": "\\begin{array} { l } { 1 \\times 1 , 2 5 6 } \\\\ { 3 \\times 3 , 2 5 6 } \\\\ { 1 \\times 1 , 1 0 2 4 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 643, + 374, + 751, + 374, + 751, + 400, + 643, + 400 + ], + "score": 0.45, + "latex": "3 \\times 3 , 6 4" + }, + { + "category_id": 13, + "poly": [ + 911, + 646, + 973, + 646, + 973, + 667, + 911, + 667 + ], + "score": 0.44, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 821, + 271, + 928, + 271, + 928, + 295, + 821, + 295 + ], + "score": 0.41, + "latex": "7 \\times 7 , 6 4" + }, + { + "category_id": 13, + "poly": [ + 633, + 678, + 758, + 678, + 758, + 703, + 633, + 703 + ], + "score": 0.4, + "latex": "3 \\times 3 , 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 787, + 307, + 851, + 307, + 851, + 328, + 787, + 328 + ], + "score": 0.35, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 909, + 679, + 973, + 679, + 973, + 701, + 909, + 701 + ], + "score": 0.32, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 635, + 443, + 768, + 443, + 768, + 537, + 635, + 537 + ], + "score": 0.27, + "latex": "\\begin{array} { c } { 1 \\times 1 , 1 2 8 } \\\\ { 3 \\times 3 , 1 2 8 } \\\\ { 1 \\times 1 , 5 1 2 } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1665.0, + 880.0, + 1665.0, + 880.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1114.0, + 762.0, + 1114.0, + 762.0, + 1157.0, + 293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1461.0, + 1241.0, + 1461.0, + 1241.0, + 1501.0, + 295.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 881.0, + 1403.0, + 881.0, + 1403.0, + 917.0, + 295.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 911.0, + 1402.0, + 911.0, + 1402.0, + 947.0, + 294.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 944.0, + 1401.0, + 944.0, + 1401.0, + 977.0, + 295.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 971.0, + 308.0, + 971.0, + 308.0, + 1010.0, + 293.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 971.0, + 1403.0, + 971.0, + 1403.0, + 1010.0, + 434.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1004.0, + 1406.0, + 1004.0, + 1406.0, + 1040.0, + 294.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1037.0, + 868.0, + 1037.0, + 868.0, + 1068.0, + 295.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1736.0, + 1404.0, + 1736.0, + 1404.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1770.0, + 1405.0, + 1770.0, + 1405.0, + 1804.0, + 295.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1797.0, + 328.0, + 1797.0, + 328.0, + 1837.0, + 292.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1797.0, + 1405.0, + 1797.0, + 1405.0, + 1837.0, + 389.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1830.0, + 1406.0, + 1830.0, + 1406.0, + 1866.0, + 292.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1861.0, + 1405.0, + 1861.0, + 1405.0, + 1896.0, + 293.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1890.0, + 1403.0, + 1890.0, + 1403.0, + 1927.0, + 295.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1922.0, + 352.0, + 1922.0, + 352.0, + 1960.0, + 295.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1922.0, + 1236.0, + 1922.0, + 1236.0, + 1960.0, + 476.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1532.0, + 1403.0, + 1532.0, + 1403.0, + 1566.0, + 297.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1563.0, + 1403.0, + 1563.0, + 1403.0, + 1597.0, + 295.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 839.0, + 1594.0, + 839.0, + 1628.0, + 295.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1188.0, + 1404.0, + 1188.0, + 1404.0, + 1221.0, + 296.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1214.0, + 1405.0, + 1214.0, + 1405.0, + 1253.0, + 293.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1248.0, + 1406.0, + 1248.0, + 1406.0, + 1283.0, + 292.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1278.0, + 1406.0, + 1278.0, + 1406.0, + 1315.0, + 294.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1310.0, + 1068.0, + 1310.0, + 1068.0, + 1346.0, + 293.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1354.0, + 1405.0, + 1354.0, + 1405.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1385.0, + 427.0, + 1385.0, + 427.0, + 1419.0, + 292.0, + 1419.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 409, + 684, + 1290, + 684, + 1290, + 1438, + 409, + 1438 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 296, + 1465, + 1406, + 1465, + 1406, + 1589, + 296, + 1589 + ], + "score": 0.957 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 105, + 299, + 105 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.84 + }, + { + "category_id": 13, + "poly": [ + 302, + 1527, + 433, + 1527, + 433, + 1557, + 302, + 1557 + ], + "score": 0.87, + "latex": "( 1 3 0 0 \\times 8 0 0 )" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 813.0, + 851.0, + 813.0, + 851.0, + 845.0, + 798.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 827.0, + 984.0, + 827.0, + 984.0, + 860.0, + 934.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 848.0, + 703.0, + 848.0, + 703.0, + 989.0, + 677.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 872.0, + 447.0, + 872.0, + 447.0, + 988.0, + 410.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 898.0, + 498.0, + 898.0, + 498.0, + 928.0, + 449.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1172.0, + 860.0, + 1172.0, + 860.0, + 1207.0, + 799.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1181.0, + 710.0, + 1181.0, + 710.0, + 1406.0, + 671.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1187.0, + 989.0, + 1187.0, + 989.0, + 1220.0, + 935.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1198.0, + 448.0, + 1198.0, + 448.0, + 1387.0, + 409.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1258.0, + 498.0, + 1258.0, + 498.0, + 1288.0, + 449.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1404.0, + 624.0, + 1404.0, + 624.0, + 1442.0, + 504.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1404.0, + 907.0, + 1404.0, + 907.0, + 1441.0, + 726.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1405.0, + 1201.0, + 1405.0, + 1201.0, + 1445.0, + 1028.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1464.0, + 1406.0, + 1464.0, + 1406.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1493.0, + 1404.0, + 1493.0, + 1404.0, + 1533.0, + 291.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1527.0, + 301.0, + 1527.0, + 301.0, + 1563.0, + 295.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1527.0, + 1406.0, + 1527.0, + 1406.0, + 1563.0, + 434.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1560.0, + 836.0, + 1560.0, + 836.0, + 1592.0, + 295.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 71.0, + 817.0, + 71.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0.md b/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0.md new file mode 100644 index 0000000000000000000000000000000000000000..31d2cf6e9145344a671c0fef843d215c111e51f6 --- /dev/null +++ b/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0.md @@ -0,0 +1,1275 @@ +# HOW IMPORTANT IS THE TRAIN-VALIDATION SPLIT IN META-LEARNING? + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +Meta-learning aims to perform fast adaptation on a new task through learning a “prior” from multiple existing tasks. A common practice in meta-learning is to perform a train-validation split where the prior adapts to the task on one split of the data, and the resulting predictor is evaluated on another split. Despite its prevalence, the importance of the train-validation split is not well understood either in theory or in practice, particularly in comparison to the more direct non-splitting method, which uses all the per-task data for both training and evaluation. + +We provide a detailed theoretical study on whether and when the train-validation split is helpful on the linear centroid meta-learning problem, in the asymptotic setting where the number of tasks goes to infinity. We show that the splitting method converges to the optimal prior as expected, whereas the non-splitting method does not in general without structural assumptions on the data. In contrast, if the data are generated from linear models (the realizable regime), we show that both the splitting and non-splitting methods converge to the optimal prior. Further, perhaps surprisingly, our main result shows that the non-splitting method achieves a strictly better asymptotic excess risk under this data distribution, even when the regularization parameter and split ratio are optimally tuned for both methods. Our results highlight that data splitting may not always be preferable, especially when the data is realizable by the model. We validate our theories by experimentally showing that the non-splitting method can indeed outperform the splitting method, on both simulations and real meta-learning tasks. + +# 1 INTRODUCTION + +Meta-learning, also known as “learning to learn”, has recently emerged as a powerful paradigm for learning to adapt to unseen tasks (Schmidhuber, 1987). The high-level methodology in metalearning is akin to how human beings learn new skills, which is typically done by relating to certain prior experience that makes the learning process easier. More concretely, meta-learning does not train one model for each individual task, but rather learns a “prior” model from multiple existing tasks so that it is able to quickly adapt to unseen new tasks. Meta-learning has been successfully applied to many real problems, including few-shot image classification (Finn et al., 2017; Snell et al., 2017), hyper-parameter optimization (Franceschi et al., 2018), low-resource machine translation (Gu et al., 2018) and short event sequence modeling (Xie et al., 2019). + +A common practice in meta-learning algorithms is to perform a sample splitting, where the data within each task is divided into a training split which the prior uses to adapt to a task-specific predictor, and a validation split on which we evaluate the performance of the task-specific predictor (Nichol et al., 2018; Rajeswaran et al., 2019; Fallah et al., 2020; Wang et al., 2020a). For example, in a 5-way $k$ -shot image classification task, standard meta-learning algorithms such as MAML (Finn et al., 2017) use $5 k$ examples within each task as training data, and use additional examples (e.g. $k$ images, one for each class) as validation data. This sample splitting is believed to be crucial as it matches the evaluation criterion at meta-test time, where we perform adaptation on training data from a new task but evaluate its performance on unseen data from the same task. + +Despite the aformentioned importance, performing the train-validation split has a potential drawback from the data efficiency perspective — Because of the split, neither the training nor the evaluation stage is able to use all the available per-task data. In the few-shot image classification example, each task has a total of $6 k$ examples available, but the train-validation split forces us to use these data separately in the two stages. Meanwhile, performing the train-validation split is also not the only option in practice: there exist algorithms such as Reptile (Nichol & Schulman, 2018) and Meta-MinibatchProx (Zhou et al., 2019) that can instead use all the per-task data for training the task-specific predictor and also perform well empirically on benchmark tasks. These algorithms modify the loss function in the outer loop so that the training loss no longer matches the meta-test loss, but may have the advantage in terms of data efficiency for the overall problem of learning the best prior. So far it is theoretically unclear how these two approaches (with/without train-validation split) compare with each other, which motivates us to ask the following + +Question: Is the train-validation split necessary and optimal in meta-learning? + +In this paper, we perform a detailed theoretical study on the importance of the train-validation split. We consider the linear centroid meta-learning problem (Denevi et al., 2018b), where for each task we learn a linear predictor that is close to a common centroid in the inner loop, and find the best centroid in the outer loop (see Section 2 for the detailed problem setup). This problem captures the essence of meta-learning with non-linear models (such as neural networks) in practice, yet is sufficiently simple that allows a precise theoretical characterization. We use a biased ridge solver as the inner loop with a (tunable) regularization parameter, and compare two outer-loop algorithms of either performing the train-validation split (the train-val method) or using all the per-task data for both training and evaluation (the train-train method). Specifically, we compare the two methods when the number of tasks $T$ is large, and examine if and how fast they converge to the (properly defined) best centroid at meta-test time. We summarize our contributions as follows: + +• On the linear centroid meta-learning problem, we show that the train-validation split is necessary in the general agnostic setting: As $T \to \infty$ , the train-val method converges to the optimal centroid for test-time adaptation, whereas the train-train method does not without further assumptions on the tasks (Section 3). The convergence of the train-val method is expected since its (population) training loss is equivalent to the meta-test time loss, whereas the non-convergence of the train-train method is because these two losses are not equivalent in general. + +• Our main theoretical contribution is to show that the train-validation split is not necessary and even non-optimal, in the perhaps more interesting regime when there are structural assumptions on the tasks: When the data are generated from noiseless linear models, both the train-val and traintrain methods converge to the common best centroid, and the train-train method achieves a strictly better (asymptotic) estimation error and test loss than the train-val method (Section 4). This is in stark contrast with the agnostic case, and suggests that data efficiency may indeed be more important when the tasks have a nice structure. Our results build on tools from random matrix theory in the proportional regime, which may be of broader technical interest. + +• We perform meta-learning experiments on simulations and benchmark few-shot image classification tasks, showing that the train-train method consistently outperforms the train-val method (Section 5 & Appendix D). This validates our theories and presents empirical evidence that samplesplitting may not be crucial; methods that utilize the per-task data more efficiently may be preferred. + +# 1.1 RELATED WORK + +Meta-learning and representation learning theory Baxter (2000) provided the first theoretical analysis of meta-learning via covering numbers, and Maurer et al. (2016) improved the analysis via Gaussian complexity techniques. Another recent line of theoretical work analyzed gradient-based meta-learning methods (Denevi et al., 2018a; Finn et al., 2019; Khodak et al., 2019; Ji et al., 2020) and showed guarantees for convex losses by using tools from online convex optimization. Saunshi et al. (2020) proved the success of Reptile in a one-dimensional subspace setting. Wang et al. (2020b) compared the performance of train-train and train-val methods for learning the learning rate. Denevi et al. (2018b) proposed the linear centroid model studied in this paper, and provided generalization error bounds for train-val method; the bounds proved also hold for train-train method, so are not sharp enough to compare the two algorithms. Wang et al. (2020a) studied the convergence of gradient-based meta-learning by relating to the kernelized approximation. On the representation learning end, Du et al. (2020); Tripuraneni et al. (2020a;b) showed that ERM can successfully pool data across tasks to learn the representation. Yet the focus is on the accurate estimation of the common representation, not on the fast adaptation of the learned prior. Lastly, we remark that there are analyses for other representation learning schemes (McNamara & Balcan, 2017; Galanti et al., 2016; Alquier et al., 2016). + +Empirical understandings of meta-learning Raghu et al. (2020) investigated the representation learning perspective of meta-learning and showed that MAML with a full finetuning inner loop mostly learns the top-layer linear classifier and does not change the representation layers much. This result partly justifies the validity our linear centroid meta-learning problem in which the features (representations) are fixed and only a linear classifier is learned. Goldblum et al. (2020) investigated the difference of the neural representations learned by classical training (supervised learning) and meta-learning, and showed that the meta-learned representation is both better for downstream adaptation and makes classes more separated than the classically trained one. Although the classical training method in (Goldblum et al., 2020) does not perform a train-validation split, it is not exactly the same as the train-train method considered in this work as it effectively performs a supervised learning on all tasks combined and does not do a per-task adaptation. + +Multi-task learning Multi-task learning also exploits structures and similarities across multiple tasks. The earliest idea dates back to Caruana (1997); Thrun & Pratt (1998); Baxter (2000), initially in connections to neural network models. They further motivated other approaches using kernel methods (Evgeniou et al., 2005; Argyriou et al., 2007) and multivariate linear regression models with structured sparsity (Liu et al., 2009; 2015). More recent advances on deep multi-task learning focus on learning shared intermediate representations across tasks Ruder (2017). These multi-task learning approaches usually minimize the joint empirical risk over all tasks, and the models for different tasks are enforced to share a large amount of parameters. In contrast, meta-learning only requires the models to share the same “prior”, which is more flexible than multi-task learning. + +# 2 PRELIMINARIES + +In this paper, we consider the standard meta-learning setting, in which we observe data from $T \geq 1$ supervised learning tasks, and the goal is to find a prior (or “initialization”) using the combined data, such that the $( T + 1 )$ -th new task may be solved sample-efficiently using the prior. + +Linear centroid meta-learning We instantiate our study on the linear centroid meta-learning problem (also known as learning to learn around a common mean, Denevi et al. (2018b)), where we wish to learn a task-specific linear predictor $\mathbf { w } _ { t } \in \mathbb { R } ^ { d }$ in the inner loop for each task $t$ , and learn a “centroid” $\mathbf { w } _ { 0 }$ in the outer loop that enables fast adaptation to $\mathbf { w } _ { t }$ within each task: + +Find the best centroid $\mathbf { w } _ { 0 } \in \mathbb { R } ^ { d }$ for adapting to a linear predictor $\mathbf { w } _ { t }$ on each task $t$ + +Formally, we assume that we observe training data from $T \geq 1$ tasks, where for each task index $t$ we sample a task $p _ { t }$ (a distribution over $\mathbb { R } ^ { d } \times \mathbb { R } ^ { \cdot }$ ) from some distribution of tasks $\Pi$ , and observe $n$ examples $( { \bf X } _ { t } , { \bf y } _ { t } ) \in \mathbb { R } ^ { n \times d } \times \mathbb { R } ^ { n }$ that are drawn i.i.d. from $p _ { t }$ : + +$$ +p _ { t } \sim \Pi , ~ ( \mathbf { X } _ { t } , \mathbf { y } _ { t } ) = \{ ( \mathbf { x } _ { t , i } , y _ { t , i } ) \} _ { i = 1 } ^ { n } ~ \mathrm { w h e r e } ~ ( \mathbf { x } _ { t , i } , y _ { t , i } ) \overset { \mathrm { i i d } } { \sim } p _ { t } . +$$ + +We do not make further assumptions on $( n , d )$ ; in particular, we allow the underdetermined setting $n \leq d$ , in which there exists (one or many) interpolators $\widetilde { \mathbf { w } } _ { t }$ that perfectly fit the data: $\mathbf { X } _ { t } \widetilde { \mathbf { w } } _ { t } = \mathbf { y } _ { t }$ . + +Inner loop: Ridge solver with biased regularization towards the centroid Our goal in the inner loop is to find a linear predictor $\mathbf { w } _ { t }$ that fits the data in task $t$ while being close to the given “centroid” $\mathbf { w } _ { 0 } \in \mathbb { R } ^ { d }$ . We instantiate this through ridge regression (i.e. linear regression with $L _ { 2 }$ regularization) where the regularization biases $\mathbf { w } _ { t }$ towards the centroid. Formally, for any $\mathbf { w } _ { 0 } \in \mathbb { R } ^ { d }$ and any dataset $( \mathbf { X } , \mathbf { y } )$ , we consider the algorithm + +$$ +4 \lambda _ { \lambda } ( \mathbf { w } _ { 0 } ; \mathbf { X } , \mathbf { y } ) : = \operatorname { a r g m i n } _ { \mathbf { w } } { \frac { 1 } { n } } \left\| \mathbf { X } \mathbf { w } - \mathbf { y } \right\| ^ { 2 } + \lambda \left\| \mathbf { w } - \mathbf { w } _ { 0 } \right\| ^ { 2 } = \mathbf { w } _ { 0 } + \left( \mathbf { X } ^ { \top } \mathbf { X } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \mathbf { X } ^ { \top } ( \mathbf { y } - \mathbf { X } \mathbf { w } _ { 0 } ) . +$$ + +where $\lambda > 0$ is the regularization strength (typically a tunable hyper-parameter). As we regularize by ${ \left\| { \bf w } - { \bf w } _ { 0 } \right\} | ^ { 2 }$ , this inner solver encourages the solution to be close to $\mathbf { w } _ { 0 }$ , as we desire. Such a regularizer is widely used in practical meta-learning algorithms such as MetaOptNet (Lee et al., + +2019) and Meta-MinibatchProx (Zhou et al., 2019). In addition, as $\lambda 0$ , this solver recovers gradient descent fine-tuning: we have + +$$ +\mathcal { A } _ { 0 } ( \mathbf { w } _ { 0 } ; \mathbf { X } , \mathbf { y } ) : = \operatorname* { l i m } _ { \lambda \to 0 } \mathcal { A } _ { \lambda } ( \mathbf { w } _ { 0 } ; \mathbf { X } , \mathbf { y } ) = \mathbf { w } _ { 0 } + \mathbf { X } ^ { \dagger } ( \mathbf { y } - \mathbf { X } \mathbf { w } _ { 0 } ) = \arg \operatorname* { m i n } _ { \mathbf { X } \mathbf { w } = \mathbf { y } } \left\| \mathbf { w } - \mathbf { w } _ { 0 } \right\| ^ { 2 } +$$ + +(where $\mathbf { X } ^ { \dagger } \in \mathbb { R } ^ { d \times n }$ denotes the pseudo-inverse of $\mathbf { X }$ ). This is the minimum-distance interpolator of $( \mathbf { X } , \mathbf { y } )$ and also the solution found by gradient descent 1 on $\left\| \mathbf { X } \mathbf { w } - \mathbf { y } \right\| ^ { 2 }$ initialized at $\mathbf { w } _ { 0 }$ . Therefore our ridge solver with $\lambda > 0$ can be seen as a generalized version of the gradient descent solver used in MAML (Finn et al., 2017). + +Outer loop: Finding the best centroid In the outer loop, our goal is to find the best centroid $\mathbf { w } _ { 0 }$ . The standard approach in meta-learning is to perform a train-validation split, that is, (1) execute the inner solver on a first split of the task-specific data, and (2) evaluate the loss on a second split, yielding a function of $\mathbf { w } _ { 0 }$ that we can optimize. This two-stage procedure can be written as + +where $( \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } , \mathbf { y } _ { t } ^ { \mathsf { t r a i n } } ) = \{ ( \mathbf { x } _ { t , i } , y _ { t , i } ) \} _ { i = 1 } ^ { n _ { 1 } }$ and $( \mathbf { X } _ { t } ^ { \mathsf { v a l } } , \mathbf { y } _ { t } ^ { \mathsf { v a l } } ) = \{ ( \mathbf { x } _ { t , i } , y _ { t , i } ) \} _ { i = n _ { 1 } + 1 } ^ { n }$ are two disjoint splits of the per-task data $\left( \mathbf { X } _ { t } , \mathbf { y } _ { t } \right)$ of size $( n _ { 1 } , n _ { 2 } )$ , with $n _ { 1 } + n _ { 2 } = n$ . Written concisely, this is to consider the “split loss” + +$$ +\ell _ { t } ^ { { \mathrm { t r } } - { \mathrm { v a l } } } ( \mathbf { w } _ { 0 } ) : = \frac { 1 } { 2 n _ { 2 } } \left. \mathbf { y } _ { t } ^ { \mathrm { v a l } } - \mathbf { X } _ { t } ^ { \mathrm { v a l } } \boldsymbol { A } _ { \lambda } ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } , \mathbf { y } _ { t } ^ { \mathrm { t r a i n } } ) \right. ^ { 2 } . +$$ + +In this paper, we will also consider an alternative version, where we do not perform the trainvalidation split, but instead use all the per-task data for both training and evaluation. Mathematically, this is to look at the “non-split loss” + +$$ +\ell _ { t } ^ { { \mathrm { t r } } \cdot { \mathrm { t r } } } ( \mathbf { w } _ { 0 } ) : = { \frac { 1 } { 2 n } } \left\| \mathbf { y } _ { t } - \mathbf { X } _ { t } \mathcal { A } _ { \lambda } ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { t } , \mathbf { y } _ { t } ) \right\| ^ { 2 } . +$$ + +Our overall algorithm is to solve the empirical risk minimization (ERM) problem on the $T$ observed tasks, using either one of the two losses above: + +$$ +\begin{array} { r l } & { \widehat { L } _ { T } ^ { \mathrm { t r } \setminus \mathrm { v a l } } ( \mathbf { w } _ { 0 } ) : = \displaystyle \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \ell _ { t } ^ { \mathrm { t r } \cdot \mathrm { v a l } } ( \mathbf { w } _ { 0 } ) \quad \mathrm { a n d } \quad \widehat { L } _ { T } ^ { \mathrm { t r } \cdot \mathrm { t r } } ( \mathbf { w } _ { 0 } ) : = \displaystyle \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \ell _ { t } ^ { \mathrm { t r } \cdot \mathrm { t r } } ( \mathbf { w } _ { 0 } ) , } \\ & { \widehat { \mathbf { w } } _ { 0 , T } ^ { \{ \mathrm { t r } \cdot \mathrm { v a l } , \mathrm { t r } \cdot \mathrm { t r } \} } : = \displaystyle \arg \operatorname* { m i n } _ { \mathbf { w } _ { 0 } } \widehat { L } _ { T } ^ { \{ \mathrm { t r } \cdot \mathrm { v a l } , \mathrm { t r } \cdot \mathrm { t r } \} } ( \mathbf { w } _ { 0 } ) . } \end{array} +$$ + +Let $L ^ { \{ \mathrm { t r } \mathrm { - } \vee \mathsf { a l } , \mathrm { t r } \mathrm { - } \mathrm { t r } \} } ( \mathbf { w } _ { 0 } ) : = \mathbb { E } _ { p _ { t } \sim \Pi , ( { \mathbf { X } } _ { t } , \mathbf { y } _ { t } ) \sim p _ { t } } \left[ \ell _ { t } ^ { \{ \mathrm { t r } \mathrm { - } \vee \mathsf { a l } , \mathrm { t r } \mathrm { - } \mathrm { t r } \} } ( \mathbf { w } _ { 0 } ) \right]$ be the population risks. + +(Meta-)Test time The meta-test time performance of any meta-learning algorithm is a joint function of the (learned) centroid $\mathbf { w } _ { 0 }$ and the inner algorithm $\mathsf { A l g }$ . Upon receiving a new task $p _ { T + 1 } \sim \Pi$ and training data $( \mathbf { X } _ { T + 1 } , \mathbf { y } _ { T + 1 } ) \in \mathbb { R } ^ { n \times d } \times \mathbb { R } ^ { \bar { n } }$ , we run the inner loop $\mathsf { A l g }$ with prior $\mathbf { w } _ { 0 }$ on the training data, and evaluate it on an (unseen) test example $( { \bf x } ^ { \prime } , y ^ { \prime } ) \sim p _ { T + 1 }$ : + +$$ +L ^ { \mathrm { t e s t } } ( \mathbf { w } _ { 0 } ; \mathbb { A } | \mathbf { g } ) : = \mathbb { E } _ { p _ { T + 1 } \sim \Pi } \mathbb { E } _ { ( \mathbf { X } _ { T + 1 } , \mathbf { y } _ { T + 1 } ) , ( \mathbf { x } ^ { \prime } , \pmb { y } ^ { \prime } ) ^ { \sharp \alpha } p _ { T + 1 } } \left[ \frac { 1 } { 2 } \big ( \mathbf { x } ^ { \prime \top } \mathbb { A } | \mathbf { g } ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { T + 1 } , \mathbf { y } _ { T + 1 } ) - \pmb { y } ^ { \prime } \big ) ^ { 2 } \right] . +$$ + +Additionally, for both train-val and train-train methods, we need to ensure that the inner loop used for meta-test is exactly the same as that used in meta-training. Therefore, the meta-test performance for the train-val and train-train methods above should be evaluated as + +$$ +\begin{array} { r } { L _ { \lambda , n _ { 1 } } ^ { \mathrm { t e s t } } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { v a l } } ) : = L ^ { \mathrm { t e s t } } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { v a l } } ; \mathcal { A } _ { \lambda , n _ { 1 } } ) , \quad L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { t r } } ) : = L ^ { \mathrm { t e s t } } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { t r } } ; \mathcal { A } _ { \lambda , n } ) , } \end{array} +$$ + +where $\mathcal { A } _ { \lambda , m }$ denotes the ridge solver with regularization strength $\lambda > 0$ on $m \leq n$ data points. Finally, we let + +$$ +\begin{array} { r } { \mathbf { w } _ { 0 , \star } ( \lambda ; n ) = \underset { \mathbf { w } _ { 0 } } { \arg \operatorname* { m i n } } L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \mathbf { w } _ { 0 } ) } \end{array} +$$ + +denote the best centroid if the inner loop uses $\mathcal { A } _ { \lambda , n }$ . The performance of the train-val algorithm $\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - v a l } }$ should be compared against ${ \bf w } _ { 0 , \star } ( \lambda , n _ { 1 } )$ , whereas the train-train algorithm $\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } }$ should be compared against $\mathbf { w } _ { 0 , \star } ( \lambda , n )$ . + +# 2.1 TASK-ABUNDANT SETTING THROUGH ASYMPTOTIC ANALYSIS + +In this paper we are interested in the task-abundant setting where we fix some finite $( d , n )$ and let $T$ be very large. We analyze such a task-abundant setting through the asymptotic analysis framework, that is, examine the limiting properties of the estimator (e.g. w {tr-val,tr-tr}) as T . Here we set up the basic notation of asymptotic analysis required in this paper. We emphasize that our large $T$ setting captures practical meta-learning scenarios; for example, 5-way image classification on miniImageNet (Ravi & Larochelle, 2017) contains $\binom { 6 4 } { 5 }$ diverse tasks (at train time). + +Asymptotic rate of estimation & excess risk Let $L$ be any population risk with minimizer $\mathbf { w } _ { 0 , \star }$ (which we assume is unique), $\widehat { L } _ { T }$ be the empirical risk on the observed data from $T$ tasks, and $\widehat { \mathbf { w } } _ { 0 , T }$ be the minimizer of $\widehat { L } _ { T }$ (i.e. the ERM). We say that $\widehat { \mathbf { w } } _ { 0 , T }$ is consistent if $\widehat { \mathbf { w } } _ { 0 , T } \to \mathbf { w } _ { 0 , \star }$ in probability as $T \to \infty$ . For consistent ERMs, we define its asymptotic parameter estimation error (in MSE loss) and asymptotic excess risk as follows2: + +$$ +\begin{array} { r l } & { \displaystyle \mathrm { A s y m M S E } ( \widehat { \mathbf w } _ { 0 , T } ) : = \operatorname* { l i m } _ { T \infty } T \cdot \mathbb { E } \Big [ \big \| \widehat { \mathbf w } _ { 0 , T } - { \mathbf w } _ { 0 , \star } \big \| ^ { 2 } \Big ] } \\ & { \displaystyle \mathrm { A s y m E x c e s s R i s k } ( \widehat { \mathbf w } _ { 0 , T } ) : = \operatorname* { l i m } _ { T \infty } T \cdot \mathbb { E } [ L ( \widehat { \mathbf w } _ { 0 , T } ) - L ( { \mathbf w } _ { 0 , \star } ) ] . } \end{array} +$$ + +We emphasize that asymptotic statements are more refined than non-asymptotic $O ( \cdot )$ style upper bounds in the $T \to \infty$ limit: they already imply the {MSE, excess risk} has order ${ \cal O } ( 1 / T )$ and specifies the leading constant. + +# 3 THE IMPORTANCE OF SAMPLE SPLITTING + +We begin by ana her hms $\widehat { \mathbf { w } } _ { 0 , T } ^ { \{ \mathrm { t r - v a l , t r - t r } \} }$ defined in rge to the best $\mathbf { w } _ { 0 , \star } \big ( \lambda ; n _ { 1 } \big )$ $\mathbf { w } _ { 0 , \star } ( \lambda ; n )$ $T \to \infty$ situation where we do not make structural assumptions on the data distribution $p _ { t }$ . + +Proposition 1 (Consistency and asymptotics of train-val method). Suppose $\begin{array} { r } { \mathbb { E } _ { \mathbf { x } \sim p _ { t } } [ \mathbf { x x } ^ { \top } ] ~ \succ ~ \mathbf { 0 } , } \end{array}$ , $\mathbb { E } _ { \mathbf { x } \sim p _ { t } } [ \left\| \mathbf { x } \right\| ^ { 4 } ] < \infty$ and $\mathbb { E } _ { ( \mathbf { x } , y ) \sim p _ { t } } [ \| \mathbf { x } y \| ] < \infty$ for almost surely all $p _ { t } \sim \Pi$ . Then for any $\lambda > 0$ and any $( n _ { 1 } , n _ { 2 } )$ such that $n _ { 1 } + n _ { 2 } = n ,$ , the train-val method $\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - v a l } }$ converges to the best test-time centroid: $\widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r - v a l } \to \mathbf { w } _ { 0 , \star } ( \lambda , n _ { 1 } )$ almost surely as $T \to \infty$ b . Further, we have + +$$ +\begin{array} { r l } & { \mathrm { m M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathsf { t r } \setminus \mathsf { s a l } } ) = \mathrm { t r } \big ( \nabla ^ { - 2 } L _ { \lambda , n _ { 1 } } ^ { \mathsf { t e s t } } ( { \mathbf { w } } _ { 0 , \star } ( \lambda , n _ { 1 } ) ) \cdot \mathrm { C o v } \big ( \nabla \ell _ { t } ^ { \mathsf { t r } \setminus \mathsf { s a l } } ( { \mathbf { w } } _ { 0 , \star } ( \lambda , n _ { 1 } ) ) \big ) \cdot \nabla ^ { - 2 } L _ { \lambda , n _ { 1 } } ^ { \mathsf { t e s t } } ( { \mathbf { w } } _ { 0 , \star } ( \lambda , n _ { 1 } ) } \\ & { \mathrm { m E x c e s s R i s k } _ { L _ { \lambda , n _ { 1 } } ^ { \mathsf { t e s t } } } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathsf { t r } \setminus \mathsf { s a l } } ) = \mathrm { t r } \big ( \nabla ^ { - 2 } L _ { \lambda , n _ { 1 } } ^ { \mathsf { t e s t } } ( { \mathbf { w } } _ { 0 , \star } ( \lambda , n _ { 1 } ) ) \cdot \mathrm { C o v } \big ( \nabla \ell _ { t } ^ { \mathsf { t r } \setminus \mathsf { s a l } } ( { \mathbf { w } } _ { 0 , \star } ( \lambda , n _ { 1 } ) ) \big ) \big ) . } \end{array} +$$ + +Proposition 2 (Inconsistency of train-train method). There exists a distribution of tasks $\Pi$ on $d = 1$ satisfying the conditions in Proposition $^ { l }$ on which the train-train method does not converge to the best test-time centroid: for any $n \geq 1$ and any $\lambda > 0$ , the estimation error $\lVert \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } - \mathbf { w } _ { 0 , \star } ( \lambda , n ) \rVert$ and the excess risk $L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } ) - L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \mathbf { w } _ { 0 , \star } ( \lambda , n ) )$ b are both bounded away from $O$ almost surely as $T \to \infty$ . + +Propositions 1 and 2 justify the importance of sample splitting: the train-val method converges to the best test-time centroid, whereas the train-train method does not converge to the best centroid in general. The reason behind Proposition 1 is simple: the population loss $L ^ { \mathrm { t r - v a l } }$ for the trainval method is indeed equal to the test-time loss $L _ { \lambda , n _ { 1 } } ^ { \mathrm { t e s t } }$ , making the train-val method a proper ERM for the meta-test time we care about, and thus the consistency and asymptotic normality follow from classical results for the ERM (e.g. (Van der Vaart, 2000; Liang, 2016)). + +ntrast, for the train-train method, its expected loss measures the in-sample prediction error of the per- $L ^ { \mathrm { t r - t r } }$ is in general not predictor, whereas alent to measur $L _ { \lambda , n } ^ { \mathsf { t e s t } }$ $L ^ { \mathrm { t r - t r } }$ $L _ { \lambda , n } ^ { \mathsf { t e s t } }$ out-of-sample prediction error. equal in general, which leads to equently, the population minimiconverging to the minimizer of f , $L _ { \lambda , n } ^ { \mathsf { t e s t } }$ t and Ltr-tr f are note proof $\widehat { \mathbf { w } } _ { 0 , \star }$ $L ^ { \mathrm { t r - t r } }$ $L _ { \lambda , n } ^ { \mathsf { t e s t } }$ of Proposition 2 constructs a simple counter-example in , but we expect such a mismatch to generally hold in any dimension. Appendix A gives the proofs of Proposition 1 and 2. + +# 4 IS SAMPLE SPLITTING ALWAYS OPTIMAL? + +Proposition 2 states a negative result for the train-train method, showing that it does not converge to the best test-time centroid without further assumptions on the data distribution. However, such a negative result is inherently worst-case, and does not preclude the possibility that there exists a data distribution on which the train-train method can also work well. In this section, we construct a simple data distribution in which we can analyze the performance of both the train-val and the train-train methods more explicitly, showing that sample splitting is indeed not optimal, and the train-train method can work better. + +Realizable linear model We consider the following instantiation of the (generic) data distribution assumption in (1): We assume that each task $p _ { t }$ is specified by a $\mathbf { w } _ { t } \in \mathbb { R } ^ { d }$ sampled from some distribution $\Pi$ (overloading notation), and the observed data follows the noiseless linear model with ground truth parameter $\mathbf { w } _ { t }$ : + +$$ +\mathbf { y } _ { t } = \mathbf { X } _ { t } \mathbf { w } _ { t } , +$$ + +where the inputs $\mathbf { x } _ { t , i } \overset { \mathrm { i i d } } { \sim } \mathsf { N } ( \mathbf { 0 } , \mathbf { I } _ { d } )$ and are independent of $\mathbf { w } _ { t }$ . We assume that $\Pi$ has a finite second moment (i.e. $\mathbb { E } _ { \mathbf { w } _ { t } \sim \Pi } [ \left\| \mathbf { w } _ { t } \right\| ^ { 2 } ] < \infty )$ . Note that when $n \geq d$ , we are able to perfectly recover $\mathbf { w } _ { t }$ for all $t$ (by solving linear equations), therefore the problem in the inner loop is in a sense “easy”; when $n < d$ , we cannot hope for such perfect recoveries. Our goal in the outer loop is to find the best $\mathbf { w } _ { 0 }$ , measured by the test loss $L _ { \lambda , n } ^ { \mathsf { t e s t } }$ for the train-train method and $L _ { \lambda , n _ { 1 } } ^ { \mathsf { t e s t } }$ for the train-val method. + +# 4.1 COMPARISON OF TRAIN-TRAIN AND TRAIN-VAL ON THE REALIZABLE MODEL + +We begin by showing that on this task and data distribution, the population best centroids $\mathbf { w } _ { 0 , \star } ( \bar { \lambda _ { \lambda } } , n ) \ \stackrel { - } { = } \ \mathrm { a r g } \operatorname* { m i n } _ { \mathbf { w } _ { 0 } } L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \mathbf { w } _ { 0 } )$ is the same for any $( \lambda , n )$ , and both the train-val and traintrain methods are asymptotically consistent and converge to same best centroid. + +Theorem 3 (Consistency of both train-val and train-train methods). On the realizable linear model (6), the test-time meta loss for all $\lambda > 0$ and all $n$ is minimized at the same point, that is, the mean of the ground truth parameters: + +$$ +\begin{array} { r } { \mathbf { w } _ { 0 , \star } ( \lambda , n ) = \underset { \mathbf { w } _ { 0 } } { \mathrm { a r g } \mathrm { m i n } } L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \mathbf { w } _ { 0 } ) = \mathbf { w } _ { 0 , \star } : = \mathbb { E } _ { \mathbf { w } _ { t } \sim \Pi } [ \mathbf { w } _ { t } ] , \ : \ : \ : f o r \ : a l l \ : \lambda > 0 , \ : n . } \end{array} +$$ + +Further, both the train-val method and the train-train method are asymptotically consistent: for any $\lambda > 0$ , $n ,$ , and $( n _ { 1 } , n _ { 2 } )$ , we have + +$$ +\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - v a l } } ( n _ { 1 } , n _ { 2 } ; \lambda ) \to \mathbf { w } _ { 0 , \star } \mathrm { a n d } \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } ( n ; \lambda ) \to \mathbf { w } _ { 0 , \star } a l m o s t s u r e l y a s T \to \infty +$$ + +See its proof in Appendix B.1. Theorem 3 shows that both train-val and train-train methods are consistent, and they converge to the same optimal parameter $\mathbf { w } _ { 0 , \star }$ which is the mean of $\mathbf { w } _ { t }$ . This is a consequence of the good structure in our realizable linear model (6): at a high level, $\mathbf { w } _ { 0 , \star }$ is indeed the best centroid since it has (on average) the closest distance to a randomly sampled $\mathbf { w } _ { t }$ . + +Theoerem 3 suggests that we are now able to compare performance of the two methods based on their asymptotic parameter estimation error (for estimating $\mathbf { w } _ { 0 , \star }$ ). Throughout the rest of this section, let + +$$ +R ^ { 2 } : = \mathbb { E } \Big [ \| \mathbf { w } _ { t } - \mathbf { w } _ { 0 , \star } \| ^ { 2 } \Big ] +$$ + +denote the variance of $\mathbf { w } _ { t }$ . We are now ready to state our main result. + +Theorem 4 (Comparison of asymptotic MSE of the train-val and train-train methods). In the high-dimensional limiting regime $d , n \infty$ , $d / n \to \gamma \in ( 0 , \infty ) .$ , the optimal rate of the traintrain method obtained by tuning the regularization $\lambda \in ( 0 , \infty )$ satisfies + +$\operatorname* { i n f } _ { \lambda > 0 } \operatorname* { l i m } _ { d , n \to \infty , d / n = \gamma } \mathrm { A s y m M S E } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r . t r } ( n ; \lambda ) \big ) = \operatorname* { i n f } _ { \lambda > 0 } \rho _ { \lambda , \gamma } R ^ { 2 } \overset { ( \star ) } { \leq } \operatorname* { m a x } \left\{ 1 + \frac { 5 } { 2 7 } \gamma , \frac { 5 } { 2 7 } + \gamma \right\} \cdot R ^ { 2 } ,$ where $\rho _ { \lambda , \gamma } = 4 \gamma ^ { 2 } \big [ ( \gamma - 1 ) ^ { 2 } + ( \gamma + 1 ) \lambda \big ] / ( \lambda + \gamma + 1 - \sqrt { ( \lambda + \gamma + 1 ) ^ { 2 } - 4 \gamma } ) ^ { 2 } / \big ( ( \lambda + \gamma + 1 ) ^ { 2 } - 4 \gamma \big ) ^ { 3 / 2 }$ and the inequality becomes equality at $\gamma = 1$ . In contrast, the optimal rate of the train-val method by tuning the regularization $\lambda \in ( 0 , \infty )$ and split ratio $s \in ( 0 , 1 )$ is + +$$ +\begin{array} { r } { \operatorname* { i n f } _ { \lambda > 0 , s \in ( 0 , 1 ) } \operatorname* { l i m } _ { d , n \to \infty , d / n = \gamma } \mathrm { A s y m M S E } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r \cdot v a l } ( n s , n ( 1 - s ) ; \lambda ) \big ) = ( 1 + \gamma ) R ^ { 2 } . } \end{array} +$$ + +A $\mathrm { ; \ m a x } \{ 1 + 5 \gamma / 2 7 , 5 / 2 7 + \gamma \} < 1 + \gamma ( \forall \gamma > 0 )$ , the train-train method achieves a strictly better asymptotic rate than the train-val method when $\lambda$ and $s$ are optimally tuned in both methods. + +Implications Comparison between the analytical upper bound $\operatorname* { m a x } \{ 1 + 5 \gamma / 2 7 , 5 / 2 7 + \gamma \} R ^ { 2 }$ for train-train $( 1 + \gamma ) R ^ { 2 }$ for train-val in Theorem 4 shows that the train-train method achieves a strictly better asymptotic MSE than the train-val method, for any $\gamma > 0 ^ { 3 }$ . (See Figure 1(a) for a visualization of the exact optimal rates and the upper bound $( \star )$ .) Perhaps surprisingly, this suggests that the traintrain method is not only “correct” (converging to the best centroid), but can be even better than the train-val method, when the data is structured. While the “correctness” of the train-train method is a consequence of the realizable linear model, we believe its superior asymptotic MSE is due to the fact that the train-train method is able to use the data more efficiently than the train-val method. + +Also, while we reached such a conclusion on this particular problem of linear centroid meta-learning, we suspect that this phenomenon to be not restricted to this problem, and may hold in more generality when data is structured or when the signal-to-noise ratio is high. As we are going to see, our real data experiments in Section 5.2 indeed suggests that the superiority of the train-train method may also hold on real meta-learning tasks with neural networks. + +# 4.2 PROOF HIGHLIGHTS OF THEOREM 4 + +Here we sketch the technical highlights in proving Theorem 4. We defer the full proof to Appendix B.5. + +Exact asymptotic MSE for both methods The proof begins by calculating the exact asymptotic MSE for both methods, which we provide in the following theorem. + +Lemma 5 (Exact asymptotic rates of the train-val and train-train methods). Suppose that $\rho _ { \sf t r - t r } =$ $\begin{array} { r l r } { \frac { \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } ( \sigma _ { i } ^ { ( n ) } ) ^ { 2 } / ( \sigma _ { i } ^ { ( n ) } + \lambda ) ^ { 4 } \right] } { \left( \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \sigma _ { i } ^ { ( n ) } / ( \sigma _ { i } ^ { ( n ) } + \lambda ) ^ { 2 } \right] \right) ^ { 2 } } \ \mathrm { ~ } a n d \rho _ { \mathrm { t r - s i l } } } & { = } & { \frac { \mathbb { E } \left[ \left( \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \right) ^ { 2 } + ( n _ { 2 } + 1 ) \sum _ { i = 1 } ^ { d } \lambda ^ { 4 } / ( \sigma _ { i } ^ { ( n _ { 1 } ^ { - 1 } ) } + \lambda ) ^ { 4 } \right] } { \left( \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \right] \right) ^ { 2 } } } \end{array}$ where for any n, $\cdot$ denotes the eigenvalues of the matrix $\cdot$ , where we recall $\cdot$ is a random matrix with i.i.d. standard Gaussian entries. For any $( n , d )$ , we have on the realizable linear model (6) that + +$$ +- +$$ + +See its proof in Appendix B.2. Lemma 5 follows straightforwardly from the classical asymptotic result for empirical risk minimization (Van der Vaart, 2000) and simplifications of certain matrix traces in terms of the spectrum of the empirical covariance matri x 1n Pnt=1 XtX>t . + +Simplifying and optimizing the asymptotic MSEs The asymptotic MSEs of the train-train and train-val method in Lemma 5 are not yet directly comparable, as the quantities $\rho _ { \tt t r - \tt t r }$ and $\cdot$ depend on the spectrum of the empirical covariance matrix as well as additional tunable parameters such as $\cdot$ and $\cdot$ (for the train-val method). Towards proving Theorem 4, we further simplify the rates and analyze the optimal tunable parameters, using separate strategies for the two methods: + +For the train-val method, we show that the optimal tunable parameters for any $( n , d )$ is taken at a special case $\lambda = \infty$ and $\_$ , at which the rates only depends on $\cdot$ through its rank (and thus has a simple closed-form). We state this result in Corollary 8. The proof builds on algebraic manipulations of the quantity $\cdot$ , and can be found in Appendix B.3. + +• For the train-train method, we apply random matrix theory to simplify the spectrum of $\cdot$ in the proportional limit where $\cdot$ and $\cdot$ stays a constant (Bai & Silverstein, 2010; Anderson et al., 2010), and obtain a closed-form expression of the asymptotic MSE for any $\cdot$ , which we can analytically optimize over $\lambda$ . We state this result in Theorem 9. The proof builds on the Steiltjes transform and its “derivative trick” (Dobriban et al., 2018), and is deferred to Appendix B.4. + +# 5 EXPERIMENTS + +# 5.1 SIMULATIONS + +We experiment on the realizable linear model studied in Section 4. Recall that the observed data of the $t$ -th task are generated as + +$$ +\begin{array} { r } { \mathbf { y } _ { t } = \mathbf { X } _ { t } \mathbf { w } _ { t } , \quad \mathrm { w i t h } \quad \mathbf { x } _ { t , i } \overset { \mathrm { i i d } } { \sim } \mathsf { N } ( 0 , \mathbf { I } _ { d } ) . } \end{array} +$$ + +We independently generate $\mathbf { w } _ { t } \overset { \mathrm { i i d } } { \sim } \mathsf { N } ( \mathbf { w } _ { 0 , \star } , \mathbf { I } _ { d } / \sqrt { d } )$ , where $\mathbf { w } _ { 0 , \star }$ is the linear centroid and the corresponding $R ^ { 2 } = 1$ here. The goal is to learn the linear centroid $\mathbf { w } _ { 0 , \star }$ using the train-train method and train-val meare quadratic in d, i.e., minimizing , therefore, we ca $\widehat { L } _ { T } ^ { \mathrm { t r - t r } }$ and the $\widehat { L } _ { T } ^ { \mathrm { t r - v a l } }$ , respectively. orm solutions h . $\widehat { L } _ { T } ^ { \mathrm { t r - t r } }$ and eas $\widehat { L } _ { T } ^ { \mathrm { t r } . }$ -valthe $\mathbf { w } _ { 0 }$ w {tr-tr,tr-val} We m ure performance of train-train and train-val methods using the $\ell _ { 2 }$ -error $\lVert \mathbf { w } _ { 0 , \star } - \widehat { \mathbf { w } } _ { 0 , T } ^ { \{ \mathrm { t r - t r } , \mathrm { t r - v a l } \} } \rVert ^ { 2 }$ + +We present the comparison among train-train and train-val methods in Figure 1 with scatter plots representing the simulation outputs under different settings. Across all the simulations, we well-tune the regularization coefficient $\lambda$ in the train-train method, and use a sufficiently large $\lambda = 1 0 0 0 0$ in the train-val method according to Corollary 8. The simulated results concentrate around the reference curves corresponding to our theoretical findings. This corroborates our analyses and demonstrates the better performance of train-train method on the realizable linear model. + +We additionally investigate the effect of averaging the loss over multiple splits in the trainval method (a “cross-validation” type loss) rather than the vanilla single split. We show that such cross-validation can indeed improve over the vanilla single-split train-val method. We also experiment with the stronger “leave-one-out” style cross-validation and show that it achieves better MSEs than the constant-fold cross-validation (Appendix E). + +![](images/8f9f3cbc3586094e8344e1fc3ef4c0539ad59faad6af8ba3292317a176303ce0.jpg) +Figure 1: Panel (a) presents the optimal As $\mathrm { \prime m M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } )$ (blue) in Theorem 9 via grid search, and the optimal $\mathrm { A s y m M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r - v a l } )$ in Corollary 8 with $n _ { 1 } = 0$ (orange) and $n _ { 1 } = 5$ (green), as well as the upper bound of $\mathrm { A s y m M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } )$ (magenta) in Corollary 4. The optimal AsymMSE $\widehat { \mathbf { w } } _ { 0 , T } ^ { \{ \mathrm { t r - t r } , \mathrm { t r - v a l } \} } )$ are used as b reference curves in plots (b) and (c). Panel (b) plots the $\ell _ { 2 }$ -error of $\widehat { \mathbf { w } } _ { 0 , T } ^ { \{ \mathrm { t r - t r } , \mathrm { t r - v a l } \} }$ b the total number of tasks b increases from 20 to 1000 with an increment of 20. We fix data dimension $d = 6 0$ $n = 2 0$ . F of val method, as the ratio xperiment on varies from 0 $n _ { 1 } = 0$ ${ n } _ { 1 } = 5$ (c) shows the scaled (by are fixed). $T$ ) $\ell _ { 2 }$ $\widehat { \mathbf { w } } _ { 0 , T } ^ { \{ \mathrm { t r - t r } , \mathrm { t r - v a l } \} }$ $d / n$ $n = 2 0$ $T = 1 0 0 0$ + +# 5.2 FEW-SHOT IMAGE CLASSIFICATION + +We further investigate the comparison between the train-train and train-val type methods in fewshot image classification on miniImageNet (Ravi & Larochelle, 2017) and tieredImageNet (Ren et al., 2018). + +Methods We instantiate the train-train and train-val method in the centroid meta-learning setting with a ridge solver. The methods are almost exactly the same as in our theoretical setting in (2) and (3), with the only differences being that the parameters $\mathbf { w } _ { t }$ (and hence $\cdot$ ) parametrize a deep + +neural network instead of a linear classifier, and the loss function is the cross-entropy instead of squared loss. Mathematically, we minimize the following two loss functions: + +$$ +\_ +$$ + +where $\left( \mathbf { X } _ { t } , \mathbf { y } _ { t } \right)$ is the data for task $t$ of size $\cdot$ , and $( \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } , \mathbf { y } _ { t } ^ { \mathsf { t r a i n } } )$ and $\cdot$ is a split of the data of size $( n _ { 1 } , n _ { 2 } )$ . We note that both loss functions above have been considered in prior work ( $L ^ { \mathrm { t r - v a l } }$ in iMAML (Rajeswaran et al., 2019), and $\cdot$ in Meta-MinibatchProx (Zhou et al., 2019)), though we use slightly different implementation details from these prior work to make sure that the two methods here are exactly the same except for whether the split is used. Additional details about the implementation can be found in Appendix D. + +Experimental settings We adopt the episodic training procedure (Finn et al., 2017; Zhou et al., 2019; Rajeswaran et al., 2019). In meta-test, we sample a set of $N$ -way $( K + 1 )$ -shot test tasks. The first $K$ instances are for training and the remaining one is for testing. In meta-training, we use the “higher way” training strategy. We set the default choice of the train-validation split ratio to be an even split $\_$ following Zhou et al. (2019); Rajeswaran et al. (2019). For example, for a 5-way 5-shot classification setting, each task contains $\_$ total images, and we set $\_$ . (We additionally investigate the optimality of this split ratio in Appendix D.1.) We evaluate both methods under the transduction setting where the information is shared between the test data via batch normalization. We report the average accuracy over $\cdot$ random test episodes with $9 5 \%$ confidence interval. + +Results Table 1 presents the percent classification accuracy on miniImagenet and tieredImageNet. We find that the train-train method consistently outperforms the train-val method. Specifically, on miniImageNet, train-train method outperforms train-val by $\cdot$ and $\cdot$ on the 1-shot 5-way and 5-shot 5-way tasks respectively; On tieredImageNet, train-train on average improves by about $6 . 4 0 \%$ on the four testing cases. These results show the advantages of train-train method over trainval and support our theoretical findings in Theorem 4. + +Table 1: Few-shot classification accuracy $\cdot$ on the miniImageNet and tieredImageNet datasets. + +
miriiiiiimethod1-shot 5-way 5-shot 5-way1-shot 20-way 5-shot 20-way
train-val48.76 ± 0.8763.56 ± 0.9517.52 ± 0.4921.32 ± 0.54
rrrrareraetrain-train50.77 ± 0.9067.43 ± 0.8921.17 ± 0.3834.30 ± 0.41
method train-val1-shot 5-way 5-shot 5-way1-shot 10-way 5-shot 10-way
50.61 ± 1.1267.30 ± 0.9829.18 ± 0.5743.15 ± 0.72
train-train54.37 ± 0.9371.45 ± 0.9435.56 ± 0.6054.50 ± 0.71
+ +# 6 CONCLUSION + +We study the importance of train-validation split on the linear-centroid meta-learning problem, and show that the necessity and optimality of train-validation split depends greatly on whether the tasks are structured: the sample splitting is necessary in general situations, and not necessary and nonoptimal when the tasks are nicely structured. It would be of interest to study whether a similar conclusion holds on other meta-learning problems such as learning a representation, or whether our insights can be used towards designing meta-learning algorithms with better empirical performance. + +# REFERENCES + +Pierre Alquier, The Tien Mai, and Massimiliano Pontil. Regret bounds for lifelong learning. arXiv preprint arXiv:1610.08628, 2016. + +Greg W Anderson, Alice Guionnet, and Ofer Zeitouni. An introduction to random matrices, volume 118. Cambridge university press, 2010. + +Andreas Argyriou, Theodoros Evgeniou, and Massimiliano Pontil. Multi-task feature learning. In Advances in neural information processing systems, pp. 41–48, 2007. + +Zhidong Bai and Jack W Silverstein. Spectral analysis of large dimensional random matrices, volume 20. Springer, 2010. + +Jonathan Baxter. A model of inductive bias learning. J. Artif. Int. Res., 2000. + +Rich Caruana. Multitask learning. Machine Learning, 28(1):41–75, Jul 1997. ISSN 1573-0565. doi: 10.1023/A:1007379606734. URL https://doi.org/10.1023/A:1007379606734. + +Giulia Denevi, Carlo Ciliberto, Dimitris Stamos, and Massimiliano Pontil. Incremental learning-tolearn with statistical guarantees. arXiv preprint arXiv:1803.08089, 2018a. + +Giulia Denevi, Carlo Ciliberto, Dimitris Stamos, and Massimiliano Pontil. Learning to learn around a common mean. In Advances in Neural Information Processing Systems, pp. 10169–10179, 2018b. + +Edgar Dobriban, Stefan Wager, et al. High-dimensional asymptotics of prediction: Ridge regression and classification. The Annals of Statistics, 46(1):247–279, 2018. + +Simon S Du, Wei Hu, Sham M Kakade, Jason D Lee, and Qi Lei. Few-shot learning via learning the representation, provably. arXiv preprint arXiv:2002.09434, 2020. + +Theodoros Evgeniou, Charles A Micchelli, and Massimiliano Pontil. Learning multiple tasks with kernel methods. Journal of machine learning research, 6(Apr):615–637, 2005. + +Alireza Fallah, Aryan Mokhtari, and Asuman Ozdaglar. On the convergence theory of gradientbased model-agnostic meta-learning algorithms. In International Conference on Artificial Intelligence and Statistics, pp. 1082–1092, 2020. + +Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of deep networks. In Proceedings of the 34th International Conference on Machine LearningVolume 70, pp. 1126–1135, 2017. + +Chelsea Finn, Aravind Rajeswaran, Sham Kakade, and Sergey Levine. Online meta-learning. In Proceedings of the 36th International Conference on Machine Learning, 2019. + +Luca Franceschi, Paolo Frasconi, Saverio Salzo, Riccardo Grazzi, and Massimilano Pontil. Bilevel programming for hyperparameter optimization and meta-learning. arXiv preprint arXiv:1806.04910, 2018. + +Tomer Galanti, Lior Wolf, and Tamir Hazan. A theoretical framework for deep transfer learning. Information and Inference: A Journal of the IMA, 5(2):159–209, 2016. + +Micah Goldblum, Steven Reich, Liam Fowl, Renkun Ni, Valeriia Cherepanova, and Tom Goldstein. Unraveling meta-learning: Understanding feature representations for few-shot tasks. arXiv preprint arXiv:2002.06753, 2020. + +Jiatao Gu, Yong Wang, Yun Chen, Kyunghyun Cho, and Victor OK Li. Meta-learning for lowresource neural machine translation. arXiv preprint arXiv:1808.08437, 2018. + +Kaiyi Ji, Jason D Lee, Yingbin Liang, and H Vincent Poor. Convergence of meta-learning with task-specific adaptation over partial parameters. arXiv preprint arXiv:2006.09486, 2020. + +Mikhail Khodak, Maria-Florina Balcan, and Ameet Talwalkar. Adaptive gradient-based metalearning methods. arXiv preprint arXiv:1906.02717, 2019. + +A. Krizhevsky, I. Sutskever, and G. Hinton. Imagenet classification with deep convolutional neural networks. pp. 1097–1105, 2012. + +Kwonjoon Lee, Subhransu Maji, Avinash Ravichandran, and Stefano Soatto. Meta-learning with differentiable convex optimization. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 10657–10665, 2019. + +Percy Liang. Cs229t/stat231: Statistical learning theory (winter 2016), 2016. + +Han Liu, Mark Palatucci, and Jian Zhang. Blockwise coordinate descent procedures for the multitask lasso, with applications to neural semantic basis discovery. In Proceedings of the 26th Annual International Conference on Machine Learning, pp. 649–656, 2009. + +Han Liu, Lie Wang, and Tuo Zhao. Calibrated multivariate regression with application to neural semantic basis discovery. Journal of machine learning research: JMLR, 16:1579, 2015. + +Andreas Maurer, Massimiliano Pontil, and Bernardino Romera-Paredes. The benefit of multitask representation learning. The Journal of Machine Learning Research, 17(1):2853–2884, 2016. + +Daniel McNamara and Maria-Florina Balcan. Risk bounds for transferring representations with and without fine-tuning. In Proceedings of the 34th International Conference on Machine LearningVolume 70, pp. 2373–2381. JMLR. org, 2017. + +A. Nichol and J. Schulman. Reptile: a scalable metalearning algorithm. arXiv preprint arXiv:1803.02999, 2, 2018. + +Alex Nichol, Joshua Achiam, and John Schulman. On first-order meta-learning algorithms. arXiv preprint arXiv:1803.02999, 2018. + +Aniruddh Raghu, Maithra Raghu, Samy Bengio, and Oriol Vinyals. Rapid learning or feature reuse? towards understanding the effectiveness of maml. In International Conference on Learning Representations, 2020. URL https://openreview.net/forum?id=rkgMkCEtPB. + +Aravind Rajeswaran, Chelsea Finn, Sham M Kakade, and Sergey Levine. Meta-learning with implicit gradients. In Advances in Neural Information Processing Systems, pp. 113–124, 2019. + +S. Ravi and H. Larochelle. Optimization as a model for few-shot learning. 2017. + +M. Ren, E. Triantafillou, S. Ravi, J. Snell, K. Swersky, J. Tenenbaum, H. Larochelle, and R. Zemel. Meta-learning for semi-supervised few-shot classification. arXiv preprint arXiv:1803.00676, 2018. + +Sebastian Ruder. An overview of multi-task learning in deep neural networks. arXiv preprint arXiv:1706.05098, 2017. + +O. Russakovsky, J. Deng, H. Su, J. Krause, S. Satheesh, S. Ma, Z. Huang, A. Karpathy, A. Khosla, and M. Bernstein. Imagenet large scale visual recognition challenge. 115(3):211–252, 2015. + +Nikunj Saunshi, Yi Zhang, Mikhail Khodak, and Sanjeev Arora. A sample complexity separation between non-convex and convex meta-learning. arXiv preprint arXiv:2002.11172, 2020. + +Jurgen Schmidhuber. ¨ Evolutionary principles in self-referential learning, or on learning how to learn: the meta-meta-... hook. PhD thesis, Technische Universitat M¨ unchen, 1987. ¨ + +J. Snell, K. Swersky, and R. Zemel. Prototypical networks for few-shot learning. pp. 4077–4087, 2017. + +Sebastian Thrun and Lorien Pratt. Learning to Learn: Introduction and Overview, pp. 3–17. Springer US, Boston, MA, 1998. ISBN 978-1-4615-5529-2. doi: 10.1007/978-1-4615-5529-2 1. URL https://doi.org/10.1007/978-1-4615-5529-2_1. + +Nilesh Tripuraneni, Chi Jin, and Michael I Jordan. Provable meta-learning of linear representations. arXiv preprint arXiv:2002.11684, 2020a. + +Nilesh Tripuraneni, Michael I Jordan, and Chi Jin. On the theory of transfer learning: The importance of task diversity. arXiv preprint arXiv:2006.11650, 2020b. + +Aad W Van der Vaart. Asymptotic statistics, volume 3. Cambridge university press, 2000. + +Roman Vershynin. High-dimensional probability: An introduction with applications in data science, volume 47. Cambridge university press, 2018. + +Haoxiang Wang, Ruoyu Sun, and Bo Li. Global convergence and induced kernels of gradient-based meta-learning with neural nets. arXiv preprint arXiv:2006.14606, 2020a. + +Xiang Wang, Shuai Yuan, Chenwei Wu, and Rong Ge. Guarantees for tuning the step size using a learning-to-learn approach. arXiv preprint arXiv:2006.16495, 2020b. + +Yujia Xie, Haoming Jiang, Feng Liu, Tuo Zhao, and Hongyuan Zha. Meta learning with relational information for short sequences. In Advances in Neural Information Processing Systems, pp. 9904–9915, 2019. + +Pan Zhou, Xiaotong Yuan, Huan Xu, Shuicheng Yan, and Jiashi Feng. Efficient meta learning via minibatch proximal update. In Advances in Neural Information Processing Systems, pp. 1534– 1544, 2019. + +# A PROOFS FOR SECTION 3 + +# A.1 DETAILED INTRODUCTION ON ASYMPTOTIC ANALYSIS + +Here we provide more details on the asymptotic analysis framework sketched in Section 2.1. + +In typical scenarios, for consistent ERMs, the limiting distribution of $\widehat { \mathbf { w } } _ { 0 , T }$ is asymptotically normal with a known covariance matrix, as is characterized in the following classical result (see, e.g. Van der Vaart (2000, Theorem 5.21) and also Liang (2016)). + +Proposition 6 (Asymptotic normality and excess risk of ERMs). Assume the population minimizer $\mathbf { w } _ { 0 , \star }$ is unique and the ERM $\widehat { \mathbf { w } } _ { 0 , T }$ is consistent (i.e. it converges to $\mathbf { w } _ { 0 , \star }$ in probability as $T \to \infty$ ). Further assume the following regularity conditions: + +(a) There exists some random variable $A _ { t } = A ( p _ { t } , \mathbf { X } _ { t } , \mathbf { y } _ { t } )$ such that $\mathbb { E } [ A _ { t } ^ { 2 } ] < \infty$ and + +$$ +\| \nabla \ell _ { t } ( \mathbf { w } _ { 1 } ) - \nabla \ell _ { t } ( \mathbf { w } _ { 2 } ) \| \leq A _ { t } \| \mathbf { w } _ { 1 } - \mathbf { w } _ { 2 } \| +$$ + +for all $\mathbf { w } _ { 1 } , \mathbf { w } _ { 2 } \in \mathbb { R } ^ { d }$ ; + +$$ +\mathbb { E } [ \| \nabla \ell _ { t } ( \mathbf { w } _ { 0 , \star } ) \| ^ { 2 } ] < \infty ; +$$ + +(c) $L$ is twice-differentiable with $\nabla ^ { 2 } L ( \mathbf { w } _ { 0 , \star } ) \succ \mathbf { 0 }$ , + +then the ERM $\widehat { \mathbf { w } } _ { 0 , T }$ is asymptotically normally distributed, with + +$$ +\begin{array} { r l } & { \sqrt { T } \cdot ( \widehat { \mathbf { w } } _ { 0 , T } - \mathbf { w } _ { 0 , \star } ) \stackrel { d } { } \mathsf { N } \big ( \mathbf { 0 } , \nabla ^ { 2 } L ( \mathbf { w } _ { 0 , \star } ) ^ { - 1 } \mathrm { C o v } ( \nabla \ell _ { t } ( \mathbf { w } _ { 0 , \star } ) ) \nabla ^ { 2 } L ( \mathbf { w } _ { 0 , \star } ) ^ { - 1 } \big ) = : P _ { \mathbf { w } } , } \\ & { T \cdot ( L ( \widehat { \mathbf { w } } _ { 0 , T } ) - L ( \mathbf { w } _ { 0 , \star } ) ) \stackrel { d } { } \Delta ^ { \top } \nabla ^ { 2 } L ( \mathbf { w } _ { 0 , \star } ) \Delta \quad \mathrm { w h e r e } \Delta \sim P _ { \mathbf { w } } . } \end{array} +$$ + +where $\overset { d } { \to }$ denotes convergence in distribution and $\ell _ { t } : \mathbb { R } ^ { d } \to \mathbb { R }$ is the loss function on a single task. + +When this happens, we define the asymptotic rate of estimation (in MSE loss) and asymptotic excess risk $\widehat { \mathbf { w } } _ { 0 , T }$ as those of its limiting distribution: + +$$ +\begin{array} { r l } & { \mathrm { A s y m M S E } ( \widehat { \mathbf w } _ { 0 , T } ) : = \mathbb { E } _ { \Delta \sim P _ { \mathrm { w } } } \Big [ \big \| \Delta \big \| ^ { 2 } \Big ] = \mathrm { t r } \big ( \nabla ^ { 2 } L ( \mathbf w _ { 0 , \star } ) ^ { - 1 } \mathrm { C o v } ( \nabla \ell _ { t } ( \mathbf w _ { 0 , \star } ) ) \nabla ^ { 2 } L ( \mathbf w _ { 0 , \star } ) ^ { - 1 } \big ) } \\ & { \mathrm { A s y m E x c e s s R i s k } ( \widehat { \mathbf w } _ { 0 , T } ) : = \mathbb { E } _ { \Delta \sim P _ { \mathrm { w } } } \big [ \Delta ^ { \top } \nabla ^ { 2 } L ( \mathbf w _ { 0 , \star } ) \Delta \big ] = \mathrm { t r } \big ( \nabla ^ { 2 } L ( \mathbf w _ { 0 , \star } ) ^ { - 1 } \mathrm { C o v } ( \nabla \ell _ { t } ( \mathbf w _ { 0 , \star } ) ) \big ) . } \end{array} +$$ + +# A.2 PROOF OF PROPOSITION 1 + +Equivalence of test-time risk and training loss for train-val method We first show that + +$$ +L ^ { \mathsf { t r } - \mathsf { v a l } } ( \mathbf { w } _ { 0 } ) = \mathbb { E } [ \ell _ { t } ^ { \mathsf { t r } - \mathsf { v a l } } ( \mathbf { w } _ { 0 } ) ] = L _ { \lambda , n _ { 1 } } ^ { \mathsf { t e s t } } ( \mathbf { w } _ { 0 } ) +$$ + +for all $\mathbf { w } _ { 0 }$ , that is, the population meta-test loss is exactly the same as the population risk of the trainval method. This is straightforward: as the tasks are i.i.d. and $\mathscr { A } _ { \lambda } ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } , \mathbf { y } _ { t } ^ { \mathsf { t r a i n } } )$ is independent of the test points $( \mathbf { X } _ { t } ^ { \mathsf { v a l } } , \bar { \mathbf { y } } _ { t } ^ { \mathsf { v a l } } )$ , we have for any $\mathbf { w } _ { 0 }$ that + +$$ +\begin{array} { r l } & { \quad \mathbb { E } [ \ell _ { t } ^ { \mathrm { t r } - \mathrm { v a l } } ( \mathbf { w } _ { 0 } ) ] = \mathbb { E } _ { p _ { t } \sim \Pi , ( \mathbf { X } _ { t } , \mathbf { y } _ { t } ) \sim p _ { t } } \left[ \frac { 1 } { 2 n _ { 2 } } \left. \mathbf { y } _ { t } ^ { \mathrm { v a l } } - \mathbf { X } _ { t } ^ { \mathrm { v a l } } \mathcal { A } _ { \lambda } \big ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } , \mathbf { y } _ { t } ^ { \mathrm { t r a i n } } \big ) \right. ^ { 2 } \right] } \\ & { = \mathbb { E } _ { p _ { t } \sim \Pi , ( \mathbf { X } _ { t } , \mathbf { y } _ { t } ) \sim p _ { t } } \left[ \frac { 1 } { 2 } \big ( y _ { t , 1 } ^ { \mathrm { v a l } } - \mathbf { x } _ { t , 1 } ^ { \mathrm { v a l } } \mathcal { A } _ { \lambda } \big ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } , \mathbf { y } _ { t } ^ { \mathrm { t r a i n } } \big ) \big ) ^ { 2 } \right] } \\ & { = \mathbb { E } _ { p _ { T + 1 } \sim \Pi , ( \mathbf { X } _ { T + 1 } , \mathbf { y } _ { T + 1 } ) , ( \mathbf { x } ^ { \prime } , y ^ { \prime } ) \overset { \mathrm { i d } } { \sim } p _ { t } } \left[ \frac { 1 } { 2 } \big ( y ^ { \prime } - \mathbf { x } ^ { \prime \top } \mathcal { A } _ { \lambda , n _ { 1 } } \big ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { T + 1 } , \mathbf { y } _ { T + 1 } \big ) \big ) ^ { 2 } \right] } \\ & { = L _ { \lambda , n _ { 1 } } ^ { \mathrm { t e x t } } ( \mathbf { w } _ { 0 } ) . } \end{array} +$$ + +Therefore the train-val method is acutally a valid ERM for the test loss Ltestλ,n , and it remains to show that the train-val method is (itself) consistent. + +Consistency We expand the empirical risk of the train-val method as + +$$ +\begin{array} { r l } & { \hat { L } _ { T } ^ { \mathrm { t r a s a l } } ( \mathbf { w } _ { 0 } ) = \displaystyle \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \frac { 1 } { 2 n _ { 2 } } \left\| \mathbf { y } _ { t } ^ { \mathrm { v a l } } - \mathbf { X } _ { t } ^ { \mathrm { s a l } } \mathcal { A } _ { \lambda } ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } , \mathbf { y } _ { t } ^ { \mathrm { t r a i n } } ) \right\| ^ { 2 } } \\ & { = \displaystyle \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \frac { 1 } { 2 n _ { 2 } } \left\| \mathbf { y } _ { t } ^ { \mathrm { v a l } } - \mathbf { X } _ { t } ^ { \mathrm { v a l } } [ \mathbf { w } _ { 0 } + ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } ( \mathbf { y } _ { t } ^ { \mathrm { t r a i n } } - \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } \mathbf { w } _ { 0 } ) ] \right\| ^ { 2 } } \\ & { = \displaystyle \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \frac { 1 } { 2 n _ { 2 } } \left\| \mathbf { y } _ { t } ^ { \mathrm { v a l } } - \mathbf { X } _ { t } ^ { \mathrm { v a l } } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { y } _ { t } ^ { \mathrm { t r a i n } } - \mathbf { X } _ { t } ^ { \mathrm { v a l } } n _ { 1 } \lambda ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) \right. } \\ & = \displaystyle \frac { 1 } { 2 } \mathbf { w } _ { 0 } ^ { \top } \mathbf { M } _ { T } \mathbf { w } _ { 0 } - \mathbf { w } _ { 0 } ^ { \top } \mathbf { b } _ { T } + \mathrm c o n \end{array} +$$ + +where + +$$ +\begin{array} { r l } & { \displaystyle \mathbf { { d } } _ { T } : = \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \lambda ^ { 2 } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } / n _ { 1 } + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \frac { \mathbf { X } _ { t } ^ { \mathrm { v a l } \top } \mathbf { X } _ { t } ^ { \mathrm { v a l } } } { n _ { 2 } } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } / n _ { 1 } + \lambda \mathbf { I } _ { d } ) ^ { - 1 } , } \\ & \displaystyle _ { \mathcal { N } : = \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \lambda ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } / n _ { 1 } + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \cdot \frac { 1 } { n _ { 2 } } \mathbf { X } _ { t } ^ { \mathrm { v a l } \top } \left( \mathbf { y } _ { t } ^ { \mathrm { v a l } } - \mathbf { X } _ { t } ^ { \mathrm { v a l } } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { v a l } } \right) ^ { - 1 } } \end{array} +$$ + +Noticing that $( { \bf X } _ { t } ^ { \sf t r a i n ^ { \top } } { \bf X } _ { t } ^ { \sf t r a i n } / n _ { 1 } + \lambda { \bf I } _ { d } ) ^ { - 1 } \preceq \lambda ^ { - 1 } { \bf I } _ { d }$ and by the assumption that $\mathbb { E } _ { ( \mathbf { x } , y ) \sim p _ { t } } [ \mathbf { x x } ^ { \top } ] $ $\infty$ , $\mathbb { E } _ { ( \mathbf { x } , y ) \sim p _ { t } } [ \mathbf { x y } ] < \infty$ , we have $\mathbb { E } [ \| \mathbf { M } _ { T } \| ] < \infty$ and $\mathbb { E } [ \| \mathbf { b } _ { T } \| ] < \infty$ . Since the task $p _ { t }$ ’s are i.i.d., by the law of large numbers, we have with probability one that + +$$ +\begin{array} { r l } & { \quad \mathbf { M } _ { T } \to \mathbb { E } [ \mathbf { M } _ { T } ] } \\ & { = \mathbb { E } _ { p _ { t } , ( \mathbf { X } _ { t } , \mathbf { y } _ { t } ) } \left[ \lambda ^ { 2 } ( \mathbf { X } _ { t } ^ { \mathsf { t r a i n } ^ { \top } } \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } / n _ { 1 } + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \frac { \mathbf { X } _ { t } ^ { \mathsf { v a l } ^ { \top } } \mathbf { X } _ { t } ^ { \mathsf { v a l } } } { n _ { 2 } } ( \mathbf { X } _ { t } ^ { \mathsf { t r a i n } ^ { \top } } \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } / n _ { 1 } + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \right] } \\ & { = \mathbb { E } _ { p _ { t } , ( \mathbf { X } _ { t } , \mathbf { y } _ { t } ) } \left[ \lambda ^ { 2 } ( \mathbf { X } _ { t } ^ { \mathsf { t r a i n } ^ { \top } } \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } / n _ { 1 } + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \Sigma _ { t } ( \mathbf { X } _ { t } ^ { \mathsf { t r a i n } ^ { \top } } \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } / n _ { 1 } + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \right] \succ \mathbf { 0 } , } \end{array} +$$ + +(where $\pmb { \Sigma } _ { t } = \mathbb { E } _ { \mathbf { x } \sim p _ { t } } [ \mathbf { x x } ^ { \top } ] \succ \mathbf { 0 } ,$ and + +$$ +\begin{array} { r l } & { \quad \mathbf { b } _ { T } \to \mathbb { E } [ \mathbf { b } _ { T } ] } \\ & { = \mathbb { E } _ { p _ { t } , ( \mathbf { X } _ { t } , \mathbf { y } _ { t } ) } \left[ \boldsymbol { \lambda } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } / n _ { 1 } + \boldsymbol { \lambda } \mathbf { I } _ { d } ) ^ { - 1 } \cdot \frac { 1 } { n _ { 2 } } \mathbf { X } _ { t } ^ { \mathrm { v a l \top } } \left( { \mathbf { y } } _ { t } ^ { \mathrm { v a l } } - \mathbf { X } _ { t } ^ { \mathrm { v a l } } ( { \mathbf { X } } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \boldsymbol { \lambda } \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { X } \right. \right. } \end{array} +$$ + +as $T \to \infty$ . Therefore, by Slutsky’s Theorem, we have + +$$ +\widehat { \mathbf { w } } _ { 0 , T } = \mathbf { M } _ { T } ^ { - 1 } \mathbf { b } _ { T } \mathbb { E } [ \mathbf { M } _ { T } ] ^ { - 1 } \mathbb { E } [ \mathbf { b } _ { T } ] = \underset { \mathbf { w } _ { 0 } } { \arg \operatorname* { m i n } } L ^ { \mathrm { t r } \cdot \mathrm { s a l } } ( \mathbf { w } _ { 0 } ) = \underset { \mathbf { w } _ { 0 } } { \arg \operatorname* { m i n } } L _ { \lambda , n _ { 1 } } ^ { \mathrm { t e s t } } ( \mathbf { w } _ { 0 } ) = \mathbf { w } _ { 0 , \star } ( \lambda , n _ { 1 } ) +$$ + +as $T \to \infty$ . This proves the consistency of the train-val method. + +Asymptotic normality Similar as above, we can write the per-task loss as + +$$ +\ell _ { t } ( { \mathbf { w } } _ { 0 } ) = \frac { 1 } { 2 } \left\| { \mathbf { A } } _ { t } { \mathbf { w } } _ { 0 } - { \mathbf { c } } _ { t } \right\| ^ { 2 } , +$$ + +where + +$$ +\begin{array} { l } { { \displaystyle { \bf A } _ { t } = \frac { \lambda } { \sqrt { n _ { 2 } } } { \bf X } _ { t } ^ { \mathrm { v a l } } ( { \bf X } _ { t } ^ { \mathrm { t r a i n } \top } { \bf X } _ { t } ^ { \mathrm { t r a i n } } / n _ { 1 } + \lambda { \bf I } _ { d } ) ^ { - 1 } } , } \\ { { \displaystyle { \bf c } _ { t } = \frac { 1 } { \sqrt { n _ { 2 } } } \bigg ( { \bf y } _ { t } ^ { \mathrm { v a l } } - { \bf X } _ { t } ^ { \mathrm { v a l } } ( { \bf X } _ { t } ^ { \mathrm { t r a i n } \top } { \bf X } _ { t } ^ { \mathrm { t r a i n } } / n _ { 1 } + \lambda { \bf I } _ { d } ) ^ { - 1 } \frac { 1 } { n _ { 1 } } { \bf X } _ { t } ^ { \mathrm { t r a i n } \top } { \bf y } _ { t } ^ { \mathrm { t r a i n } } \bigg ) } . } \end{array} +$$ + +In order to show the desired asymptotic normality result, it suffices to check the conditions in Proposition 6. First, we have + +$$ +\nabla \ell _ { t } ( \mathbf { w } _ { 0 } ) = \mathbf { A } _ { t } ^ { \top } ( \mathbf { A } _ { t } \mathbf { w } _ { 0 } - \mathbf { c } _ { t } ) . +$$ + +This is Lipschitz in $\mathbf { w } _ { 0 }$ with Lipschitz constant + +$$ +\left. \mathbf { A } _ { t } ^ { \intercal } \mathbf { A } _ { t } \right. _ { \mathrm { o p } } \leq \left. \mathbf { A } _ { t } \right. _ { \mathsf { F r } } ^ { 2 } < \frac { 1 } { n _ { 2 } } \left. \mathbf { X } _ { t } ^ { \mathsf { v a l } } \right. _ { \mathsf { F r } } ^ { 2 } . +$$ + +As $\mathbb { E } _ { \mathbf { x } \sim p _ { t } } [ \left\| \mathbf { x } \right\| ^ { 4 } ] < \infty$ , the above quantity is clearly square integrable, therefore verifying (a). As $\mathbf { w } _ { 0 , \star } = \mathbf { w } _ { 0 , \star } ( \lambda , n _ { 1 } )$ is finite, we can use similar arguments as above to show (b) holds. Finally, we have already seen $L$ is twice-differentiable (since it is quadratic in $\mathbf { w } _ { 0 }$ ) and $\nabla ^ { 2 } L ( \mathbf { w } _ { 0 , \star } ) \succ \mathbf { 0 }$ , which verifies (c). Therefore the conditions of Proposition 6 hold, which yields the desired asymptotic normality result. □ + +# A.3 PROOF OF PROPOSITION 2 + +High-level idea At a high level, this proof proceeds by showing that the train-train method is also consistent to the (populwhich the minimizers of minimizer of is not equal to $L ^ { \mathrm { t r - t r } }$ , of onstructing a simple counter-example on. $L ^ { \mathrm { t r - t r } }$ $L _ { \lambda , n } ^ { \mathsf { t e s t } }$ + +Population minimizers of $L ^ { \mathrm { t r - t r } }$ and $L ^ { \mathsf { t r - v a l } }$ We begin by simplifying the non-splitting risk. We have + +$$ +\begin{array} { r l } & { \displaystyle \ell _ { t } ^ { \mathrm { t r } + \mathrm { r } } ( \mathbf w _ { 0 } ) = \frac { 1 } { 2 n } \left\| \mathbf y _ { t } - \mathbf X _ { t } A _ { \lambda } ( \mathbf w _ { 0 } ; \mathbf X _ { t } , \mathbf y _ { t } ) \right\| ^ { 2 } } \\ & { = \displaystyle \frac { 1 } { 2 n } \left\| \mathbf y _ { t } - \mathbf X _ { t } \big [ \mathbf w _ { 0 } + ( \mathbf X _ { t } ^ { \top } \mathbf X _ { t } + n \lambda \mathbf I _ { d } ) ^ { - 1 } \mathbf X _ { t } ^ { \top } ( \mathbf y _ { t } - \mathbf X _ { t } \mathbf w _ { 0 } ) \big ] \right\| ^ { 2 } } \\ & { = \displaystyle \frac 1 2 \left\| \mathbf A _ { t } \mathbf w _ { 0 } - \mathbf c _ { t } \right\| ^ { 2 } , } \end{array} +$$ + +where + +$$ +\mathbf { A } _ { t } = \frac { 1 } { \sqrt { n } } n \lambda \mathbf { X } _ { t } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } ) ^ { - 1 } \quad \mathrm { a n d } \quad \mathbf { c } _ { t } = \frac { 1 } { \sqrt { n } } \big ( \mathbf { I } _ { n } - \mathbf { X } _ { t } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \big ) \mathbf { y } _ { t } . +$$ + +Using similar arguments as in the proof of Proposition 1 (Appendix A.2), we see that the traintrain method $\widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r - t r }$ converges with probability one to the minimizer of the pouplation risk $L ^ { \mathrm { t r - t r } }$ , which is + +$$ +\begin{array} { r l } & { \mathbf { v } _ { 0 , \star } ^ { \mathsf { t r } \cdot \mathsf { t r } } = \underset { \mathbf { w } _ { 0 } } { \operatorname { a r g m i n } } L ^ { \mathsf { t r } \cdot \mathsf { t r } } ( \mathbf { w } _ { 0 } ) = \big ( \mathbb { E } [ \mathbf { A } _ { t } ^ { \top } \mathbf { A } _ { t } ] \big ) ^ { - 1 } \mathbb { E } [ \mathbf { A } _ { t } ^ { \top } \mathbf { c } _ { t } ] } \\ & { = \mathbb { E } \bigg [ \lambda ^ { 2 } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } ) ^ { - 2 } \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } } { n } \bigg ] ^ { - 1 } \cdot \mathbb { E } \bigg [ \frac { 1 } { n } \lambda \big ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } \big ) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } ( \mathbf { I } _ { n } - \mathbf { X } _ { t } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } ) ^ { - 1 } \big ) } \\ & { = \mathbb { E } \bigg [ \lambda ^ { 2 } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } ) ^ { - 2 } \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } } { n } \bigg ] ^ { - 1 } \cdot \mathbb { E } \bigg [ \lambda ^ { 2 } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } ) ^ { - 2 } \frac { 1 } { n } \mathbf { X } _ { t } ^ { \top } \mathbf { y } _ { t } \bigg ] . } \end{array} +$$ + +On the other hand, recall from Proposition 1 ((8) and (9)) that the population minimizer of $L _ { \lambda , n } ^ { \mathsf { t e s t } }$ + +$$ +\begin{array} { r l } & { \mathbf { w } _ { 0 , \star } ( \lambda , n ) = \underset { \mathbf { w } _ { 0 } } { \mathrm { a r g } } \underset { \mathbf { w } _ { 0 } } { \mathrm { m i n } } L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \mathbf { w } _ { 0 } ) } \\ & { = \mathbb { E } \big [ \lambda ^ { 2 } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \Sigma _ { t } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \big ] ^ { - 1 } \cdot \Big \{ \lambda \mathbb { E } \big [ ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \big ] \mathbb { E } _ { p _ { t } , ( \mathbf { x } ^ { \prime } , y ^ { \prime } ) \sim p _ { t } } [ \Xi ] \big \} } \\ & { \phantom { = } - \lambda \mathbb { E } \bigg [ ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \Sigma _ { t } ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n + \lambda \mathbf { I } _ { d } ) ^ { - 1 } \frac { 1 } { n } \mathbf { X } _ { t } ^ { \top } \mathbf { y } _ { t } \bigg ] \Big \} . } \end{array} +$$ + +Construction of the counter-example We now construct a distribution for which (10) is not equal to (11). Let $d = 1$ and let all $p _ { t }$ be the following distribution: + +$$ +p _ { t } : ( x _ { t , i } , y _ { t , i } ) = { \left\{ \begin{array} { l l } { ( 1 , 3 ) { \mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 ; } \\ { ( 3 , - 1 ) { \mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 . } \end{array} \right. } +$$ + +Clearly, we have $\Sigma _ { t } = 5$ $= 5 , s _ { t } : = \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } / n \in [ 1 , 9 ]$ , and $\mathbb { E } _ { x ^ { \prime } , y ^ { \prime } \sim p _ { t } } [ x ^ { \prime } y ^ { \prime } ] = 0$ . Therefore we have + +$$ +\mathbf { w } _ { 0 , \star } ^ { \mathrm { t r - t r } } = \mathbb { E } \left[ ( s _ { t } + \lambda ) ^ { - 2 } s _ { t } \right] ^ { - 1 } \cdot \mathbb { E } \left[ ( s _ { t } + \lambda ) ^ { - 2 } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \right] , +$$ + +and + +$$ +\begin{array} { l } { { \displaystyle { \bf w } _ { 0 , \star } ( \lambda , n ) = - \mathbb { E } \big [ 5 \lambda ^ { 2 } ( s _ { t } + \lambda ) ^ { - 2 } \big ] ^ { - 1 } \cdot \mathbb { E } \Bigg [ 5 \lambda ( s _ { t } + \lambda ) ^ { - 2 } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \Bigg ] } } \\ { { \displaystyle = - \mathbb { E } \big [ \lambda ( s _ { t } + \lambda ) ^ { - 2 } \big ] ^ { - 1 } \cdot \mathbb { E } \Bigg [ ( s _ { t } + \lambda ) ^ { - 2 } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \Bigg ] . } } \end{array} +$$ + +We now show that $\mathbf { w } _ { 0 , \star } ^ { \sf t r - t r } \neq \mathbf { w } _ { 0 , \star } ( \lambda , n )$ by showing that + +$$ +\mathbb { E } \Bigg [ \big ( s _ { t } + \lambda \big ) ^ { - 2 } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \Bigg ] = \mathbb { E } \Bigg [ \frac { x _ { t , 1 } y _ { t , 1 } } { \big ( s _ { t } + \lambda \big ) ^ { 2 } } \Bigg ] \neq 0 +$$ + +for any $\lambda > 0$ . Indeed, conditioning on $( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 )$ , we know that the sum-of-squares in $s _ { t }$ has one term that equals 1, and all others i.i.d. being 1 or 9 with probability one half. On the other hand, if we condition on $( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 )$ , then we know the sum in $s _ { t }$ has one term that equals 9 and all others i.i.d.. This means that the negative contribution in the expectation is smaller than the positive contribution, in other words + +$$ +\begin{array} { r l r } & { } & { \mathbb { E } \bigg [ \frac { x _ { t , 1 } y _ { t , 1 } } { ( s _ { t } + \lambda ) ^ { 2 } } \bigg ] = \frac { 1 } { 2 } \cdot 3 \mathbb { E } \bigg [ \frac { 1 } { ( s _ { t } + \lambda ) ^ { 2 } } \bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 ) \bigg ] } \\ & { } & { \quad + \frac { 1 } { 2 } \cdot - 3 \mathbb { E } \bigg [ \frac { 1 } { ( s _ { t } + \lambda ) ^ { 2 } } \bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 ) \bigg ] > 0 . } \end{array} +$$ + +This shows $\mathbf { w } _ { 0 , \star } ^ { \sf t r - t r } \neq \mathbf { w } _ { 0 , \star } ( \lambda , n )$ and consequently the $\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } }$ does not converge to $\mathbf { w } _ { 0 , \star } ( \lambda , n )$ and the difference is bounded away from zero as . + +Finally, for this distribution, the risk $L _ { \lambda , n } ^ { \mathsf { t e s t } } ( \mathbf { w } _ { 0 } )$ is strongly convex (since it has a positive second derivative), this further implies that $L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } ) - L _ { \lambda , n } ^ { \mathrm { t e s t } } ( \mathbf { w } _ { 0 , \star } ( \lambda , n ) )$ is bounded away from zero almost surely as $T \to \infty$ . + +# B PROOFS FOR SECTION 4 + +# B.1 PROOF OF THEOREM 3 + +We first show that $\mathbf { w } _ { 0 , \star } = \mathbb { E } _ { \mathbf { w } _ { t } \sim \Pi } [ \mathbf { w } _ { t } ]$ is a global optimizer for $L ^ { \mathrm { t r - t r } }$ and $L ^ { \mathsf { t r - v a l } }$ with any regularization coefficient $\lambda > 0$ , any $n$ , and any split $( n _ { 1 } , n _ { 2 } )$ . To do this, it suffices to check that the gradient at $\mathbf { w } _ { 0 , \star }$ is zero and the Hessian is positive definite (PD). + +Optimality of $\mathbf { w } _ { 0 , \star }$ in both $L ^ { \mathrm { t r - t r } }$ and $L ^ { \mathrm { t r - v a l } }$ . We first look at $L ^ { \mathrm { t r - t r } }$ : for any $\mathbf { w } _ { 0 } \in \mathbb { R } ^ { d }$ we have + +$$ +\begin{array} { r l } & { L ^ { \mathrm { t r } \cdot \mathrm { t r } } ( \mathbf w _ { 0 } ) = \mathbb { E } [ \ell _ { t } ^ { \mathrm { t r } \cdot \mathrm { t r } } ( \mathbf w _ { 0 } ) ] } \\ & { \quad \quad \quad = \frac { 1 } { 2 n } \mathbb { E } \left[ \left\| \mathbf { X } _ { t } \mathbf { w } _ { t } - \mathbf { X } _ { t } \left[ \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \left( \mathbf { X } _ { t } \mathbf { w } _ { t } - \mathbf { X } _ { t } \mathbf { w } _ { 0 } \right) + \mathbf { w } _ { 0 } \right] \right\| ^ { 2 } \right] } \\ & { \quad \quad \quad = \frac { 1 } { 2 n } \mathbb { E } \left[ \left\| \mathbf { X } _ { t } \left( \mathbf { I } _ { d } - \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \right) \left( \mathbf { w } _ { t } - \mathbf { w } _ { 0 } \right) \right\| ^ { 2 } \right] . } \end{array} +$$ + +Similarly, $L ^ { \mathrm { t r - v a l } }$ can be written as + +$$ +\begin{array} { r l r } & { \quad L ^ { \mathrm { t r } \cdot \mathrm { s c a l } } ( \mathbf { w } _ { 0 } ) } & { ( 1 3 ) } \\ & { = \mathbb { E } \bigl [ \phi _ { t } ^ { \mathrm { r } \cdot \mathrm { s c a l } } ( \mathbf { w } _ { 0 } ) \bigr ] } \\ & { = \displaystyle \frac { 1 } { 2 n _ { 2 } } \mathbb { E } \left[ \left\| \mathbf { X } _ { t } ^ { \mathrm { s c a l } } \mathbf { w } _ { t } - \mathbf { X } _ { t } ^ { \mathrm { v a l } } \left[ \left( ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } \right) ^ { - 1 } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \left( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } \mathbf { w } _ { t } - \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } \mathbf { w } _ { 0 } \right) + \mathbf { w } _ { 0 } \right] \right\| ^ { 2 } \right. } \\ & { = \displaystyle \frac { 1 } { 2 n _ { 2 } } \mathbb { E } \left[ \left\| \mathbf { X } _ { t } ^ { \mathrm { v a l } } \left( \mathbf { I } _ { d } - \left( ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } \right) ^ { - 1 } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } \right) ( \mathbf { w } _ { t } - \mathbf { w } _ { 0 } ) \right\| ^ { 2 } \right] . } & { ( 1 4 ) } \end{array} +$$ + +We denote + +$$ +\begin{array} { r l } & { \mathbf { M } _ { t } ^ { \mathrm { t r - t r } } = \mathbf { X } _ { t } \left( \mathbf { I } _ { d } - \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \right) \quad \mathrm { a n d } } \\ & { \mathbf { M } _ { t } ^ { \mathrm { t r - v a l } } = \mathbf { X } _ { t } ^ { \mathrm { v a l } } \left( \mathbf { I } _ { d } - \left( ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \left( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } \right) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } \right) } \end{array} +$$ + +to simplify the notations in (12) and (14). We take gradient of $L ^ { \mathrm { t r - t r } }$ and $L ^ { \mathsf { t r - v a l } }$ with respect to $\mathbf { w } _ { 0 }$ + +$$ +\begin{array} { r l } & { \nabla _ { \mathbf { w } _ { 0 } } L ^ { \mathrm { t r - t r } } ( \mathbf { w } _ { 0 } ) = - \displaystyle \frac { 1 } { n } \mathbb { E } \left[ ( \mathbf { M } _ { t } ^ { \mathrm { t r - t r } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathrm { t r - t r } } ( \mathbf { w } _ { t } - \mathbf { w } _ { 0 } ) \right] , } \\ & { \nabla _ { \mathbf { w } _ { 0 } } L ^ { \mathrm { t r - v a l } } ( \mathbf { w } _ { 0 } ) = - \displaystyle \frac { 1 } { n _ { 2 } } \mathbb { E } \left[ ( \mathbf { M } _ { t } ^ { \mathrm { t r - v a l } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathrm { t r - v a l } } ( \mathbf { w } _ { t } - \mathbf { w } _ { 0 } ) \right] . } \end{array} +$$ + +Substituting $\mathbf { w } _ { 0 , \star }$ into (17) and taking expectation, we deduce + +$$ +\nabla _ { \mathbf { w } _ { 0 } } L ^ { \mathrm { t r - t r } } ( \mathbf { w } _ { 0 , \star } ) = - \frac { 1 } { n } \mathbb { E } \left[ ( \mathbf { M } _ { t } ^ { \mathrm { t r - t r } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathrm { t r - t r } } ( \mathbf { w } _ { t } - \mathbf { w } _ { 0 , \star } ) \right] = \mathbf { 0 } . +$$ + +To see this, observe that by definition $\mathbb { E } [ \mathbf { w } _ { t } - \mathbf { w } _ { 0 , \star } ] = \mathbf { 0 }$ . Combining with $\mathbf { w } _ { t }$ being generated independently of $\mathbf { X } _ { t }$ , we have the first term in RHS of (19) vanish. In addition, $\mathbf { z } _ { t }$ is independent white noise, therefore, the second term in RHS of (19) also vanishes. Following the same argument, we can show + +$$ +\nabla _ { \mathbf { w } _ { 0 } } L ^ { \mathsf { t r - v a l } } ( \mathbf { w } _ { 0 , \star } ) = \mathbf { 0 } , +$$ + +since $\mathbf { X } _ { t } ^ { \prime }$ is also independent of $\mathbf { w } _ { t }$ . The above reasonings indicates that $\mathbf { w } _ { 0 , \star }$ is a stationary point of both $L ^ { \mathrm { t r - t r } }$ and $L ^ { \mathsf { t r - v a l } }$ . The remaining step is to check $\nabla _ { \mathbf { w } _ { 0 } } L ^ { \mathsf { t r - t r } } \bigl ( \mathbf { w } _ { 0 , \star } \bigr )$ and $\nabla _ { \mathbf { w } _ { 0 } } L ^ { \mathsf { t r - v a l } } \left( \mathbf { w } _ { 0 , \star } \right)$ are PD. From (17) and (18), we derive respectively the hessian of $L ^ { \mathrm { t r - t r } }$ and $L ^ { \mathrm { t r - v a l } }$ as + +$$ +\begin{array} { r l } & { \nabla _ { \mathbf { w } _ { 0 } } ^ { 2 } L ^ { \mathsf { t r - t r } } ( \mathbf { w } _ { 0 , \star } ) = \displaystyle \frac { 1 } { n } \mathbb { E } [ ( \mathbf { M } _ { t } ^ { \mathsf { t r - t r } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathsf { t r - t r } } ] \quad \mathrm { a n d } } \\ & { \nabla _ { \mathbf { w } _ { 0 } } ^ { 2 } L ^ { \mathsf { t r - v a l } } ( \mathbf { w } _ { 0 , \star } ) = \displaystyle \frac { 1 } { n _ { 2 } } \mathbb { E } [ ( \mathbf { M } _ { t } ^ { \mathsf { t r - v a l } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathsf { t r - v a l } } ] . } \end{array} +$$ + +Let $\textbf { v } \in \mathbb { R } ^ { d }$ be any nonzero vector, we check $\mathbf { v } ^ { \top } \nabla _ { \mathbf { w } _ { 0 } } ^ { 2 } L ^ { \mathsf { t r - t r } } ( \mathbf { w } _ { 0 , \star } ) \mathbf { v } \ > \ \mathrm { ~ 0 ~ }$ . A key observation is that $\left( \mathbf { I } _ { d } - \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \right)$ is positive definite for any $\lambda \ \ne \ 0$ . To see this, let $\sigma _ { 1 } ~ \geq ~ \cdots ~ \geq ~ \sigma _ { d }$ be eigenvalues of $\textstyle { \frac { 1 } { n } } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t }$ , some algebra yields the eigenvalues of $\left( \mathbf { I } _ { d } - \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \right)$ are $\frac { \lambda } { \lambda + \sigma _ { i } } > 0$ for $\lambda \neq 0$ and $i = 1 , \ldots , d$ . Hence, we deduce + +$$ +\mathbf { v } ^ { \top } \nabla _ { \mathbf { w } _ { 0 } } ^ { 2 } L ^ { \mathrm { t r - t r } } ( \mathbf { w } _ { 0 , \star } ) \mathbf { v } = \frac { 1 } { n } \mathbb { E } [ \mathbf { v } ^ { \top } \mathbf { X } _ { t } ^ { \top } \left( \mathbf { I } _ { d } - \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \right) ^ { 2 } \mathbf { X } _ { t } \mathbf { v } ] > 0 , +$$ + +since $\mathbf { X } _ { t }$ is isotropic (an explicit computation of the hessian matrix can be found in Appendix B.2). As a consequence, we have shown that $\mathbf { w } _ { 0 , \star }$ is a global optimum of $L ^ { \mathrm { t r - t r } }$ . The same argument applies to $L ^ { \mathrm { t r - v a l } }$ , and the proof is complete. + +Consistency of w {tr-tr,tr-val}0,T . To check the consistency, we need to verify the conditions (a) – (c) in + +For condition (a), we derive from (17) and (18) that + +$$ +\left. \nabla \ell _ { t } ^ { \{ \mathrm { t r - t r , t r { v a l } } \} } ( \mathbf { w } _ { 1 } ) - \nabla \ell _ { t } ^ { \{ \mathrm { t r - t r , t r { v a l } \} } } ( \mathbf { w } _ { 2 } ) \right. \leq \frac { 1 } { n } \left. ( \mathbf { M } _ { t } ^ { \{ \mathrm { t r - t r , t r { v a l } \} } } ) ^ { \top } \mathbf { M } _ { t } ^ { \{ \mathrm { t r - t r , t r { v a l } \} } } \right. _ { \mathrm { o p } } \left. \mathbf { w } _ { 1 } - \mathbf { w } _ { 2 } \right. , +$$ + +where $n$ should be replaced by $n _ { 2 }$ for the split method (we slightly abuse the notation for simplicity). It suffices to show $\mathbb { E } \left[ \left. ( \mathbf { M } _ { t } ^ { \{ \mathsf { t r } - \mathsf { t r } , \mathsf { t r } - \mathsf { v a l } \} } ) ^ { \top } \mathbf { M } _ { t } ^ { \{ \mathsf { t r } - \mathsf { t r } , \mathsf { t r } - \mathsf { v a l } \} } \right. _ { \mathrm { o p } } \right] < \infty$ , which follows from the same argument in the proof of Proposition 1. In particular, we know $\mathbf { 0 } \preceq \mathbf { I } _ { d } - \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \preceq \mathbf { I } _ { d }$ and $\mathbb { E } [ \left. \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \right. _ { \mathrm { o p } } ] ~ < ~ \infty$ since $\mathbf { X } _ { t }$ is Gaussian. As a consequence, for the no-split method, we have $\mathbb { E } \left[ \big \lVert ( \mathbf { M } _ { t } ^ { \mathsf { t r } - \mathrm { t r } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathrm { t r } - \mathrm { t r } } \big \rVert _ { \mathrm { o p } } ^ { 2 } \right] \ < \ \infty$ . For the split method, we also have $\mathrm { ~ { ~ \bf ~ 0 ~ } ~ } \preceq \mathrm { ~ \bf ~ I } _ { d } \mathrm { ~ - ~ }$ $\left( ( \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } + n \lambda \mathbf { I } _ { d } \right) ^ { - 1 } ( \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathsf { t r a i n } } \preceq \mathbf { I } _ { d }$ and $\mathbb { E } [ \left. ( \mathbf { X } _ { t } ^ { \mathsf { v a l } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathsf { v a l } } \right. _ { \mathrm { o p } } ] < \infty$ , which implies $\mathbb { E } \left[ \left. ( \mathbf { M } _ { t } ^ { \mathsf { t r } - \mathsf { v a l } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathsf { t r } - \mathsf { v a l } } \right. _ { \mathrm { o p } } ^ { 2 } \right] < \infty .$ + +For condition (b), using a similar argument in condition (a) and combining with $R ^ { 2 } = \mathbb { E } [ \| \mathbf { w } _ { 0 , \star } -$ $\mathbf { w } _ { t } \| ^ { 2 } \|$ , we have $\mathbb { E } [ \| \nabla \ell _ { t } ^ { \{ \mathrm { t r } - \mathrm { t r } , \mathrm { t r } - \mathrm { v a l } \} } ( \mathbf { w } _ { 0 , \star } ) \| ^ { 2 } ] < \infty .$ . + +For condition (c), using (20), we directly verify that $L ^ { \{ \mathrm { t r - t r , t r - v a l } \} }$ is twice-differentiable and $\nabla ^ { 2 } L ^ { \{ \mathrm { t r - t r , t r - v a l } \} } \succ \mathbf { 0 }$ . + +# B.2 PROOF OF LEMMA 5 + +Proof. In this section we prove Lemma 5. Using the the asymptotic normality in Proposition 6, the asymptotic covariance is $\nabla ^ { - 2 } L ^ { \{ \mathrm { t r } \mathrm { - } \mathrm { t r } , \mathrm { t r } \mathrm { - } \mathsf { v a l } \} } \mathrm { C o v } \big [ \nabla \ell _ { t } ^ { \{ \mathrm { t r } \mathrm { - } \mathrm { t r } , \mathrm { t r } \mathrm { - } \mathsf { v a l } \} } \big ] \big \nabla ^ { - 2 } L ^ { \{ \mathrm { t r } \mathrm { - } \mathrm { t r } , \mathrm { t r } \mathrm { - } \mathsf { v a l } \} } .$ . Therefore, in the following, we only need to find ∇−2L{tr-tr,tr-val} and Cov[∇\`{tr-tr,tr-val}t ]. + +• Asymptotic variance of $\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } }$ . We begin with the computation of the expected Hessian $\begin{array} { r } { \frac { 1 } { n } \mathbb { E } [ ( \mathbf { M } _ { t } ^ { \mathsf { t r - t r } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathsf { t r - t r } } ] } \end{array}$ . + +$$ +\begin{array} { r l } & { \quad \mathbb { E } \big [ \big ( \mathbf { M } _ { t } ^ { \mathsf { t r } \cdot \mathsf { r } } \big ) ^ { \top } \mathbf { M } _ { t } ^ { \mathsf { t r } \cdot \mathsf { t r } } \big ] } \\ & { = \mathbb { E } \left[ \Big ( \mathbf { I } _ { d } - \big ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \big ) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \Big ) ^ { \top } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \left( \mathbf { I } _ { d } - \big ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + n \lambda \mathbf { I } _ { d } \big ) ^ { - 1 } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } \right) \right] } \\ & { \overset { ( i ) } { = } \mathbb { E } \left[ \mathbf { V } _ { t } \left( \mathbf { I } _ { d } - ( \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } + n \lambda \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } \right) ^ { \top } \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } \left( \mathbf { I } _ { d } - ( \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } + n \lambda \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } \right) \mathbf { V } _ { t } ^ { \top } \right] , } \end{array} +$$ + +where the equality $( i )$ is obtained by plugging in the SVD of $\mathbf { X } _ { t } = \mathbf { U } _ { t } \mathbf { D } _ { t } \mathbf { V } _ { t } ^ { \top }$ with $\mathbf { U } _ { t } \in \mathbb { R } ^ { n \times n }$ , $\mathbf { D } _ { t } \in \mathbb { R } ^ { n \times d }$ , and $\dot { \mathbf { V } _ { t } } \in \mathbb { R } ^ { d \times d }$ . A key observation is that $\mathbf { U } _ { t }$ and $\mathbf { V } _ { t }$ are independent, since $\mathbf { X } _ { t }$ is isotropic, i.e., homogeneous in each orthogonal direction. To see this, for any orthogonal matrices $\mathbf { Q } \in \mathbb { \bar { R } } ^ { n \times n }$ and $\mathbf { P } \in \mathbb { R } ^ { d \times d }$ , we know $\mathbf { X } _ { t }$ and $\mathbf { Q } \mathbf { X } _ { t } \mathbf { P } ^ { \top }$ share the same distribution. Moreover, we have $\mathbf { Q } \mathbf { X } _ { t } \mathbf { P } ^ { \top } = ( \mathbf { Q } \mathbf { U } _ { t } ) \mathbf { D } _ { t } ( \mathbf { P } \mathbf { V } _ { t } ) ^ { \top }$ as the SVD. This shows that the left and right singular matrices are independent and both uniformly distributed on all the orthogonal matrices of the corresponding dimensions $\mathbb { R } ^ { n \times n }$ and $\mathbb { R } ^ { d \times d }$ , respectively). + +Recall that we denote $\sigma _ { 1 } ^ { ( n ) } \geq \cdots \geq \sigma _ { d } ^ { ( n ) }$ as the eigenvalues of $\textstyle { \frac { 1 } { n } } \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t }$ . Thus, we have $\mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } =$ Diag(nσ(n)1 , . $\mathrm { D i a g } ( n \sigma _ { 1 } ^ { ( n ) } , \dots , n \sigma _ { d } ^ { ( n ) } )$ σ(n)d ). We can further simplify (21) as + +$$ +\begin{array} { r l } & { \quad \mathbb { E } \left[ \mathbf { V } _ { t } \left( \mathbf { I } _ { d } - ( \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } + n \lambda \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } \right) ^ { \top } \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } \left( \mathbf { I } _ { d } - ( \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } + n \lambda \mathbf { I } _ { d } ) ^ { - 1 } \mathbf { D } _ { t } ^ { \top } \mathbf { D } _ { t } \right) \mathbf { V } _ { t } ^ { \top } \right] } \\ & { = \mathbb { E } \left[ \mathbf { V } _ { t } \mathrm { D i a g } \left( \frac { n \lambda ^ { 2 } \sigma _ { 1 } ^ { ( n ) } } { ( \sigma _ { 1 } ^ { ( n ) } + \lambda ) ^ { 2 } } , \dots , \frac { n \lambda ^ { 2 } \sigma _ { d } ^ { ( n ) } } { ( \sigma _ { d } ^ { ( n ) } + \lambda ) ^ { 2 } } \right) \mathbf { V } _ { t } ^ { \top } \right] } \\ & { = \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \frac { n \lambda ^ { 2 } \sigma _ { i } ^ { ( n ) } } { ( \sigma _ { i } ^ { ( n ) } + \lambda ) ^ { 2 } } \mathbf { v } _ { t , i } \mathbf { v } _ { t , i } ^ { \top } \right] . } \end{array} +$$ + +We will utilize the isotropicity of $\mathbf { X } _ { t }$ to find (22). Recall that we have shown that $\mathbf { V } _ { t }$ is uniform on all the orthogonal matrices. Let $\mathbf { P } \in \mathbb { R } ^ { d \times d }$ be any permutation matrix, then $\mathbf { V } _ { t } \mathbf { P }$ has the same distribution as $\mathbf { V } _ { t }$ . For this permuted data matrix $\mathbf { V } _ { t } \mathbf { P }$ , (22) becomes + +$$ +\mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \frac { n \lambda ^ { 2 } \sigma _ { i } ^ { ( n ) } } { ( \sigma _ { i } ^ { ( n ) } + \lambda ) ^ { 2 } } \mathbf { v } _ { t , \tau _ { p } ( i ) } \mathbf { v } _ { t , \tau _ { p } ( i ) } ^ { \top } \right] \mathrm { w i t h } \tau _ { p } ( i ) \mathrm { d e n o t e s ~ t h e ~ p e r m u t a t i o n ~ o f ~ t h e ~ } i \mathrm { \cdot t h ~ e l e m e n t ~ i n ~ } \tau _ { p } ( i ) \mathrm { d e n s ~ } \tau _ { p } ( i ) \mathrm { d e n s ~ } \tau _ { p } ( i ) . +$$ + +Summing over all the permutations $\mathbf { P }$ (and there are totally $d !$ instances), we deduce + +$$ +\begin{array} { l } { { \displaystyle { d \mathbb { E } [ ( { \bf M } _ { t } ^ { \mathrm { t r u } } ) ^ { \top } { \bf M } _ { t } ^ { \mathrm { t r u } } ; \tau ] } } } \\ { { = \displaystyle { \sum _ { u \ l p \ r m u t a \ n e : \tau } \mathbb { E } \left[ \displaystyle { \sum _ { i = 1 } ^ { d } \frac { \alpha \lambda ^ { 2 } \sigma _ { i } ^ { ( u ) } } { ( \sigma _ { i } ^ { u } ) } } \mathbf { v } _ { t , \tau _ { r } ( i ) } \mathbf { v } _ { t , \tau _ { r } ( i ) } ^ { \top } \right] } } } \\ { { = ( d - 1 ) ! ! \mathbb { E } \left[ \displaystyle { \sum _ { j = 1 } ^ { d } \left[ \displaystyle { \sum _ { i = 1 } ^ { d } \frac { \alpha \lambda ^ { 2 } \sigma _ { i } ^ { ( u ) } } { ( \sigma _ { i } ^ { u } ) } } \right] ^ { \top } \mathbf { v } _ { t , \tau _ { t } ( j ) } \mathbf { v } _ { t , j } ^ { \top } } \right] } } \\ { { = ( d - 1 ) ! \mathbb { E } \left[ \displaystyle { \nabla _ { t } \mathrm { D i a g } \left( \displaystyle { \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } \sigma _ { i } ^ { ( u ) } } { \lambda + \sigma _ { i } ^ { ( u ) } } } \right) ^ { 2 } } \cdots \displaystyle { \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } \sigma _ { i } ^ { ( u ) } } { ( \lambda + \sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \right] \mathbf { V } _ { t } ^ { \top } } } \\ { { = ( d - 1 ) ! \mathbb { E } \left[ \displaystyle { \sum _ { j = 1 } ^ { d } \frac { \lambda ^ { 2 } \sigma _ { i } ^ { ( u ) } } { ( \lambda + \sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \mathbf { V } _ { t } \mathbf { I } _ { t } \mathbf { V } _ { t } ^ { \top } \right] } } \end{array} +$$ + +Dividing $( d - 1 ) !$ ! on both sides of (23) yields + +$$ +\mathbb { E } [ ( \mathbf { M } _ { t } ^ { \mathsf { t r } - \mathsf { t r } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathsf { t r } - \mathsf { t r } } ] = \frac { n } { d } \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } \sigma _ { i } ^ { ( n ) } } { ( \lambda + \sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \right] \mathbf { I } _ { d } . +$$ + +Next, we find the expected covariance matrix $\begin{array} { r } { \frac { 1 } { n ^ { 2 } } \mathbb { E } \big [ \nabla \ell _ { t } ^ { \mathrm { t r - t r } } \big ( \mathbf { w } _ { 0 , \star } \big ) \big ( \nabla \ell _ { t } ^ { \mathrm { t r - t r } } \big ( \mathbf { w } _ { 0 , \star } \big ) \big ) ^ { \top } \big ] , } \end{array}$ . + +$$ +\begin{array} { r l } & { \quad \mathbb { E } [ \nabla \ell _ { t } ^ { \mathrm { t r } \cdot \mathrm { t r } } ( \mathbf { w } _ { 0 , \star } ) ( \nabla \ell _ { t } ^ { \mathrm { r t r } \cdot \mathrm { t r } } ( \mathbf { w } _ { 0 , \star } ) ) ^ { \top } ] } \\ & { = \mathbb { E } [ ( \mathbf { M } _ { t } ^ { \mathrm { t r } \cdot \mathrm { t r } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathrm { t r } \cdot \mathrm { t r } } ( \mathbf { w } _ { 0 , \star } - \mathbf { w } _ { t } ) ( \mathbf { w } _ { 0 , \star } - \mathbf { w } _ { t } ) ^ { \top } ( \mathbf { M } _ { t } ^ { \mathrm { t r } \cdot \mathrm { t r } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathrm { t r } \cdot \mathrm { t r } } ] } \\ & { \stackrel { ( i ) } { = } \mathbb { E } \bigg [ \mathbf { V } _ { t } \mathrm { D i a g } \left( \frac { n \lambda ^ { 2 } \sigma _ { 1 } ^ { ( n ) } } { ( \sigma _ { 1 } ^ { ( n ) } + \lambda ) ^ { 2 } } , \ldots , \frac { n \lambda ^ { 2 } \sigma _ { d } ^ { ( n ) } } { ( \sigma _ { d } ^ { ( n ) } + \lambda ) ^ { 2 } } \right) \mathbf { V } _ { t } ^ { \top } ( \mathbf { w } _ { 0 , \star } - \mathbf { w } _ { t } ) ( \mathbf { w } _ { 0 , \star } - \mathbf { w } _ { t } ) ^ { \top } } \\ & { \qquad \cdot \mathbf { V } _ { t } \mathrm { D i a g } \left( \frac { n \lambda ^ { 2 } \sigma _ { 1 } ^ { ( n ) } } { ( \sigma _ { 1 } ^ { ( n ) } + \lambda ) ^ { 2 } } , \ldots , \frac { n \lambda ^ { 2 } \sigma _ { d } ^ { ( n ) } } { ( \sigma _ { d } ^ { ( n ) } + \lambda ) ^ { 2 } } \right) \mathbf { V } _ { t } ^ { \top } \bigg ] . } \end{array} +$$ + +Here step $( i )$ uses the SVD of $\mathbf { X } _ { t }$ and the computation in (22). Combining (24) and (25), we derive the asymptotic covariance matrix of using $L ^ { \mathrm { t r - t r } }$ as + +$$ +\begin{array} { r l } & { \quad \mathrm { A s y m C o v } ( \widetilde { \mathbf { w } } _ { 0 , T } ^ { t \star \star r } ) } \\ & { = \mathbb { E } [ \nabla ^ { - 2 } \ell _ { t } ^ { t \star r } ] \mathrm { C o v } [ \nabla \ell _ { t } ^ { \mathrm { r r } + t } ( \mathbf { w } _ { 0 , \star } ) ] \mathbb { E } [ \nabla ^ { - 2 } \ell _ { t } ^ { \mathrm { t r } \star r } ] } \\ & { = \displaystyle \frac { d ^ { 2 } } { n ^ { 2 } } \left( \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } \sigma _ { i } ^ { ( n ) } } { ( \lambda + \sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \right] \right) ^ { - 2 } } \\ & { \quad \cdot \mathbb { E } \left[ \mathbf { V } _ { t } \mathrm { D i a g } \left( \displaystyle \frac { n \lambda ^ { 2 } \sigma _ { 1 } ^ { ( n ) } } { ( \sigma _ { 1 } ^ { ( n ) } + \lambda ) ^ { 2 } } , \ldots , \frac { n \lambda ^ { 2 } \sigma _ { d } ^ { ( n ) } } { ( \sigma _ { i } ^ { ( n ) } + \lambda ) ^ { 2 } } \right) \mathbf { V } _ { t } ^ { \top } ( \mathbf { w } _ { 0 , \star } - \mathbf { w } _ { t } ) ( \mathbf { w } _ { 0 , \star } - \mathbf { w } _ { t } ) ^ { \top } \right. } \\ & { \quad \left. \cdot \mathbf { V } _ { t } \mathrm { D i a g } \left( \displaystyle \frac { n \lambda ^ { 2 } \sigma _ { 1 } ^ { ( n ) } } { ( \sigma _ { 1 } ^ { ( n ) } + \lambda ) ^ { 2 } } , \ldots , \frac { n \lambda ^ { 2 } \sigma _ { d } ^ { ( n ) } } { ( \sigma _ { d } ^ { ( n ) } + \lambda ) ^ { 2 } } \right) \mathbf { V } _ { t } ^ { \top } \right] . } \end{array} +$$ + +Taking trace in (26), we deduce + +AsymMSE(wb tr-tr0,T ) + +$$ +\begin{array} { r l } & { \quad _ { 1 } - ( \cdot _ { 2 } + \kappa _ { 3 } \alpha ) \alpha ( \kappa _ { 1 } ( \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } ) ^ { 2 } } \\ & { = \frac { \alpha ^ { 2 } } { \beta ^ { 2 } } ( \kappa [ \frac { \delta } { 1 - \alpha } ( \frac { \kappa _ { 1 } ( \rho _ { 1 } ^ { \varDelta } ) } { ( \lambda + \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\ & { \quad - \kappa ( \kappa [ \kappa _ { 1 } ( \rho _ { 1 } ^ { \varDelta } ) \kappa _ { 1 } ( \frac { \rho _ { 1 } ^ { \varDelta } ( \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } { ( \lambda + \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\ & { \quad \le \frac { \alpha ^ { 2 } } { \beta ^ { 2 } } ( \kappa [ \frac { \delta } { 1 - \alpha } ( \frac { \kappa _ { 1 } ( \rho _ { 1 } ^ { \varDelta } ) } { ( \lambda + \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\ & { \quad \le \frac { \alpha ^ { 2 } } { \beta ^ { 2 } } ( \kappa [ \frac { \delta } { 1 - \alpha } ( \frac { \kappa _ { 1 } ( \rho _ { 1 } ^ { \varDelta } ) } { ( \lambda + \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\ & { \quad \quad \frac { \alpha ^ { 2 } } { \beta ^ { 2 } } ( \kappa [ \frac { \delta } { 1 - \alpha } ( \frac { \kappa _ { 1 } ( \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } { ( \lambda + \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\ & \quad - \frac { \alpha ^ { 2 } } { \beta ^ { 2 } } ( \kappa [ \frac { \delta } { 1 - \alpha } ( \frac { \kappa _ { 1 } ( \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } { ( \lambda + \rho _ { 1 } ^ { \varDelta } ) ^ { 2 } } ) \kappa _ { 1 } ( \mathrm { l o g } _ { \varepsilon } - \mathrm \end{array} +$$ + +where step $( i )$ utilizes the independence between $\mathbf { w } _ { t }$ and $\mathbf { X } _ { t }$ and applies the permutation trick in + +(23) to find E $\begin{array} { r l r } & { } & { \left[ { \bf V } _ { t } \mathrm { D i a g } \left( \frac { n ^ { 2 } \lambda ^ { 4 } ( \sigma _ { 1 } ^ { ( n ) } ) ^ { 2 } } { ( \sigma _ { 1 } ^ { ( n ) } + \lambda ) ^ { 4 } } , \dots , \frac { n ^ { 2 } \lambda ^ { 4 } ( \sigma _ { d } ^ { ( n ) } ) ^ { 2 } } { ( \sigma _ { d } ^ { ( n ) } + \lambda ) ^ { 4 } } \right) { \bf V } _ { t } ^ { \top } \right] . } \end{array}$ + +• Asymptotic variance of $\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - v a l } }$ . Similar to the no-split case, we compute the Hessian $\begin{array} { r } { \frac { 1 } { n _ { 2 } } \mathbb { E } [ \nabla ^ { 2 } \ell _ { t } ^ { \mathsf { t r } - \mathsf { v a l } } ] = \frac { 1 } { n _ { 2 } } \mathbb { E } [ ( \mathbf { M } _ { t } ^ { \mathsf { t r } - \mathsf { v a l } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathsf { t r } - \mathsf { v a l } } ] } \end{array}$ first. + +$$ +\begin{array} { r l } & { \mathbb { E } [ ( \mathbf { M } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { M } _ { t } ^ { \mathrm { t r a i n } } ] } \\ & { = \mathbb { E } \Bigg [ ( \mathbf { I } _ { d } - ( ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) ^ { - 1 } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } ( \mathbf { X } _ { t } ^ { \mathrm { s a } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { s a } } } \\ & { \qquad \cdot ( \mathbf { I } _ { d } - ( ( \mathbf { X } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) ^ { - 1 } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) \Bigg ] } \\ & { \stackrel { ( i ) } { = } n _ { 2 } \mathbb { E } \Bigg [ ( \mathbf { I } _ { d } - ( ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) ^ { - 1 } ( ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } } \\ & { \qquad \cdot ( \mathbf { I } _ { d } - ( ( \mathbf { X } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) ^ { - 1 } ( \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } ) \Bigg ] } \\ & \qquad \cdot ( \mathbf { I } _ { d } - ( ( \mathbf { X } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } + n _ \end{array} +$$ + +where $( i )$ uses the data generating assumption $\mathbb { E } [ ( \mathbf { X } _ { t } ^ { \mathsf { v a l } } ) ^ { \top } \mathbf { X } _ { t . } ^ { \mathsf { v a l } } ] = n _ { 2 } \mathbf { I } _ { d }$ and the independence between $\mathbf { X } _ { t } ^ { \mathsf { t r a i n } }$ and $\mathbf { X } _ { t } ^ { \mathsf { v a l } }$ , and $( i i )$ t follows from the SVD of $\mathbf { X } _ { t } ^ { \mathsf { t r a i n } } = \mathbf { U } _ { t } ^ { \mathsf { t r a i n } } \mathbf { D } _ { t } ^ { \mathsf { t r a i n } } ( \mathbf { V } _ { t } ^ { \mathsf { t r a i n } } ) ^ { \top }$ + +$\sigma _ { 1 } ^ { ( n _ { 1 } ) } \geq \cdots \geq \sigma _ { d } ^ { ( n _ { 1 } ) }$ eigenvalues of . We can now f $\begin{array} { r } { \frac { 1 } { n _ { 1 } } ( { \bf X } _ { t } ^ { \sf t r a i n } ) ^ { \top } { \bf X } _ { t } ^ { \sf t r a i n } } \end{array}$ . Thus, we have) as $( \mathbf { D } _ { t } ^ { \mathsf { t r a i n } } ) ^ { \top } \mathbf { D } _ { t } ^ { \mathsf { t r a i n } } = \mathrm { D i a g } ( n _ { 1 } \sigma _ { 1 } ^ { ( n _ { 1 } ) } , \ldots , n _ { 1 } \sigma _ { d } ^ { ( n _ { 1 } ) } )$ σ(n1)d ) urther simplify (28 + +$$ +\begin{array} { r l } & { \quad n _ { 2 } \mathbb { E } \left[ \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } \left( \mathbf { I } _ { d } - ( ( \mathbf { D } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { D } _ { t } ^ { \mathrm { t r a i n } } + n _ { 1 } \lambda \mathbf { I } _ { d } ) ^ { - 1 } ( \mathbf { D } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \mathbf { D } _ { t } ^ { \mathrm { t r a i n } } \right) ^ { 2 } ( \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \right] } \\ & { \stackrel { ( i ) } { = } n _ { 2 } \mathbb { E } \left[ \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } \mathrm { D i a g } \left( \frac { \lambda ^ { 2 } } { ( \sigma _ { 1 } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } , \ldots , \frac { \lambda ^ { 2 } } { ( \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \right) ( \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } \right] } \\ & { \stackrel { ( i i ) } { = } \frac { n _ { 2 } } { d } \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } } { ( \lambda + \sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \right] \mathbf { I } _ { d } . } \end{array} +$$ + +Step $( i )$ follows from the same computation in (22), and step $( i i )$ uses the permutation trick in (23). + +Next, we find the expected covariance matrix $\begin{array} { r } { \frac { 1 } { n _ { 2 } ^ { 2 } } \mathbb { E } [ \nabla \ell _ { t } ^ { \mathrm { t r - t r } } ( \mathbf { w } _ { 0 , \star } ) ( \nabla \ell _ { t } ^ { \mathrm { t r - t r } } ( \mathbf { w } _ { 0 , \star } ) ) ^ { \top } ] } \end{array}$ + +$$ +\begin{array} { r l } & { \quad \mathbb { E } | \nabla \xi ^ { t } \mathbf { t } ^ { \tau } \mathbf { w } _ { 0 , k } | ( \nabla \xi _ { t } ^ { t \tau } \mathbf { w } _ { 0 , k } ) ^ { \tau } | } \\ & { = \mathbb { E } \big [ ( \mathbf { M } _ { t } ^ { \tau , \tau } ) ^ { \top } \mathbf { M } _ { t } ^ { \tau , \tau } \mathbf { w } _ { 0 , k } - \mathbf { w } _ { t } \big ) ( \mathbf { w } _ { 0 , k } - \mathbf { w } _ { t } ) ^ { \top } ( \mathbf { M } _ { t } ^ { \tau , \tau - \tau } ) ^ { \top } \mathbf { M } _ { t } ^ { \tau , \tau + \tau } \big ] } \\ & { = \mathbb { E } \Bigg [ \mathbf { V } _ { t } ^ { \tau \wedge \tau } \mathrm { b l a g } \Bigg [ \displaystyle \frac { \lambda } { \sigma _ { 0 } ^ { ( 1 ) } \mathbf { 1 } ^ { \tau + 1 } } \lambda ^ { \prime } \cdots \cdots \cdots \cdots \displaystyle \frac { \lambda } { \sigma _ { d } ^ { ( n ) } \mathbf { 1 } } \Big ) ( \mathbf { V } _ { t } ^ { \tau \wedge \tau } ) ^ { \top } ( \mathbf { x } _ { t } ^ { \tau \wedge \tau } ) ^ { \top } \Gamma } \\ & { \qquad \cdot \mathbf { X } _ { t } ^ { \tau \wedge \tau } \mathrm { V } _ { t } ^ { \tau \wedge \tau } \mathrm { b l a g } \Bigg [ \displaystyle \frac { \lambda } { \sigma _ { 1 } ^ { ( n ) } + \lambda } \cdots \cdots \cdots \displaystyle \frac { \lambda } { \sigma _ { d } ^ { ( n ) + 1 } } \Big ) ( \mathbf { V } _ { t } ^ { \tau \wedge \tau } ) ^ { \top } ( \mathbf { w } _ { 0 , k } - \mathbf { w } _ { t } ) ( \mathbf { w } _ { 0 , k } - \mathbf { w } _ { t } ) ^ { \top } } \\ & { \qquad \cdot \mathbf { V } _ { t } ^ { \tau \wedge \tau } \mathrm { b l a g } \Bigg [ \displaystyle \frac { \lambda } { \sigma _ { 1 } ^ { ( 1 ) } + \lambda } \cdots \cdots \displaystyle \frac { \lambda } { \sigma _ { d } ^ { ( n ) + 1 } + \lambda } \Bigg ) ( \mathbf { V } _ { t } ^ { \tau \wedge \tau } ) ^ { \top } ( \mathbf { X } _ { t } ^ { \tau \wedge \tau } ) ^ { \top } } \\ & \qquad \cdot \mathbf { X } _ { t } ^ { \tau \wedge \tau } \mathrm { b l a g } \Bigg ( \displaystyle \frac { \lambda } \end{array} +$$ + +Combining (29) and (30), we derive the asymptotic covariance matrix of using $L ^ { \mathrm { t r - v a l } }$ as + +$$ +\begin{array} { r l } & { \quad \mathrm { A s s u p ~ C o s s : } ( \nabla _ { v _ { \xi } } \mathrm { a r } ) } \\ & { = \mathbb { E } \{ \nabla _ { v _ { \xi } } \mathrm { a r } \sin [ \mathrm { C e } ( \mathrm { B e } ( \xi _ { v _ { \xi } } \cdots ) ) ] \} } \\ & { = \frac { d ^ { 2 } } { v _ { \xi } ^ { 2 } } ( \mathbb { E } [ \frac { d } { \sum _ { i = 1 } ^ { d } ( \lambda + v _ { \xi } ^ { ( n ) } \cdots ) ^ { 2 } } ] ) ^ { - 2 } } \\ & { \quad \cdot \mathbb { E } [ \nabla _ { v _ { \xi } } \mathrm { a r n } \mathrm { b i g h } ( \frac { \lambda } { \sigma _ { \xi } ^ { ( n ) } ( \lambda + 1 ) ^ { 2 } } \cdots \frac { \lambda } { \sigma _ { \xi } ^ { ( n + 1 ) } ( \lambda + 1 ) ^ { 2 } } \cdots ) ] \cdot \mathbf { V } _ { v _ { \xi } } ^ { \mathrm { a s s } } ) ^ { \top } ( \mathbf { X } _ { \xi } ^ { \mathrm { a d } } ) ^ { \top } } \\ & { \quad \cdot \mathbb { E } [ \nabla _ { v _ { \xi } } \mathrm { a r n } \mathrm { b i g h } ( \frac { \lambda } { \sigma _ { \xi } ^ { ( n + 1 ) } ( \lambda + 1 ) ^ { 2 } } \cdots \frac { \lambda } { \sigma _ { \xi } ^ { ( n + 1 ) } ( \lambda + 1 ) ^ { 2 } } \cdots ) \cdot ( \mathbf { V } _ { v _ { \xi } } ^ { \mathrm { a s s } } ) ^ { \top } ( \mathbf { W } _ { \xi } - \mathbf { w } _ { \xi } ) | \mathbf { \Psi } ( \mathbf { x } _ { \xi } - \mathbf { w } _ { \xi } ) \cdot \mathbf { V } _ { v _ { \xi } } ^ { \top } } \\ & \quad \cdot \mathbb { X } _ { v _ { \xi } } ^ { \mathrm { a r s t } } \nabla _ { v _ { \xi } } \mathrm { a s } ( \frac { \lambda } { \sigma _ { \xi } ^ { ( n + 1 ) } ( \lambda + 1 ) } - \frac { \lambda } { \sigma _ { \xi } ^ { ( n + 1 ) } ( \lambda + 1 ) } ) ( \nabla _ { v _ { \xi } } ^ { \mathrm { a r s } } ) ^ { \top } ( \mathbf { w } _ { \xi } - \mathbf { w } _ { \xi } ) \cdot \mathbf { V } \end{array} +$$ + +Taking trace in (31), we deduce + +$$ +\begin{array} { r l } & { \quad \mathrm { A s g n a l i t } \ : \ : \mathrm { B e f f } _ { \mathrm { e f f } } ^ { \mathrm { o u t } , \mathrm { p } } } \\ & { = \mathrm { t } \ : ( \mathrm { A s g n a l i t y } \ : ( \mathrm { w } _ { \mathrm { i g h } } ^ { \mathrm { o u t } } ) ^ { \mathrm { p } } ) } \\ & { = \frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } ( \mathbb { Z } [ \displaystyle \sum _ { i = 1 } ^ { n } \frac { \lambda } { ( \lambda + \alpha _ { \mathrm { i f f f } } ^ { \mathrm { o u t } } ) ^ { 2 } } ] ) ^ { - 2 } } \\ & { \quad \cdot \mathrm { ~ t } \Bigg ( \mathbb { E } [ \mathrm { v } _ { \mathrm { i n } } ^ { \mathrm { s t a n h } } \mathrm { l i s k g } ( \frac { \lambda } { \sigma _ { \mathrm { i f f } } ^ { \mathrm { o u t } } } + \lambda ^ { \mathrm { ~ , ~ } \dots , \frac { \lambda } { \sigma _ { \mathrm { i f f } } ^ { \mathrm { o u t } } + 1 } } ) ( \mathrm { v } _ { \mathrm { i n } } ^ { \mathrm { s t a n h } } ) ^ { \mathrm { T } } ( \mathrm { X } _ { \mathrm { f } } ^ { \mathrm { a d } } ) ^ { \mathrm { T } } } \\ & { \quad \cdot \mathrm { ~ X } _ { \mathrm { i } } ^ { \mathrm { o u t } } \mathrm { Y } _ { \mathrm { t } } ^ { \mathrm { o u t } } \mathrm { D i s k } \Bigg ( \frac { \lambda } { \sigma _ { \mathrm { i f f } } ^ { \mathrm { o u t } } + 1 } - \lambda ^ { \mathrm { ~ , ~ } \dots , \frac { \lambda } { \sigma _ { \mathrm { i f f } } ^ { \mathrm { o u t } } + 1 } } \Bigg ) \ : ( \mathrm { Y } _ { \mathrm { t } } ^ { \mathrm { p r o n } } ) ^ { \mathrm { T } } ( \mathrm { w } _ { \mathrm { e } _ { k } } - \mathrm { w } _ { \mathrm { i f } } ^ { \mathrm { o u t } } | \mathrm { w } _ { \mathrm { i f } } , \mathrm { ~ } - \mathrm { w } _ { \mathrm { i f } } ^ { \mathrm { o u t } } ) ^ { \mathrm { T } } } \\ & \quad \cdot \mathrm ~ \mathbb { V } _ { \mathrm { t } } ^ { \mathrm { e x i n } } \mathrm { l i s k g } ( \frac { \lambda } { \sigma _ { \mathrm { i f f } } ^ { \mathrm { o u t } } + 1 } - \lambda ^ { \mathrm { ~ , ~ } } \frac \end{array} +$$ + +$$ +\begin{array} { r l } & { \frac { ( i ) } { n _ { 2 } ^ { 2 } } ( { \mathbb { E } } [ \displaystyle \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } } { ( \lambda + \sigma _ { i } ^ { ( n ) } ) ^ { 2 } } ] ) ^ { - 2 } } \\ & { \quad \cdot { \operatorname { t r } } ( { \mathbb { E } } [ \displaystyle \mathbf { V } _ { t } ^ { \mathrm { r a i n } } { \mathrm { D i a g } } ( \frac { \lambda } { \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda } , \cdots , \frac { \lambda } { \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda } ) ( \mathbf { V } _ { t } ^ { \mathrm { r a i n } } ) ^ { \top } ( \mathbf { X } _ { t } ^ { \mathrm { s } a } ) ^ { \top } } \\ & { \qquad \cdot \mathbf { X } _ { t } ^ { \mathrm { v a l } } \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } { \mathrm { D i a g } } ( \frac { \lambda ^ { 2 } } { ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } , \cdots , \frac { \lambda ^ { 2 } } { ( \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } ) ( \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } ( \mathbf { X } _ { t } ^ { \mathrm { s } a } ) ^ { \top } } \\ & { \qquad \cdot \mathbf { X } _ { t } ^ { \mathrm { v a l } } \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } { \mathrm { D i a g } } ( \frac { \lambda } { \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda } , \cdots , \frac { \lambda } { \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda } ) ( \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } ) ^ { \top } ( \mathbf { w } _ { 0 , \star } - \mathbf { w } _ { t } ) ( \mathbf { w } _ { 0 , \star } - \mathbf { w } _ { t } ) ^ { \top } ] ) , } \end{array} +$$ + +where $( i )$ follows from the cyclic property of the matrix trace operation. Due to the isotropicity of $\mathbf { X } _ { t } ^ { \mathsf { t r a i n } }$ and $\mathbf { X } _ { t } ^ { \mathsf { v a l } }$ , we claim that + +$$ +\begin{array} { r l } & { \mathbb { E } \bigg [ { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } \mathrm { D i a g } \left( \frac { \lambda } { \sigma _ { 1 } ^ { ( n _ { 1 } ) } + \lambda } , \ldots , \frac { \lambda } { \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda } \right) ( { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } ) ^ { \top } ( { \mathbf { X } _ { t } ^ { \mathrm { v a l } } } ) ^ { \top } } \\ & { \qquad \cdot { \mathbf { X } _ { t } ^ { \mathrm { v a l } } } { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } \mathrm { D i a g } \left( \frac { \lambda ^ { 2 } } { ( \sigma _ { 1 } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } , \ldots , \frac { \lambda ^ { 2 } } { ( \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \right) ( { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } ) ^ { \top } ( { \mathbf { X } _ { t } ^ { \mathrm { v a l } } } ) ^ { \top } } \\ & { \qquad \cdot { \mathbf { X } _ { t } ^ { \mathrm { v a l } } } { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } \mathrm { D i a g } \left( \frac { \lambda } { \sigma _ { 1 } ^ { ( n _ { 1 } ) } + \lambda } , \ldots , \frac { \lambda } { \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda } \right) ( { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } ) ^ { \top } \bigg ] } \end{array} +$$ + +is a diagonal matrix $c \mathbf { I } _ { d }$ with all the diagonal elements identical. We can show the claim bying taking expectation with respect to $\mathbf { X } _ { t } ^ { \mathsf { v a l } }$ first. Since $\mathbf { V } _ { t } ^ { \mathsf { t r a i n } }$ is an orthogonal matrix, $\mathbf { X } _ { t } ^ { \mathsf { v a l } } \mathbf { V } _ { t } ^ { \mathsf { t r a i n } }$ has the same distribution as $\mathbf { X } _ { t } ^ { \mathsf { v a l } }$ and independent of $\mathbf { X } _ { t }$ . We verify that any off-diagonal element of the matrix expectation + +$$ +\begin{array} { r l } & { \mathbf { A } : = \mathbb { E } _ { \mathbf { X } _ { t } ^ { \mathrm { s i n } } } \bigg [ \big ( { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } \big ) ^ { \top } ( { \mathbf { X } _ { t } ^ { \mathrm { v a l } } } ) ^ { \top } { \mathbf { X } _ { t } ^ { \mathrm { v a l } } } { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } \mathrm { D i a g } \left( \frac { \lambda ^ { 2 } } { ( \sigma _ { 1 } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } , \dots , \frac { \lambda ^ { 2 } } { ( \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \right) } \\ & { \qquad \cdot ( { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } ) ^ { \top } ( { \mathbf { X } _ { t } ^ { \mathrm { v a l } } } ) ^ { \top } { \mathbf { X } _ { t } ^ { \mathrm { v a l } } } { \mathbf { V } _ { t } ^ { \mathrm { t r a i n } } } \bigg ] } \end{array} +$$ + +is zero. We denote ${ \bf X } _ { t } ^ { \mathsf { v a l } } { \bf V } _ { t } ^ { \mathsf { t r a i n } } = [ { \bf x } _ { 1 } , \ldots , { \bf x } _ { n } ] ^ { \top } \in \mathbb { R } ^ { n _ { 2 } \times d }$ with $\mathbf { x } _ { i }$ iid∼ ${ \mathsf { N } } ( \mathbf { 0 } , \mathbf { I } _ { d } )$ . For $k \neq \ell$ , the $( k , \ell )$ -th entry $A _ { k , \ell }$ of $\mathbf { A }$ is + +$$ +\begin{array} { l } { { A _ { k , \ell } = \mathbb E \left[ \displaystyle \sum _ { j } \left( \frac { \lambda ^ { 2 } } { ( \sigma _ { j } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \left( \sum _ { i } x _ { k , i } x _ { j , i } \right) \left( \sum _ { i } x _ { j , i } x _ { \ell , i } \right) \right) \right] } } \\ { { \mathrm { } = \mathbb E \left[ \displaystyle \sum _ { j } \frac { \lambda ^ { 2 } } { ( \sigma _ { j } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \left( \displaystyle \sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \ell , n } \right) \right] } } \\ { { \mathrm { } \overset { ( i ) } { = } 0 , } } \end{array} +$$ + +where $x _ { i , j }$ denotes the $j$ -th element of $\mathbf { x } _ { i }$ . Equality $( i )$ holds, since either $x _ { k , m }$ or $x _ { \ell , n }$ only appears once in each summand. Therefore, we can write $\mathbf { A } = \operatorname { D i a g } \left( A _ { 1 , 1 } , \ldots , A _ { d , d } \right)$ with $A _ { k , k }$ being + +$$ +\begin{array} { r l r } & { } & { A _ { k , k } = \mathbb E \left[ \displaystyle \sum _ { j } \frac { \lambda ^ { 2 } } { ( \sigma _ { j } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \left( \displaystyle \sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \ell , n } \right) \right] } \\ & { } & { = \mathbb E \left[ \displaystyle \frac { \lambda ^ { 2 } } { ( \sigma _ { k } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \left( \displaystyle \sum _ { m , n } x _ { k , m } x _ { k , m } x _ { k , n } x _ { k , n } \right) \right] . } \end{array} +$$ + +$A _ { k , k }$ only depends on $\sigma _ { k } ^ { ( n _ { 1 } ) }$ . Plugging back into (33), we have + +$$ +\begin{array} { r l } & { \mathbb { E } \bigg [ \mathbf { V } _ { t } ^ { \mathrm { a t a l p h i s g a } } \bigg ( \frac { \lambda } { \sigma _ { t } ^ { ( 1 ) } + \lambda } , \cdots , \frac { \lambda } { \sigma _ { t } ^ { ( 2 ) ( 1 ) } + \lambda } \bigg ) \ ( \mathbf { V } _ { t } ^ { \mathrm { a r s i n g } } ) ^ { - 1 } \big ( \mathbf { X } _ { t } ^ { \mathrm { a r s i } } \big ) ^ { \top } } \\ & { \qquad \cdot \mathbf { X } _ { t } ^ { \mathrm { a p } } \mathbf { V } _ { t } ^ { \mathrm { a b l p h i s g } } \bigg ( \frac { \lambda } { ( \sigma _ { t } ^ { ( 1 ) } + \lambda ) ^ { 2 } } , \cdots , \frac { \lambda ^ { 2 } } { ( \sigma _ { t } ^ { ( 2 ) ( 1 ) } + \lambda ) ^ { 2 } } \bigg ) \ ( \mathbf { V } _ { t } ^ { \mathrm { p a l p h } } ) ^ { \top } \big ( \mathbf { X } _ { t } ^ { \mathrm { a r s i } } \big ) ^ { \top } } \\ & { \qquad \cdot \mathbf { X } _ { t } ^ { \mathrm { a p } } \mathbf { V } _ { t } ^ { \mathrm { a p } } \mathrm { P l a s i n g } \bigg ( \frac { \lambda } { \sigma _ { t } ^ { ( 1 ) } + \lambda } , \cdots , \cdots , \frac { \lambda } { \sigma _ { t } ^ { ( 2 ) ( 1 ) } + \lambda } \bigg ) \ ( \mathbf { V } _ { t } ^ { \mathrm { p a r p } } ) ^ { \top } \bigg ] } \\ & { = \mathbb { E } \bigg [ \mathbf { V } _ { t } ^ { \mathrm { s a m p h i s g a } } \bigg ( \frac { \lambda } { \sigma _ { t } ^ { ( 1 ) } + \lambda } , \cdots , \cdots , \frac { \lambda } { \sigma _ { t } ^ { ( 2 ) ( k + 1 ) } + \lambda } \bigg ) \ \mathrm { D i s g } ( A _ { 1 , 1 } , \ldots , A _ { t , \mathrm { d } } ) } \\ & { \qquad \cdot \mathrm { D i s g } \bigg ( \frac { \lambda } { \sigma _ { t } ^ { ( 1 ) } + \lambda } , \cdots , \frac { \lambda } { \sigma _ { t } ^ { ( 2 ) ( 1 ) } + \lambda } \bigg ) \ ( \mathbf { V } _ { t } ^ { \mathrm { a r p } } ) ^ { \top } \bigg ] } \\ & = \mathbb { E } \bigg [ \mathbf { V } _ { t } ^ { \mathrm { s a m p h } } ( \frac { \lambda } ( \sigma _ { t } ^ { ( 1 ) } + \end{array} +$$ + +where equality $( i )$ utilizes the permutation trick in (24). To this end, it is sufficient to find $c$ as + +$$ +\begin{array} { r l } & { c = \cfrac { 1 } { d } \mathrm { t r } ( \mathbb { B } [ \nabla _ { t } ^ { \mathrm { r a i n } } \mathrm { D i a g } ( \cfrac { \lambda } { \sigma _ { 1 } ^ { ( m _ { 1 } ) } + \lambda } , \cdots , \cfrac { \lambda } { \sigma _ { d } ^ { ( m _ { 1 } ) } + \lambda } ) ( \mathrm { V } _ { t } ^ { \mathrm { r a i n } } ) ^ { \top } ( \mathbf { X } _ { t } ^ { \mathrm { a b } } ) ^ { \top } } \\ & { \qquad \times \mathbf { X } _ { t } ^ { \mathrm { s d } } \mathrm { V } _ { t } ^ { \mathrm { r a i n } } \mathrm { D i a g } ( \cfrac { \lambda ^ { 2 } } { ( \sigma _ { 1 } ^ { ( m _ { 1 } ) } + \lambda ) ^ { 2 } } , \cdots , \cfrac { \lambda ^ { 2 } } { ( \sigma _ { d } ^ { ( m _ { 1 } ) } + \lambda ) ^ { 2 } } ) ( \mathrm { V } _ { t } ^ { \mathrm { r a i n } } ) ^ { \top } ( \mathbf { X } _ { t } ^ { \mathrm { s d } } ) ^ { \top } } \\ & { \qquad \times \mathbf { X } _ { t } ^ { \mathrm { s d } } \mathrm { V } _ { t } ^ { \mathrm { r a i n } } \mathrm { D i a g } ( \cfrac { \lambda } { \sigma _ { 1 } ^ { ( m _ { 1 } ) } + \lambda } , \cdots , \cfrac { \lambda } { \sigma _ { d } ^ { ( m _ { 1 } ) } + \lambda } ) ( \mathrm { V } _ { t } ^ { \mathrm { r a i n } } ) ^ { \top } ] ) } \\ & { = \cfrac { 1 } { d } \mathrm { t r } ( \mathbb { B } [ \mathbf { X } _ { t } ^ { \mathrm { a i n } } \mathrm { V } _ { t } ^ { \mathrm { t x i n } } \mathrm { D i a g } ( \cfrac { \lambda ^ { 2 } } { ( \sigma _ { 1 } ^ { ( m _ { 1 } ) } + \lambda ) ^ { 2 } } , \cdots , \cfrac { \lambda ^ { 2 } } { ( \sigma _ { d } ^ { ( m _ { 1 } ) } + \lambda ) ^ { 2 } } ) ( \mathrm { V } _ { t } ^ { \mathrm { r a i n } } ) ^ { \top } ( \mathbf { X } _ { t } ^ { \mathrm { a b } } ) ^ { \top } } \\ & \qquad \times \mathbf { X } _ { t } ^ \mathrm s \end{array} +$$ + +Observe again that $\mathbf { X } _ { t } ^ { \mathsf { v a l } } \mathbf { V } _ { t } ^ { \mathsf { t r a i n } } \in \mathbb { R } ^ { n _ { 2 } \times d }$ is a Gaussian random matrix. We rewrite (34) as + +$$ +c = \frac { 1 } { d } \mathbb { E } \left[ \left( \sum _ { i , j = 1 } ^ { n _ { 2 } } \mathbf { v } _ { i } ^ { \top } \mathrm { D i a g } \left( \frac { \lambda ^ { 2 } } { ( \sigma _ { 1 } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } , \dots , \frac { \lambda ^ { 2 } } { ( \sigma _ { d } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \right) \mathbf { v } _ { j } \right) ^ { 2 } \right] , +$$ + +where $\mathbf { v } _ { i } \overset { \mathrm { i i d } } { \sim } \mathsf { N } ( \mathbf { 0 } , \mathbf { I } _ { d } )$ is i.i.d. Gaussian random vectors for $i = 1 , \ldots , n _ { 2 }$ . To compute (35), we need the following result. + +Claim 7. Given any symmetric matrix $\textbf { A } \in \mathbb { R } ^ { d \times d }$ and i.i.d. standard Gaussian random vectors $\mathbf { v } , \mathbf { u } \overset { \mathrm { i i d } } { \sim } \mathsf { N } ( \mathbf { 0 } , \mathbf { I } _ { d } )$ , we have + +$$ +\begin{array} { r l } & { \mathbb { E } \left[ ( \mathbf { v } ^ { \top } \mathbf { A } \mathbf { v } ) ^ { 2 } \right] = 2 \| \mathbf { A } \| _ { \mathsf { F r } } ^ { 2 } + \mathrm { t r } ^ { 2 } ( \mathbf { A } ) \quad a n d } \\ & { \mathbb { E } \left[ ( \mathbf { v } ^ { \top } \mathbf { A } \mathbf { u } ) ^ { 2 } \right] = \| \mathbf { A } \| _ { \mathsf { F r } } ^ { 2 } . } \end{array} +$$ + +Proof of Claim 7. We show (36) first. We denote $A _ { i , j }$ as the $( i , j )$ -th element of $\mathbf { A }$ and $v _ { i }$ as the $i$ -th element of $\mathbf { v }$ . Expanding the quadratic form, we have + +$$ +\mathbb { E } \left[ ( \mathbf { v } ^ { \top } \mathbf { A } \mathbf { v } ) ^ { 2 } \right] = \mathbb { E } \left[ \sum _ { i , j , k , \ell \leq d } v _ { i } v _ { j } v _ { k } v _ { \ell } A _ { i , j } A _ { k , \ell } \right] +$$ + +$$ +\begin{array} { r l } & { = \mathbb { E } \left[ \underset { i \leq d } { \sum } v _ { i } ^ { 4 } A _ { i , i } ^ { 2 } \right] + \mathbb { E } \left[ \underset { i \neq j } { \sum } v _ { i } ^ { 2 } v _ { j } ^ { 2 } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) \right] } \\ & { = 3 \underset { i \leq d } { \sum } A _ { i , i } ^ { 2 } + \underset { i \neq j } { \sum } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) } \\ & { = \mathrm { t r } ^ { 2 } ( \mathbf { A } ) + 2 \underset { i \leq d } { \sum } A _ { i , i } ^ { 2 } + \underset { i \neq j } { \sum } ( A _ { i , j } ^ { 2 } + A _ { i , j } A _ { j , i } ) } \\ & { = \mathrm { t r } ^ { 2 } ( \mathbf { A } ) + 2 \| \mathbf { A } \| _ { \mathrm { F r } } ^ { 2 } . } \end{array} +$$ + +Next, we show (37) by the cyclic property of race. + +$$ +\mathbb { E } \left[ ( \mathbf { v } ^ { \top } \mathbf { A } \mathbf { u } ) ^ { 2 } \right] = \operatorname { t r } \left( \mathbb { E } \left[ \mathbf { u } \mathbf { u } ^ { \top } \mathbf { A } \mathbf { v } \mathbf { v } ^ { \top } \mathbf { A } \right] \right) = \operatorname { t r } ( \mathbf { A } ^ { 2 } ) = \| \mathbf { A } \| _ { \mathsf { F r } } ^ { 2 } . +$$ + +We back to the computation of (35) using Claim 7. + +$$ +\begin{array} { r l } & { \quad _ { 1 } = - \frac { 1 } { 2 ^ { k } } \mathbb { E } [ \frac { \sin \beta } { \sin \alpha } ( \frac { \sin ^ { 2 } \beta } { \sin ^ { 2 } ( k ) + \sin ^ { 2 } ( k ) } - \frac { \sin ^ { 2 } \beta } { \sin ^ { 2 } ( k ) + \sin \beta } ) ^ { k } ] } \\ & { \quad - \frac { 3 } { 2 ^ { k } } \mathbb { E } [ \frac { \sin \beta } { \sin \alpha } ( \frac { \sin \beta } { \sin \alpha + \sin ^ { 2 } ( k ) + \sin ^ { 2 } ( k ) } ) \sin \beta ] } \\ & { \quad \quad + \frac { 3 } { 2 ^ { k } } \mathbb { E } [ \frac { \sin \beta } { \sin \alpha } ( \frac { \sin \beta } { \sin \alpha + \sin ^ { 2 } ( k ) + \cos ^ { 2 } ( k ) } - \frac { \sin ^ { 2 } \beta } { \sin ^ { 2 } ( k ) + \sin ^ { 2 } ( k ) } ) ] } \\ & { \quad - \frac { \sin \beta } { 2 ^ { k } } \mathbb { E } [ ( \frac { \sin \beta } { \sin \alpha } ( \frac { \sin \beta } { \sin \alpha + \sin ^ { 2 } ( k ) + \cos ^ { 2 } ( k ) } - \frac { \sin \beta } { \cos ^ { 2 } ( k ) + \cos ^ { 2 } ( k ) } ) ) ] } \\ & { \quad \quad _ { 1 } = \frac { \sin \beta } { 2 ^ { k } } \mathbb { E } [ \frac { \sin \alpha } { \sin \alpha } ( \frac { \sin \beta } { \sin \alpha + \sin ^ { 2 } ( k ) + \cos ^ { 2 } ( k ) } - \frac { \sin \beta } { \cos ^ { 2 } ( k ) + \sin ^ { 2 } ( k ) } ) ] } \\ & { \quad \quad + \frac { \sin \beta } { 2 ^ { k } } \frac { \sin \alpha } { \sin \alpha + \sin \beta } ( \frac { \sin \alpha } { \sin \alpha + \sin ^ { 2 } ( k ) + \cos ^ { 2 } ( k ) } - \frac { \sin \beta } { \cos ^ { 2 } ( k ) + \sin \beta } ) ] } \\ & \quad \quad - \frac { \sin \alpha } { 2 ^ { k } } \mathbb { E } [ \frac { \sin \beta } { \sin \alpha } ( \frac { \sin \beta } { \sin \alpha + \sin ^ { 2 } ( k ) + \sin \beta } ) ^ { k } - ( \sin \beta + \frac { \sin \beta } \sin \end{array} +$$ + +Combining (38) and (33), by the independence between $\mathbf { w } _ { t }$ and $\mathbf { X } _ { t } ^ { \mathsf { t r a i n } } , \mathbf { X } _ { t } ^ { \mathsf { v a l } }$ , we compute (32) as + +$$ +\begin{array} { r l } & { \quad \mathrm { A s y n M N S E } ( \widehat { \mathbf { w } } _ { 0 , \mathcal { T } } ^ { t , \mathcal { T } } ) } \\ & { = \displaystyle \frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } \left( \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } } { ( \lambda + \sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \right] \right) ^ { - 2 } } \\ & { \qquad \cdot \displaystyle \frac { n _ { 2 } } { d } \left( \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } } { ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \right] ^ { 2 } + ( n _ { 2 } + 1 ) \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 4 } } { ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 4 } } \right] \right) } \\ & { \qquad \cdot \mathbb { E } \left[ ( \mathbf { w } _ { 0 , \ast } - \mathbf { w } _ { t } ) ( \mathbf { w } _ { 0 , \ast } - \mathbf { w } _ { t } ) ^ { \top } \right] } \\ & { = \displaystyle \frac { d R ^ { 2 } } { n _ { 2 } } \frac { \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \right] ^ { 2 } + ( n _ { 2 } + 1 ) \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \lambda ^ { 4 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 4 } \right] } { \left( \mathbb { E } \left[ \displaystyle \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \lambda + \sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } \right] \right) ^ { 2 } } . } \end{array} +$$ + +The proof is complete. + +Corollary 8 (Optimal rate of the train-val method at finite $( n , d ) )$ . For any $( n , d )$ and any split ratio $( n _ { 1 } , n _ { 2 } ) \stackrel { \cdot } { = } ( n _ { 1 } , \stackrel { \cdot } { = } n - n _ { 1 } )$ , the optimal rate (by tuning the regularization $\lambda > 0$ ) of the train-val method is achieved at + +$$ +\operatorname* { i n f } _ { \lambda > 0 } \mathrm { A s y m M S E } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \lambda ) \big ) = \operatorname* { l i m } _ { \lambda \to \infty } \mathrm { A s y m M S E } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \lambda ) \big ) = \frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } . +$$ + +Further optimizing the rate over $n _ { 2 }$ , the best rate is taken at $( n _ { 1 } , n _ { 2 } ) = ( 0 , n )$ , in which the rate is + +$$ +\mathrm { i n f } _ { \lambda > 0 , n _ { 2 } \in [ n ] } \mathrm { A s y m M S E } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathsf { t r } - \mathsf { v a l } } ( n _ { 1 } , n _ { 2 } ; \lambda ) \big ) = \frac { ( d + n + 1 ) R ^ { 2 } } { n } . +$$ + +Discussion: Using all data as validation Corollary 8 suggests that the optimal asymptotic rate of the train-val method is obtained at $\lambda = \infty$ and $( n _ { 1 } , n _ { 2 } ) = ( 0 , n )$ . In other words, the optimal choice for the train-val method is to use all the data as validation. In this case, since there is no training data, the inner solver reduces to the identity map: $\mathcal { A } _ { \infty , 0 } ( \mathbf { w } _ { 0 } ; \mathbf { X } _ { t } , \mathbf { y } _ { t } ) = \mathbf { w } _ { 0 }$ , and the outer loop reduces to learning a single linear model $\mathbf { w } _ { 0 }$ on all the tasks combined. We remark that while the optimality of such a split ratio is likely an artifact of the data distribution we assumed (noiseless realizable linear model) and may not generalize to other meta-learning problems, we do find experimentally that using more data as validation (than training) can also improve the performance on real metalearning tasks (see Table 2). + +Proof of Corollary 8 Fix $n _ { 1 } \in [ n ]$ and $n _ { 2 } = n - n _ { 1 }$ . Recall from Lemma 5 that + +$$ +\mathrm { 1 s y m M S E } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathsf { t r } \sim \mathrm { s q l } } ( n _ { 1 } , n _ { 2 } ; \lambda ) \big ) = \frac { d R ^ { 2 } } { n _ { 2 } } \cdot \frac { \mathbb { E } \Big [ \Big ( \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \sum _ { i = 1 } ^ { d } \lambda ^ { 4 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ^ { 2 } ) \Big ) \Big ] } { \Big ( \mathbb { E } \Big [ \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \Big ] \Big ) ^ { 2 } } +$$ + +Clearly, as $\lambda \to \infty$ , we have + +$$ +\operatorname* { l i m } _ { \lambda \infty } \mathrm { { A s y m M S E } } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { s u } } ( n _ { 1 } , n _ { 2 } ; \lambda ) \big ) = \frac { d R ^ { 2 } } { n _ { 2 } } \cdot \frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { d ^ { 2 } } = \frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } . +$$ + +It remains to show that the above quantity is a lower bound for $\mathrm { A s y m M S E } \left( \widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \lambda ) \right)$ fo r any $\lambda > 0$ , which is equivalent to + +$$ +\frac { \Xi \bigg [ \Big ( \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \sum _ { i = 1 } ^ { d } \lambda ^ { 4 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 4 } \bigg ] } { \Big ( \mathbb { E } \Big [ \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \Big ] \Big ) ^ { 2 } } \geq \frac { d + n _ { 2 } + 1 } { d } , \mathrm { f o r ~ a l l } \lambda > 0 . +$$ + +We now prove (39). For $i \in [ n _ { 1 } ]$ , define random variables + +$$ +X _ { i } : = \frac { \lambda ^ { 2 } } { ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \in [ 0 , 1 ] \mathrm { a n d } Y _ { i } : = 1 - X _ { i } \in [ 0 , 1 ] . +$$ + +Then the left-hand side of (39) can be rewritten as + +$$ +\begin{array} { r l } & { \frac { \mathbb { E } \left[ \left( d - n _ { 1 } + \sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } \right) ^ { 2 } + ( n _ { 2 } + 1 ) \left( d - n _ { 1 } + \sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } ^ { 2 } \right) \right] } { \left( \mathbb { E } \left[ d - n _ { 1 } + \sum _ { i = 1 } ^ { n } X _ { i } \right] \right) ^ { 2 } } } \\ & { = \frac { \mathbb { E } \left[ \left( d - \sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \right) ^ { 2 } + \left( n _ { 2 } + 1 \right) \left( d - 2 \sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } + \sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } ^ { 2 } \right) \right] } { \left( \mathbb { E } \left[ d - \sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \right] \right) ^ { 2 } } } \\ & { = \frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d - 2 ( d + n _ { 2 } + 1 ) \mathbb { E } \left[ \sum Y _ { i } \right] + \mathbb { E } \left[ ( \sum Y _ { i } ) ^ { 2 } \right] + ( n _ { 2 } + 1 ) \mathbb { E } \left[ \sum Y _ { i } ^ { 2 } \right] } { d ^ { 2 } - 2 d \mathbb { E } \left[ \sum Y _ { i } \right] + \left( \mathbb { E } \left[ \sum Y _ { i } \right] \right) ^ { 2 } } } \end{array} +$$ + +By algebraic manipulation, inequality (39) is equivalent to showing that + +$$ +\frac { \mathbb { E } \left[ ( \sum Y _ { i } ) ^ { 2 } \right] + ( n _ { 2 } + 1 ) \mathbb { E } \left[ \sum Y _ { i } ^ { 2 } \right] } { \left( \mathbb { E } [ \sum Y _ { i } ] \right) ^ { 2 } } \geq \frac { d + n _ { 2 } + 1 } { d } . +$$ + +Clearly, $\mathbb { E } [ ( \sum Y _ { i } ) ^ { 2 } ] \ge ( \mathbb { E } [ \sum Y _ { i } ] ) ^ { 2 }$ . By Cauchy-Schwarz we also have + +$$ +\mathbb { E } \left[ \sum Y _ { i } ^ { 2 } \right] \geq \frac { 1 } { n _ { 1 } } \mathbb { E } \left[ \left( \sum Y _ { i } \right) ^ { 2 } \right] \geq \frac { 1 } { n _ { 1 } } \Big ( \mathbb { E } \left[ \sum Y _ { i } \right] \Big ) ^ { 2 } . +$$ + +Therefore we have + +$$ +\frac { \mathbb { E } \left[ ( \sum Y _ { i } ) ^ { 2 } \right] + ( n _ { 2 } + 1 ) \mathbb { E } \left[ \sum Y _ { i } ^ { 2 } \right] } { ( \mathbb { E } [ \sum Y _ { i } ] ) ^ { 2 } } \geq 1 + \frac { n _ { 2 } + 1 } { n _ { 1 } } \geq 1 + \frac { n _ { 2 } + 1 } { d } = \frac { d + n _ { 2 } + 1 } { d } , +$$ + +where we have used that $n _ { 1 } \leq n \leq d$ . This shows (40) and consequently (39). + +# B.4 RATE OF THE TRAIN-TRAIN METHOD IN THE PROPORTIONAL LIMIT + +Theorem 9 (Exact rates of the train-train method in the proportional limit). In the high-dimensional limiting regime $d , n \infty$ , $d / n \gamma$ where $\gamma \in ( 0 , \infty )$ is a fixed shape parameter, for any $\lambda > 0$ + +$$ +\begin{array} { r l } & { \operatorname* { l i m } _ { d , n \to \infty , d / n = \gamma } { \mathrm { A s y m M S E } } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r + \sf t r } ( n ; \lambda ) \big ) = \rho _ { \lambda , \gamma } R ^ { 2 } . } \\ & { \qquad \quad \lambda , \gamma = 4 \gamma ^ { 2 } \big [ ( \gamma - 1 ) ^ { 2 } + ( \gamma + 1 ) \lambda \big ] / ( \lambda + 1 + \gamma - \sqrt { ( \lambda + \gamma + 1 ) ^ { 2 } - 4 \gamma } ) ^ { 2 } / \big ( ( \lambda + \gamma + 1 ) ^ { 2 } - 4 \gamma \big ) ^ { 3 / 2 } . } \end{array} +$$ + +Proof of Theorem 9 Let $\widehat { \pmb { \Sigma } } _ { n } : = \frac { 1 } { n } \pmb { \mathrm { X } } _ { t } \pmb { \mathrm { X } } _ { t } ^ { \top }$ denote the sample covariance matrix of the inputs in a single task $\mathbf { \rho } ( t )$ . By Lemma 5, we have + +$$ +\begin{array} { r l } & { \mathrm { A s y m M S E } ( \widehat { \mathbf w } _ { 0 , T } ^ { \mathsf { t r } \cdot \mathsf { t r } } ( n ; \lambda ) ) = R ^ { 2 } \cdot \frac { \frac { 1 } { d } \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \sigma _ { i } ( \widehat { \pmb \Sigma } _ { n } ) ^ { 2 } / \big ( \sigma _ { i } ( \widehat { \pmb \Sigma } _ { n } ) + \lambda \big ) ^ { 4 } \right] } { \left( \frac { 1 } { d } \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \sigma _ { i } ( \widehat { \pmb \Sigma } _ { n } ) / \big ( \sigma _ { i } ( \widehat { \pmb \Sigma } _ { n } ) + \lambda ) ^ { 2 } \right] \right) ^ { 2 } } } \\ & { = R ^ { 2 } \cdot \underbrace { \frac { 1 } { d } \mathbb { E } \left[ \mathrm { t r } \left( ( \widehat { \pmb \Sigma } _ { n } + \lambda \mathbf { I } _ { d } ) ^ { - 4 } \widehat { \pmb \Sigma } _ { n } ^ { 2 } \right) \right] } _ { \mathbf { I } _ { n , d } } / \Bigg \{ \underbrace { \frac { 1 } { d } \mathbb { E } \left[ \mathrm { t r } \left( ( \widehat { \pmb \Sigma } _ { n } + \lambda \mathbf { I } _ { d } ) ^ { - 2 } \widehat { \pmb \Sigma } _ { n } \right) \right] } _ { \mathbf { I } _ { n , d } } } \Bigg \} ^ { 2 } . \end{array} +$$ + +We now evaluate quantities $\mathrm { I } _ { n , d }$ and $\Pi _ { n , d }$ in the high-dimensional limit of $d , n \infty$ , $d / n \to \gamma \in$ $( 0 , \infty )$ . Consider the (slightly generalized) Stieltjes transform of $\widehat { \Sigma } _ { n }$ defined for all $\lambda _ { 1 } , \lambda _ { 2 } > 0$ : + +$$ +s ( \lambda _ { 1 } , \lambda _ { 2 } ) : = \operatorname* { l i m } _ { \substack { d , n \to \infty , d / n \to \gamma } } \frac { 1 } { d } \mathbb { E } \Bigl [ \mathrm { t r } \Bigl ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \widehat { \pmb { \Sigma } } _ { n } ) ^ { - 1 } \Bigr ) \Bigr ] . +$$ + +As the entries of $\mathbf { X } _ { t }$ are i.i.d. ${ \mathsf { N } } ( 0 , 1 )$ , the above limiting Stieltjes transform is the Stieltjes form of the Marchenko-Pastur law, which has a closed form (see, e.g. (Dobriban et al., 2018, Equation (7))) + +$$ +\begin{array} { c l } { { s ( \lambda _ { 1 } , \lambda _ { 2 } ) = \displaystyle \lambda _ { 2 } ^ { - 1 } s ( \lambda _ { 1 } / \lambda _ { 2 } , 1 ) = \displaystyle \frac { 1 } { \lambda _ { 2 } } \cdot \frac { \gamma - 1 - \lambda _ { 1 } / \lambda _ { 2 } + \sqrt { ( \lambda _ { 1 } / \lambda _ { 2 } + 1 + \gamma ) ^ { 2 } - 4 \gamma } } { 2 \gamma \lambda _ { 1 } / \lambda _ { 2 } } } } \\ { { = \displaystyle \frac { \gamma - 1 - \lambda _ { 1 } / \lambda _ { 2 } + \sqrt { ( \lambda _ { 1 } / \lambda _ { 2 } + 1 + \gamma ) ^ { 2 } - 4 \gamma } } { 2 \gamma \lambda _ { 1 } } . } } \end{array} +$$ + +Now observe that differentiating $s ( \lambda _ { 1 } , \lambda _ { 2 } )$ yields quantity $\mathrm { I I }$ (known as the derivative trick of Stieltjes transforms). Indeed, we have + +$$ +\begin{array} { l } { \displaystyle - \frac { d } { d \lambda _ { 2 } } s ( \lambda _ { 1 } , \lambda _ { 2 } ) = - \frac { d } { d \lambda _ { 2 } } \operatorname* { l i m } _ { d , n \to \infty , d / n \to \gamma } \frac { 1 } { d } \mathbb { E } \Big [ \mathrm { t r } \Big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \widehat { \pmb { \Sigma } } _ { n } ) ^ { - 1 } \Big ) \Big ] } \\ { = \operatorname* { l i m } _ { d , n \to \infty , d / n \to \gamma } \frac { 1 } { d } \mathbb { E } \Big [ - \frac { d } { d \lambda _ { 2 } } \mathrm { t r } \Big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \widehat { \pmb { \Sigma } } _ { n } ) ^ { - 1 } \Big ) \Big ] } \\ { = \operatorname* { l i m } _ { d , n \to \infty , d / n \to \gamma } \frac { 1 } { d } \mathbb { E } \Big [ \mathrm { t r } \Big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \widehat { \pmb { \Sigma } } _ { n } ) ^ { - 2 } \widehat { \pmb { \Sigma } } _ { n } \Big ) \Big ] . } \end{array} +$$ + +(Above, the exchange of differentiation and limit is due to the uniform convergence of the derivatives, which holds at any $\lambda _ { 1 } , \lambda _ { 2 } ~ > ~ 0$ . See Appendix B.4.1 for a detailed justification.) Taking $\lambda _ { 1 } = \lambda$ and $\lambda _ { 2 } = 1$ , we get + +$$ +\operatorname* { l i m } _ { \substack { d , n \to \infty , d / n \to \gamma } } \Pi _ { n , d } = \operatorname* { l i m } _ { \substack { d , n \to \infty , d / n \to \gamma } } \frac { 1 } { d } \mathbb { E } \Big [ \mathrm { t r } \Big ( ( \lambda \mathbf { I } _ { d } + \widehat { \boldsymbol { \Sigma } } _ { n } ) ^ { - 2 } \widehat { \boldsymbol { \Sigma } } _ { n } \Big ) \Big ] = - \frac { d } { d \lambda _ { 2 } } s ( \lambda _ { 1 } , \lambda _ { 2 } ) | _ { \lambda _ { 1 } = \lambda , \lambda _ { 2 } = 1 } . +$$ + +Similarly we have + +$$ +\operatorname* { l i m } _ { \substack { , n \infty , d / n \gamma } } \mathrm { I } _ { n , d } = \operatorname* { l i m } _ { \substack { d , n \infty , d / n \gamma } } \frac { 1 } { d } \mathbb { E } \Big [ \mathrm { t r } \Big ( ( \lambda \mathrm { I } _ { d } + \widehat { \Sigma } _ { n } ) ^ { - 4 } \widehat { \Sigma } _ { n } ^ { 2 } \Big ) \Big ] = - \frac { 1 } { 6 } \frac { d } { d \lambda _ { 1 } } \frac { d ^ { 2 } } { d \lambda _ { 2 } ^ { 2 } } s ( \lambda _ { 1 } , \lambda _ { 2 } ) | _ { \lambda _ { 1 } = \lambda , \lambda _ { 2 } = 1 } +$$ + +Evaluating the right-hand sides from differentiating the closed-form expression (42), we get + +$$ +\begin{array} { l } { \displaystyle \operatorname* { l i m } _ { { d , n \to \infty , d / n \to \gamma } } \mathrm { I } _ { n , d } = \frac { 1 } { 2 \gamma } \cdot \frac { \lambda + 1 + \gamma } { \sqrt { ( \lambda + 1 + \gamma ) ^ { 2 } - 4 \gamma } } - \frac { 1 } { 2 \gamma } , } \\ { \displaystyle \operatorname* { l i m } _ { d , n \to \infty , d / n \to \gamma } \mathrm { I I } _ { n , d } = \frac { ( \gamma - 1 ) ^ { 2 } + ( \gamma + 1 ) \lambda } { ( ( \lambda + 1 + \gamma ) ^ { 2 } - 4 \gamma ) ^ { 5 / 2 } } . } \end{array} +$$ + +Substituting back to (41) yields that + +$$ +\begin{array} { r l } & { \underset { d , n \to \infty , d / n \to \gamma } { \operatorname* { l i m } } \mathrm { A s y m M S E } ( \widehat { \ w } _ { 0 , T } ^ { \mathrm { t r } + \mathrm { t r } } ( n ; \lambda ) ) = \underset { d , n \to \infty , d / n \to \gamma } { \operatorname* { l i m } } R ^ { 2 } \cdot \mathrm { I } _ { n , d } / \mathrm { I } _ { n , d } ^ { 2 } } \\ & { = R ^ { 2 } \cdot \frac { 4 \gamma ^ { 2 } \left[ ( \gamma - 1 ) ^ { 2 } + ( \gamma + 1 ) \lambda \right] } { ( ( \lambda + 1 + \gamma ) ^ { 2 } - 4 \gamma ) ^ { 5 / 2 } \cdot \left( \frac { \lambda + 1 + \gamma } { \sqrt { ( \lambda + 1 + \gamma ) ^ { 2 } - 4 \gamma } } - 1 \right) ^ { 2 } } } \\ & { = R ^ { 2 } \cdot \frac { 4 \gamma ^ { 2 } \left[ ( \gamma - 1 ) ^ { 2 } + ( \gamma + 1 ) \lambda \right] } { ( ( \lambda + 1 + \gamma ) ^ { 2 } - 4 \gamma ) ^ { 3 / 2 } \cdot \left( \lambda + 1 + \gamma - \sqrt { ( \lambda + 1 + \gamma ) ^ { 2 } - 4 \gamma } \right) ^ { 2 } } . } \end{array} +$$ + +This proves the desired result. + +# B.4.1 INTERCHANGING DERIVATIVE AND EXPECTATION / LIMIT + +Here we rigorously establish the interchange of the derivative and the expectation / limit used in (43). For convenience of notation let $\_$ denote the empirical covariance matrix of $\cdot$ . We wish to show that + +$$ +\frac { d } { d \lambda _ { 2 } } \operatorname* { l i m } _ { d , n \to \infty , d / n \to \gamma } \frac { 1 } { d } \mathbb { E } \big [ \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \pmb { \Sigma } ) ^ { - 1 } \big ) \big ] = \operatorname* { l i m } _ { d , n \to \infty , d / n \to \gamma } \frac { 1 } { d } \mathbb { E } \bigg [ \frac { d } { d \lambda _ { 2 } } \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \pmb { \Sigma } ) ^ { - 1 } \big ) \bigg ] . +$$ + +This involves the interchange of derivative and limit, and then the interchange of derivative and expectation. + +Interchange of derivative and expectation First, we show that for any fixed $( d , n )$ , + +$$ +\frac { d } { d \lambda _ { 2 } } \mathbb { E } \big [ \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \pmb { \Sigma } ) ^ { - 1 } \big ) \big ] = \mathbb { E } \bigg [ \frac { d } { d \lambda _ { 2 } } \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \pmb { \Sigma } ) ^ { - 1 } \big ) \bigg ] . +$$ + +By definition of the derivative, we have + +$$ +\frac { d } { d \lambda _ { 2 } } \mathbb { E } \big [ \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \boldsymbol { \Sigma } ) ^ { - 1 } \big ) \big ] = \operatorname* { l i m } _ { t \to 0 } \mathbb { E } \left[ \frac { \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \boldsymbol { \Sigma } + t \boldsymbol { \Sigma } ) ^ { - 1 } \big ) - \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \boldsymbol { \Sigma } ) ^ { - 1 } \big ) } { t } \right] . +$$ + +For any $\mathbf A \succ \mathbf 0$ , the function $\_$ is continuously differentiable at $\cdot$ with derivative $\cdot$ , and thus locally Lipschitz around $t = 0$ with Lipschitz constant $\left| \operatorname { t r } ( \mathbf { A } ^ { - 2 } \mathbf { B } ) \right| + 1$ . Applying this in the above expectation with $\mathbf { A } = \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \boldsymbol { \Sigma } \succeq \lambda _ { 1 } \mathbf { I } _ { d }$ and $\cdot$ , we get that for sufficiently small $\cdot$ , the fraction inside the expectation is upper bounded by $\vert \mathrm { t r } ( \lambda _ { 1 } ^ { - 2 } \pmb { \Sigma } ) \vert + 1 < \infty$ uniformly over $\cdot$ . Thus by the Dominated Convergence Theorem, the limit can be passed into the expectation, which yields the expectation of the derivative. + +Interchange of derivative and limit Define $f _ { n , d } ( \lambda _ { 2 } ) : = \frac { 1 } { d } \mathbb { E } \big [ \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \pmb { \Sigma } ) ^ { - 1 } \big ) \big ]$ . It suffices to show that + +$$ +\frac { d } { d \lambda _ { 2 } } \operatorname * { l i m } _ { d , n \to \infty , d / n \to \gamma } f _ { n , d } ( \lambda _ { 2 } ) = \operatorname * { l i m } _ { d , n \to \infty , d / n \to \gamma } f _ { n , d } ^ { \prime } ( \lambda _ { 2 } ) , +$$ + +where + +$$ +f _ { n , d } ^ { \prime } ( \lambda _ { 2 } ) = { \mathbb E } \bigg [ \frac { d } { d \lambda _ { 2 } } \frac { 1 } { d } \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \Sigma ) ^ { - 1 } ) \bigg ] = - \frac { 1 } { d } { \mathbb E } \big [ \mathrm { t r } \big ( ( \lambda _ { 1 } \mathbf { I } _ { d } + \lambda _ { 2 } \Sigma ) ^ { - 2 } \Sigma \big ) \big ] +$$ + +by the result of the preceding part. + +As $\_$ pointwise over $\cdot$ by properties of the Wishart matrix (Bai $\&$ Silverstein, 2010) and each individual $f _ { n , d }$ is differentiable, it suffices to show that the derivatives $f _ { n , d } ^ { \prime } ( \widetilde { \lambda } _ { 2 } )$ converges uniformly for $\cdot$ in a neighborhood of $\cdot$ . Observe that can rewrite $f _ { n , d } ^ { \prime }$ as + +$$ +- +$$ + +where $\hat { \mu } _ { n , d }$ is the empirical distribution of the eigenvalues of $\Sigma$ , and + +$$ +\_ +$$ + +Therefore, as $\hat { \mu } _ { n , d }$ converges weakly to the Marchenko-Pastur distribution with probability one and $\cdot$ is uniformly bounded for $\widetilde { \lambda } _ { 2 }$ in a small neighborhood of $\cdot$ , we get that $\cdot$ does converge uniformly to the expectation of $g _ { \widetilde { \lambda } _ { 2 } } ^ { } ( \lambda )$ under the Marchenko-Pastur distribution. This shows the edesired interchange of derivative and limit. + +# B.5 PROOF OF THEOREM 4 + +Throughout this proof we assume that $R ^ { 2 } = 1$ without loss of generality (as all the rates are constant multiples of $R ^ { 2 }$ ). + +Part I: Optimal rate for $L ^ { \mathrm { t r - t r } }$ By Theorem 9, we have + +$$ +\begin{array} { r l } & { \underset { \lambda > 0 } { \operatorname* { i n f } } \underset { d , n \to \infty , d / n = \gamma } { \operatorname* { l i m } } \overset { \mathrm { A s y m M S E } \left( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } ( n ; \lambda ) \right) } { \operatorname* { A s y m M S E } \left( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } ( n ; \lambda ) \right) } } \\ & { = \underset { \lambda > 0 } { \operatorname* { i n f } } \frac { 4 \gamma ^ { 2 } \left[ ( \gamma - 1 ) ^ { 2 } + ( \gamma + 1 ) \lambda \right] } { \displaystyle \left( \lambda + 1 + \gamma - \sqrt { ( \lambda + \gamma + 1 ) ^ { 2 } - 4 \gamma } \right) ^ { 2 } \cdot \left( ( \lambda + \gamma + 1 ) ^ { 2 } - 4 \gamma \right) ^ { 3 / 2 } } . } \end{array} +$$ + +In order to bound $\operatorname* { i n f } _ { \lambda > 0 } f ( \lambda , \gamma )$ , picking any $\lambda = \lambda ( \gamma )$ gives $f ( \lambda ( \gamma ) , \gamma )$ as a valid upper bound, and our goal is to choose $\lambda$ that yields a bound as tight as possible. Here we consider the choice + +$$ +\lambda = \lambda ( \gamma ) = \operatorname* { m a x } \left\{ 1 - \gamma / 2 , \gamma - 1 / 2 \right\} = ( 1 - \gamma / 2 ) \mathbf { 1 } \left\{ \gamma \leq 1 \right\} + ( \gamma - 1 / 2 ) \mathbf { 1 } \left\{ \gamma > 1 \right\} +$$ + +which we now show yields the claimed upper bound. + +Case 1: $\gamma \leq 1$ Substituting $\lambda = 1 - \gamma / 2$ into $f ( \lambda , \gamma )$ and simplifying, we get + +$$ +f ( 1 - \gamma / 2 , \gamma ) = \frac { 2 ( \gamma ^ { 2 } - 3 \gamma + 4 ) } { ( 2 - \gamma / 2 ) ^ { 3 } } = : g _ { 1 } ( \gamma ) . +$$ + +Clearly, $g _ { 1 } ( 0 ) = 1$ and $g _ { 1 } ( 1 ) = 3 2 / 2 7$ . Further differentiating $g _ { 1 }$ twice gives + +$$ +g _ { 1 } ^ { \prime \prime } ( \gamma ) = \frac { \gamma ^ { 2 } + 7 \gamma + 4 } { ( 2 - \gamma / 2 ) ^ { 5 } } > 0 ~ \mathrm { f o r ~ a l l } \gamma \in [ 0 , 1 ] . +$$ + +Thus $g _ { 1 }$ is convex on $[ 0 , 1 ]$ , from which we conclude that + +$$ +g _ { 1 } ( \gamma ) \leq ( 1 - \gamma ) \cdot g _ { 1 } ( 0 ) + \gamma \cdot g _ { 1 } ( 1 ) = 1 + \frac { 5 } { 2 7 } \gamma . +$$ + +Case 2: $\gamma > 1$ Substituting $\lambda = \gamma - 1 / 2$ into $f ( \lambda , \gamma )$ and simplifying, we get + +$$ +f ( \gamma - 1 / 2 , \gamma ) = \frac { 2 \gamma ^ { 2 } ( 4 \gamma ^ { 2 } - 3 \gamma + 1 ) } { ( 2 \gamma - 1 / 2 ) ^ { 3 } } = : g _ { 2 } ( \gamma ) . +$$ + +We have $g _ { 2 } ( 1 ) = g _ { 1 } ( 1 ) = 3 2 / 2 7 .$ . Further differentiating $g _ { 2 }$ gives + +$$ +g _ { 2 } ^ { \prime } ( \gamma ) = - \frac { 1 } { ( 4 \gamma - 1 ) ^ { 2 } } - \frac { 6 } { ( 4 \gamma - 1 ) ^ { 3 } } - \frac { 6 } { ( 4 \gamma - 1 ) ^ { 4 } } + 1 < 1 \mathrm { f o r } \mathrm { a l l } \gamma > 1 . +$$ + +Therefore we have for all $\gamma > 1$ that + +$$ +g _ { 2 } ( \gamma ) = g _ { 2 } ( 1 ) + \int _ { 1 } ^ { \gamma } g _ { 2 } ^ { \prime } ( t ) d t \leq g _ { 2 } ( 1 ) + \gamma - 1 = \gamma + \frac { 5 } { 2 7 } . +$$ + +Combining Case 1 and 2, we get + +$$ +\begin{array} { r l } & { \quad \displaystyle \operatorname* { i n f } _ { \lambda > 0 } f ( \lambda , \gamma ) \leq g _ { 1 } ( \gamma ) } \\ & { \leq \mathbf { 1 } \left\{ \gamma \leq 1 \right\} + g _ { 2 } ( \gamma ) \mathbf { 1 } \left\{ \gamma > 1 \right\} \leq \left( 1 + \frac { 5 } { 2 7 } \gamma \right) \mathbf { 1 } \left\{ \gamma \leq 1 \right\} + \left( \frac { 5 } { 2 7 } + \gamma \right) \mathbf { 1 } \left\{ \gamma > 1 \right\} } \\ & { = \operatorname* { m a x } \left\{ 1 + \frac { 5 } { 2 7 } \gamma , \frac { 5 } { 2 7 } + \gamma \right\} . } \end{array} +$$ + +This is the desired upper bound for $L ^ { \mathrm { t r - t r } }$ . + +Equality at $\gamma = 1$ We finally show that the above upper bound becomes an equality when $\gamma = 1$ . At $\gamma = 1$ , we have + +$$ +f ( \lambda , 1 ) = \frac { 8 \lambda } { ( \lambda + 2 - \sqrt { \lambda ^ { 2 } + 4 \lambda } ) ^ { 2 } ( \lambda ^ { 2 } + 4 \lambda ) ^ { 3 / 2 } } = \frac { 8 \lambda ^ { - 4 } } { ( 1 + 2 / \lambda - \sqrt { 1 + 4 / \lambda } ) ^ { 2 } ( 1 + 4 / \lambda ) ^ { 3 / 2 } } . +$$ + +Make the change of variable $t = \sqrt { 1 + 4 / \lambda }$ so that $\lambda ^ { - 1 } = ( t ^ { 2 } - 1 ) / 4$ , minimizing the above expression is equivalent to minimizing + +$$ +{ \frac { ( t ^ { 2 } - 1 ) ^ { 4 } / 3 2 } { ( t ^ { 2 } / 2 - t + 1 / 2 ) ^ { 2 } t ^ { 3 } } } = { \frac { ( t + 1 ) ^ { 4 } } { 8 t ^ { 3 } } } +$$ + +over $t > 1$ . It is straightforward to check (by computing the first and second derivatives) that the above quantity is minimized at $t = 3$ with value 32/27. In other words, we have shown + +$$ +\operatorname* { i n f } _ { \lambda > 0 } f ( \lambda , 1 ) = \frac { 3 2 } { 2 7 } = \operatorname* { m a x } \left\{ 1 + \frac { 5 } { 2 7 } \gamma , \frac { 5 } { 2 7 } + \gamma \right\} \Biggl | _ { \gamma = 1 } , +$$ + +that is, the equality holds at $\gamma = 1$ + +Part II: Optimal rate for $L ^ { \mathrm { t r - v a l } }$ We now prove the result on $L ^ { \mathrm { t r - v a l } }$ , that is, + +$$ +\begin{array} { r l } & { \underset { \lambda > 0 , s \in ( 0 , 1 ) } { \operatorname* { i n f } } \ \underset { d , n \to \infty , d / n = \gamma } { \operatorname* { l i m } } \ \underset { \lambda \in \gamma } { \operatorname { A s y m M S E } } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { v a l } } ( n s , n ( 1 - s ) ; \lambda ) \big ) } \\ & { \stackrel { ( i ) } { = } \underset { d , n \to \infty , d / n = \gamma } { \operatorname* { l i m } } \underset { \lambda > 0 , n _ { 1 } + n _ { 2 } = n } { \operatorname* { i n f } } \ \underset { \frac { d + n + 1 } { n } } { \operatorname { A s y m M S E } } \big ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \lambda ) \big ) \overset { ( i i ) } { = } 1 + \gamma . } \end{array} +$$ + +First, equality (ii) follows from Corollary 8 and the fact that $( d + n + 1 ) / n \to 1 + \gamma ,$ . Second, the $\because '$ direction of equality (i) is trivial (since we always have “inf l $\mathrm { ~ m ~ } { \geq } \operatorname { l i l }$ m inf”). Therefore we get the “ $\because$ ” direction of the overall equality, and it remains to prove the “ $\because$ direction. + +For the “ $\because$ direction, we fix any $\lambda > 0$ , and bound AsymMSE $( \widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \lambda ) )$ (and consequently its limit as $d , n \infty$ .) We have from Lemma 5 that + +$$ +\mathrm { A s y m M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \lambda ) ) +$$ + +$$ +\begin{array} { r l } & { = \frac { d } { n _ { 2 } } \cdot \frac { \mathbb { E } \left[ \left( \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \right) ^ { 2 } + ( n _ { 2 } + 1 ) \sum _ { i = 1 } ^ { d } \lambda ^ { 4 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 4 } \right] } { \left( \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \right] \right) ^ { 2 } } } \\ & { \leq \frac { d } { n _ { 2 } } \cdot \frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { \left( \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \right] \right) ^ { 2 } } } \\ & { = \frac { d + n _ { 2 } + 1 } { n _ { 2 } } \cdot \frac { 1 } { \left( \mathbb { E } \left[ \frac { 1 } { d } \sum _ { i = 1 } ^ { d } \lambda ^ { 2 } / ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } \right] \right) ^ { 2 } } } \end{array} +$$ + +Observe that + +$$ +\begin{array} { r l } & { \mathbb { E } \Bigg [ \frac { 1 } { d } \displaystyle \sum _ { i = 1 } ^ { d } \frac { \lambda ^ { 2 } } { ( \sigma _ { i } ^ { ( n _ { 1 } ) } + \lambda ) ^ { 2 } } \Bigg ] \stackrel { ( i ) } { \geq } \mathbb { E } \left[ \frac { \lambda ^ { 2 } } { \Big ( \sum _ { i = 1 } ^ { d } \sigma _ { i } ^ { ( n _ { 1 } ) } / d + \lambda \Big ) ^ { 2 } } \right] } \\ & { \stackrel { ( i i ) } { \geq } \frac { \lambda ^ { 2 } } { \Big ( \mathbb { E } \left[ \sum _ { i = 1 } ^ { d } \sigma _ { i } ^ { ( n _ { 1 } ) } / d \right] + \lambda \Big ) ^ { 2 } } \stackrel { ( i i ) } { = } \frac { \lambda ^ { 2 } } { ( 1 + \lambda ) ^ { 2 } } , } \end{array} +$$ + +where (i) follows from the convexity of $t \ \mapsto \ \lambda ^ { 2 } / ( t + \lambda ) ^ { 2 }$ on $t ~ \geq ~ 0$ ; (ii) follows from the same convexity and Jensen’s inequality, and (iii) is since $\begin{array} { r l r } { { \mathbb { E } \Big [ \sum _ { i = 1 } ^ { d } \sigma _ { i } ^ { ( n _ { 1 } ) } \Big ] \ = \ \mathbb { E } \Big [ \mathrm { t r } ( \frac { 1 } { n _ { 1 } } { \bf X } _ { t } ^ { \top } { \bf X } _ { t } ) \Big ] \ = } } \end{array}$ $\mathbb { E } \Big [ \| \mathbf { X } _ { t } \| _ { \mathsf { F r } } ^ { 2 } / n _ { 1 } \Big ] = d .$ . Applying this in the preceeding bound yields + +$$ +\mathrm { A s y m M S E } ( \widehat { \mathbf w } _ { 0 , T } ^ { \sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \lambda ) ) \leq \frac { d + n _ { 2 } + 1 } { n _ { 2 } } \cdot \frac { ( 1 + \lambda ) ^ { 2 } } { \lambda ^ { 2 } } . +$$ + +Further plugging in $n _ { 1 } = n s$ and $n _ { 2 } = n ( 1 - s )$ for any $s \in ( 0 , 1 )$ yields + +$$ +\operatorname* { l i m } _ { \substack { d , n \infty , d / n \gamma } } \mathrm { A s y m M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { s u l } } ( n s , n ( 1 - s ) ; \lambda ) ) \leq \frac { \gamma + 1 - s } { 1 - s } \cdot \frac { ( 1 + \lambda ) ^ { 2 } } { \lambda ^ { 2 } } . +$$ + +Finally, the right-hand side is minimized at $\lambda \to \infty$ and $s = 0$ , from which we conclude that + +$$ +\operatorname* { i n f } _ { \lambda > 0 , s \in ( 0 , 1 ) } \operatorname* { l i m } _ { d , n \to \infty , \ d / n \to \gamma } \mathrm { A s y m M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \lambda ) ) \leq 1 + \gamma , +$$ + +which is the desired $\because$ ” direction. + +# C CONNECTIONS TO BAYESIAN ESTIMATOR + +Here we discuss the relationship between our train-train meta-learining estimator using ridge regression solvers and a Bayesian estimator under a somewhat natural hierarchical generative model for the realizable setting in Section 4. We show that these two estimators are not equal in general, albeit they have some similarities in their expressions. + +We consider the following hierarchical probabilitistic model: + +$$ +\mathbf { w } _ { 0 , \star } \sim \mathbb { N } \bigg ( 0 , \frac { \sigma _ { w } ^ { 2 } } { d } \mathbf { I } _ { d } \bigg ) , \quad \mathbf { w } _ { t } | \mathbf { w } _ { 0 , \star } \overset { \mathrm { i i d } } { \sim } \mathbb { N } \bigg ( \mathbf { w } _ { 0 , \star } , \frac { R ^ { 2 } } { d } \mathbf { I } _ { d } \bigg ) , \quad \mathbf { y } _ { t } = \mathbf { X } _ { t } \mathbf { w } _ { t } + \sigma \mathbf { z } _ { t } \mathrm { w h e r e \mathbf { z } } _ { t } \overset { \mathrm { i i d } } { \sim } \mathbb { N } ( 0 , \mathbf { I } _ { n } ) . +$$ + +This model is similar to our realizable linear model (6), except that $\cdot$ has a prior and that there is observation noise in the data (such that data likelihoods and posteriors are well-defined). We also note that the $\cdot$ variance for $\mathbf { w } _ { t }$ guarantees that $-$ , consistent with our definition (7). + +Bayesian estimator We now derive the Bayesian posterior mean estimator of $\cdot$ , which requires us to compute the posterior distribution of $\cdot$ given the data $4$ . + +We begin by computing the likelihood of one task by marginalizing over $\cdot$ + +$$ +\begin{array} { r l } & { p ( \mathbf { X } _ { t } , \mathbf { y } _ { t } | \mathbf { w } _ { 0 , \star } ) \propto \displaystyle \int p ( \mathbf { w } _ { t } | \mathbf { w } _ { 0 , \star } ) \cdot p ( \mathbf { y } _ { t } | \mathbf { X } _ { t } , \mathbf { w } _ { t } ) d \mathbf { w } _ { t } } \\ & { \displaystyle \times \displaystyle \int \exp ( - \frac { \| \mathbf { w } _ { t } - \mathbf { w } _ { 0 , \star } \| ^ { 2 } } { 2 R ^ { 2 } / d } ) \cdot \exp ( - \frac { \| \mathbf { y } _ { t } - \mathbf { X } _ { t } \mathbf { w } _ { t } \| ^ { 2 } } { 2 \sigma ^ { 2 } } ) d \mathbf { w } _ { t } } \\ & { \displaystyle \overset { ( i ) } { \propto } \exp ( - \frac { \| \mathbf { w } _ { 0 , \star } \| ^ { 2 } } { 2 R ^ { 2 } / d } + \frac { 1 } { 2 } \Big ( \frac { \mathbf { w } _ { 0 , \star } } { R ^ { 2 } / d } + \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { y } _ { t } } { \sigma ^ { 2 } } \Big ) ^ { \top } \Big ( \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } } { \sigma ^ { 2 } } + \frac { \mathbf { I } _ { d } } { R ^ { 2 } / d } \Big ) ^ { - 1 } \Big ( \frac { \mathbf { w } _ { 0 , \star } } { R ^ { 2 } / d } + \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { y } _ { t } } { \sigma ^ { 2 } } \Big ) ) } \\ & \displaystyle \times \exp ( - \frac { 1 } { 2 } \mathbf { w } _ { 0 , \star } ^ { \top } ( ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + \frac { d \sigma ^ { 2 } } { R ^ { 2 } } \mathbf { I } _ { d } ) ^ { - 1 } \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } } { R ^ { 2 } / d } ) \mathbf { w } _ { 0 , \star } + \mathbf { w } _ { 0 , \star } ^ { \top } \Big ( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + \frac { d \sigma ^ { 2 } } { R ^ { 2 } } \mathbf { I } _ { d } \Big ) ^ { - 1 } \frac \mathbf { X } _ { t } ^ \top \end{array} +$$ + +where (i) is obtained by integrating a multivariate Gaussian density over $\mathbf { w } _ { t }$ , and “ $\cdot$ ” drops all the terms that do not depend on $\cdot$ . Therefore, by the Bayes rule, the overall posterior distribution of $\cdot$ is given by + +$$ +\begin{array} { r l } & { p \Big ( \mathbf { w } _ { 0 , \star } | \{ ( \mathbf { X } _ { t } , \mathbf { y } _ { t } ) \} _ { t = 1 } ^ { T } \Big ) \propto p ( \mathbf { w } _ { 0 , \star } ) \cdot \displaystyle \prod _ { t = 1 } ^ { T } p ( \mathbf { X } _ { t } , \mathbf { y } _ { t } | \mathbf { w } _ { 0 , \star } ) } \\ & { \propto \exp \left( - \frac { \displaystyle \| \mathbf { w } _ { 0 , \star } \| ^ { 2 } } { \displaystyle 2 \sigma _ { w } ^ { 2 } / d } \right) \cdot } \\ & { \qquad \displaystyle \prod _ { t = 1 } ^ { T } \exp \left( - \frac { 1 } { 2 } \mathbf { w } _ { 0 , \star } ^ { \top } \left( \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + \frac { d \sigma ^ { 2 } } { R ^ { 2 } } \mathbf { I } _ { d } \right) ^ { - 1 } \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } } { R ^ { 2 } / d } \right) \mathbf { w } _ { 0 , \star } + \mathbf { w } _ { 0 , \star } ^ { \top } \left( \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } + \frac { d \sigma ^ { 2 } } { R ^ { 2 } } \mathbf { I } _ { d } \right) ^ { - 1 } \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { y } _ { t } } { R ^ { 2 } / d } \right. } \end{array} +$$ + +This means that the posterior distribution of $\mathbf { w } _ { 0 , \star }$ is Gaussian, with mean , i.e. the Bayesian estimator, equal to5 + +$$ +\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathsf { B a y e s } } : = \mathbb { E } \Big [ \mathbf { w } _ { 0 , \star } \ | \ \{ ( \mathbf { X } _ { t } , \mathbf { y } _ { t } ) \} _ { t = 1 } ^ { T } \Big ] = ( \mathbf { A } _ { T } ^ { \mathsf { B a y e s } } ) ^ { - 1 } \mathbf { c } _ { T } ^ { \mathsf { B a y e s } } , +$$ + +where + +$$ +\cdot +$$ + +We note that $\cdot$ has a similar form as our train-train estimator, but is not exactly the same. Indeed, recall the closed form of our train-train estimator is (cf. (10)) + +$$ +\_ +$$ + +where + +$$ +\cdot +$$ + +As w Bayes0,T uses the inverse and $\cdot$ uses the squared inverse, these two sets of estimators are not the same in general, no matter how we tune the $\lambda$ in the train-train estimator. This is true even if we set $\sigma _ { w } = \infty$ so that the prior of $\cdot$ becomes degenerate (and the Bayesian estimator reduces to the MLE). + +# D DETAILS ON THE FEW-SHOT IMAGE CLASSIFICATION EXPERIMENT + +Here we provide additional details of the few-shot image classification experiment in Section 5.2. + +Optimization and architecture For both methods, we run a few gradient steps on the inner argmin problem to obtain (an approximation of) $\mathbf { w } _ { t }$ , and plug $\mathbf { w } _ { t }$ into the \`{tr-val,tr-tr}t (w0) (which involves $\mathbf { w } _ { t }$ through implicit function differentiation) for optimizing $\mathbf { w } _ { 0 }$ in the outer loop. + +For both train-train and train-val methods, we use the standard 4-layer convolutional network in (Finn et al., 2017; Zhou et al., 2019) as the backbone (i.e. the architecture for $\mathbf { w } _ { t }$ ). We further tune their hyper-parameters, such as the regularization constant $\lambda$ , the learning rate (initial learning rate and its decay strategy), and the gradient clipping threshold. + +Datasets We experiment on miniImageNet (Ravi & Larochelle, 2017) and tieredImageNet (Ren et al., 2018). MiniImageNet consists of 100 classes of images from ImageNet (Krizhevsky et al., 2012) and each class has 600 images of resolution $8 4 \times 8 4 \times 3$ . We use 64 classes for training, 16 classes for validation, and the remaining 20 classes for testing (Ravi & Larochelle, 2017). TieredImageNet consists of 608 classes from the ILSVRC-12 data set (Russakovsky et al., 2015) and each image is also of resolution $8 4 \times 8 4 \times 3$ . TieredImageNet groups classes into broader hierarchy categories corresponding to higher-level nodes in the ImageNet. Specifically, its top hierarchy has 20 training categories (351 classes), 6 validation categories (97 classes) and 8 test categories (160 classes). This structure ensures that all training classes are distinct from the testing classes, providing a more realistic few-shot learning scenario. + +# D.1 EFFECT OF THE SPLIT RATIO FOR THE TRAIN-VAL METHOD + +We further tune the split $( n _ { 1 } , n _ { 2 } )$ in the train-val method and report the results in Table 2. As can be seen, as the number of test samples $n _ { 2 }$ increases, the percent classification accuracy on both the miniImageNet and tieredImageNet datasets becomes higher. This testifies our theoretical affirmation in Corollary 8. However, note that even if we take the best split $( n _ { 1 } , n _ { 2 } ) = ( 5 , 2 5 )$ (and compare again with Table 1), the train-val method still performs worse than the train-train method. + +We remark that our theoretical results on train-train performing better than train-val (in Section 4) rely on the assumptions that the data can be exactly realized by the representation and contains no label noise. Our experimental results here may suggest that the miniImageNet and tieredImageNet few-shot tasks may have a similar structure (there exists a NN representation that almost perfectly realizes the label with no noise) that allows the train-train method to perform better than the trainval method. + +Table 2: Investigation of the effects of training/validation splitting ratio in the train-val method (iMAML) to the few-shot classification accuracy $( \% )$ on miniImageNet and tieredImageNet. + +
datasetsn1 =25,n2=5n1 =15,n2=15n1=5,n2=25
miniImageNet62.09 ± 0.9763.56 ± 0.9563.92 ± 1.04
tieredImageNet66.45 ± 1.0567.30 ± 0.9867.50 ± 0.94
+ +# E COMPARISON WITH CROSS-VALIDATION ON SYNTHETIC DATA + +We test the effect of using cross-validation for the train-val method on the same synthetic data (realizable linear centroid meta-learning) as in Section 5.1. + +Method We fix the number of per-task data $n = 2 0$ , and use 4-fold cross validation in the following two settings: $\_$ , and $( n _ { 1 } , n _ { 2 } ) \ : = \ : ( 1 5 , 5 )$ . In both cases, we partition the data into 4 parts each with 5 data points, and we roulette over 4 possible partitions of which one as train and which one as validation. The estimated optimal $\hat { \mathbf { w } } _ { 0 } ^ { \mathrm { c v } }$ is obtained by minimize the averaged + +train-val loss over the 4 partitions: + +$$ +\begin{array} { r l } & { \ell _ { t } ^ { \mathrm { c v } } ( \mathbf w _ { 0 } ) : = \displaystyle \frac { 1 } { 4 } \sum _ { j = 1 } ^ { 4 } \frac { 1 } { 2 n _ { v \mathrm { e l } } } \left\| \mathbf { y } _ { t } ^ { \mathrm { v a l } , j } - \mathbf { X } _ { t } ^ { \mathrm { v a l } , j } \mathcal { A } _ { \lambda } ( \mathbf w _ { 0 } ; \mathbf { X } _ { t } ^ { \mathrm { t r a i n } , j } , \mathbf { y } _ { t } ^ { \mathrm { t r a i n } , j } ) \right\| ^ { 2 } , } \\ & { \quad \widehat { \mathbf { w } } _ { 0 } ^ { \mathrm { c v } } = \displaystyle \arg \operatorname* { m i n } _ { \mathbf { w } _ { 0 } } \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \ell _ { t } ^ { \mathrm { c v } } ( \mathbf w _ { 0 } ) , } \end{array} +$$ + +where superscript $\cdot$ denotes the index of the cross-validation. The performance is depicted in Figure 2. + +![](images/1413c4c29e261cb27dc4940c073d6a489f71464d80755a6423234eec9cec32ea.jpg) +Figure 2: The scaled (by T ) \`2-error of w {tr-tr,tr-val,cv}0,T a s the ratio $\cdot$ varies from 0 to 3 $( n = 2 0$ and $\cdot$ are fixed). For the cross-validation method, the regularization coefficient $\cdot$ is tuned. + +Result As showin in Figure 2, for both $( n _ { 1 } , n _ { 2 } ) ~ = ~ ( 1 5 , 5 )$ and $\_$ , using cross-validation consistently beats the performance of the train-val method. This demonstrates the variance-reduction effect of cross-validation. Note that the best performance (among the crossvalidation methods) is still achieved at $n _ { 1 } = 5$ , similar as for the vanilla train-val method. However, numerically, the best cross-validation performance is still not as good as the train-train method. + +Leave-one-out cross-validation Figure 3 left further tests with an increased number of per-task samples $\cdot$ , and incorporates the train-val method with the leave-one-out cross-validation, i.e., $\_$ and $( n _ { 1 } , n _ { 2 } ) = ( 1 , 3 9 )$ . We repeat the experiment 10 times for plotting the error bar (shaded area). We see that the train-train method still outperforms the train-val method with leave-one-out validation. + +We further increase the per-task sample size $n$ to 200, and test the leave-one-out method with a sample split of $( n _ { 1 } , n _ { 2 } ) = ( 1 , 1 9 9 )$ . We adopt a matrix inverse trick to mitigate the computational overhead of finding $\_$ . To ease the computation, we also vary $d$ from 0 to 400 on a coarse grid (with an increment of 80). From Figure 3 right, we see that the leave-one-out method can slightly beat the train-train method for some $\cdot$ values. Compared to $n = 2 0$ and $\cdot$ experiments, this is the first time of seeing leave-one-out method outperforms the traintrain method. We suspect that the per-task sample size $n$ plays a vital role in the power of the leave-one-out method: a large $\textit { \textbf { u } }$ tends to have a strong variance reduction effect in the leave-one-out method, so that the performance can be improved. Yet using the leave-one-out method with a large $\cdot$ invokes a high computational burden. + +![](images/a7ec48a17bacf333016e73c4c25d108d4a28507720d736827797d2c569bc6621.jpg) +Figure 3: The scaled (by T ) \`2-error of w {tr-tr,cv}0,T as the ratio $d / n$ varies from 0 to 3 $\cdot$ and $\cdot$ are fixed). For the cross-validation method, the regularization coefficient $\cdot$ . Left: $\cdot$ . Leave-out-out CV performs worse than the train-train method. Right: $n = 2 0 0$ . Leave one-out CV appears better than the train-train method for $d / n \in \{ 1 . 2 , 1 . 6 \}$ . + +# F NONASYMPTOTIC ANALYSIS UNDER GENERAL SCALINGS OF $\cdot$ + +We sketch an nonasymptotic analysis of the train-train method in the realizable linear model in Section 4. We assume in addition that ${ } _ { 6 } \qquad \quad \cdot \qquad ^ { 6 }$ . + +We begin by recalling from Appendix B.1 and B.2 that the train-train and train-val estimators have closed-form expressions + +$$ +\cdot +$$ + +where + +$$ +\begin{array} { r l } & { \mathbf { A } _ { t } : = \lambda ^ { 2 } \bigg ( \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } } { n } + \lambda \mathbf { I } _ { d } \bigg ) ^ { - 2 } \frac { \mathbf { X } _ { t } ^ { \top } \mathbf { X } _ { t } } { n } , } \\ & { \mathbf { B } _ { t } : = \lambda ^ { 2 } \bigg ( \frac { \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } } { n _ { 1 } } + \lambda \mathbf { I } _ { d } \bigg ) ^ { - 1 } \frac { \mathbf { X } _ { t } ^ { \mathrm { v a l } \top } \mathbf { X } _ { t } ^ { \mathrm { v a l } } } { n _ { 2 } } \bigg ( \frac { \mathbf { X } _ { t } ^ { \mathrm { t r a i n } \top } \mathbf { X } _ { t } ^ { \mathrm { t r a i n } } } { n _ { 1 } } + \lambda \mathbf { I } _ { d } \bigg ) ^ { - 1 } . } \end{array} +$$ + +Nonasymptotic result for $\cdot$ For simplicity, we restrict attention on the analysis of the traintrain estimator $\widehat { \mathbf { w } } _ { 0 , T } ^ { \mathtt { t r - t r } }$ b , whose closed form expression is given in (44). Analysis of the train-val esti + +We sketch a proof for the following + +Result: Let $T = \Omega ( d )$ and $( d , n )$ is such that + +$$ +\cdot +$$ + +(which for example holds if $( d , n )$ are in the proportional limit), then with high probability we have + +$$ +\begin{array} { r l } & { \quad \mathrm { M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { t r } } ) = \displaystyle \frac { R ^ { 2 } } { d } \bigg ( 1 \pm O \bigg ( \frac { 1 } { \sqrt { d } } \bigg ) \bigg ) \cdot \bigg [ \frac { 1 } { T } \cdot \bigg ( d \cdot f _ { \mathrm { t r - t r } } ( d , n ) \pm O \bigg ( d \sqrt { \frac { \log ( T / \delta ) } { T } } \bigg ) \bigg ) \bigg ] } \\ & { \approx \displaystyle \frac { R ^ { 2 } } { T } \cdot f _ { \mathrm { t r - t r } } ( d , n ) = \frac { 1 } { T } \mathrm { A s y m M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r - t r } } ) , } \end{array} +$$ + +that is, the MSE for the train-train method concentrates around the asymptotic MSE. + +Proof Sketch We first define the matrix + +$$ +\pmb { \Sigma } _ { T } : = \left( \sum _ { t = 1 } ^ { T } \mathbf { A } _ { t } \right) ^ { - 2 } \sum _ { t = 1 } ^ { T } \mathbf { A } _ { t } ^ { 2 } = \frac { 1 } { T } \cdot \left( \frac { \sum _ { t = 1 } ^ { T } \mathbf { A } _ { t } } { T } \right) ^ { - 2 } \frac { \sum _ { t = 1 } ^ { T } \mathbf { A } _ { t } ^ { 2 } } { T } , +$$ + +which will be key to our analysis. Observe that conditioned on ${ \bf A } _ { t }$ (and only looking at the randomness of $\mathbf { w } _ { t }$ ), we have + +$$ +\_ +$$ + +Therefore, applying the Hanson-Wright inequality (Vershynin, 2018, Theorem 6.2.1) yields that + +$$ +- +$$ + +with probability at least $\cdot$ . In the following, we argue that $\cdot$ is the dominating term in the above bound and concentrates around the asymptotic MSE in Lemma 5, whereas the error terms within the max are lower order errors compared with $\operatorname { t r } ( \Sigma _ { T } )$ . + +Concentration of $\cdot$ Recall that ${ \bf A } _ { t }$ are i.i.d. PSD matrices in $\cdot$ . We have + +$$ +\cdot +$$ + +We argue that I is the main term that depends on $( d , n )$ and is independent of $T$ . Further, $\cdot$ has eigenvalues $\lambda ^ { 2 } \sigma _ { i } / ( \lambda + \sigma _ { i } ) ^ { 2 }$ where $\cdot$ are the eigenvalues of $\cdot$ , and $\cdot$ has uniformly distributed eigenvectors. Following the same analysis of Lemma 5, we see that + +$$ +\cdot +$$ + +This is exactly the same quantity that appeared in the asymptotic MSE for the train-train method in Theorem 4. In the following we assume that $d , n$ is such that $\_$ . + +We further argue that terms $\cdot$ and III are low-order terms compared with term I. Indeed, term I is $O ( d )$ . Applying matrix concentrations (e.g. the matrix Bernstein inequality), we can get that terms II and III are of order $-$ with probability at least $1 - \delta$ . Combining the terms yields that + +$$ +\_ +$$ + +with high probability. + +Controlling the error in the MSE We now control $\cdot$ and (consequently) $\| \Sigma _ { T } \| _ { \mathrm { o p } }$ . We wish to show that + +$$ +\left\| \Sigma _ { T } \right\| _ { \mathsf { F r } } \leq O \left( { \frac { 1 } { \sqrt { d } } } \right) \cdot \operatorname { t r } ( \Sigma _ { T } ) +$$ + +with high probability. This can be seen from the combination of two results: (1) $\mathrm { t r } ( \Sigma _ { T } ) = \Omega ( d / T )$ by the preceding part, and (2) + +$$ +\_ +$$ + +The above requires (1) $\_$ , which is true since we have $\_$ and thus $\left\| \mathbf { A } _ { t } ^ { 2 } \right\| _ { \mathsf { F r } } \leq \lambda ^ { 2 } \sqrt { d }$ , and (2) $\begin{array} { r } { \lambda _ { \operatorname* { m i n } } \bigl ( \sum _ { t \leq T } \mathbf { A } _ { t } / T \bigr ) = \Omega ( 1 ) } \end{array}$ with high probability, which is true whenever $T = \Omega ( d )$ because of matrix concentration and the fact that $\lambda _ { \operatorname* { m i n } } ( \mathbb { E } [ \mathbf { A } _ { 1 } ] ) = \Omega ( 1 )$ . + +Putting together We have with high probability that + +$$ +\mathrm { M S E } ( \widehat { \mathbf { w } } _ { 0 , T } ^ { \mathrm { t r } \cdot \mathrm { t r } } ) = \frac { R ^ { 2 } } { d } \bigg ( 1 \pm O \bigg ( \frac { 1 } { \sqrt { d } } \bigg ) \bigg ) \cdot \bigg [ \frac { 1 } { T } \cdot \bigg ( d \cdot f _ { \mathrm { t r } \cdot \mathrm { t r } } ( d , n ) \pm O \bigg ( d \sqrt { \frac { \log ( T / \delta ) } { T } } \bigg ) \bigg ) \bigg ] . +$$ + +as long as $T = \Omega ( d )$ and $\cdot$ is such that $\_$ + +# F.1 SYNTHETIC EXPERIMENT + +We verify our theoretical findings under general scalings of $d , n , T$ . We adopt the data generating model in Section 5.1 again. To compare the performance of the train-train and train-val methods, we choose the number of tasks $\cdot$ and per-task sample size $n = 1 0 0$ . We vary $\cdot$ from 0 to 300. Note that now $T$ is comparable to $\cdot$ and $\cdot$ and much smaller than $T = 1 0 0 0$ used in previous experiments. Figure 4 shows the close fit of reference curves to the simulated $\cdot$ errors. + +![](images/884f48f2f05610e81ad493ff8e7d6acb8f08491991b24912cf3460342ab3e75b.jpg) +Figure 4: The scaled (by $T$ ) $\cdot$ -error of $\widehat { \mathbf { w } } _ { 0 , T } ^ { \{ \mathrm { t r - t r , t r - v a l } \} }$ as the ratio $\cdot$ varies from 0 to 3 in the general and are fixed). The regularization coefficient the train-train method and $\lambda = 2 0 0 0$ for the train-val method. \ No newline at end of file diff --git a/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_content_list.json b/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..0137c8056be780922d3ed923ccbb240db271a04d --- /dev/null +++ b/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_content_list.json @@ -0,0 +1,5750 @@ +[ + { + "type": "text", + "text": "HOW IMPORTANT IS THE TRAIN-VALIDATION SPLIT IN META-LEARNING? ", + "text_level": 1, + "bbox": [ + 176, + 98, + 823, + 145 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 184, + 171, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 236, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Meta-learning aims to perform fast adaptation on a new task through learning a “prior” from multiple existing tasks. A common practice in meta-learning is to perform a train-validation split where the prior adapts to the task on one split of the data, and the resulting predictor is evaluated on another split. Despite its prevalence, the importance of the train-validation split is not well understood either in theory or in practice, particularly in comparison to the more direct non-splitting method, which uses all the per-task data for both training and evaluation. ", + "bbox": [ + 233, + 266, + 764, + 363 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We provide a detailed theoretical study on whether and when the train-validation split is helpful on the linear centroid meta-learning problem, in the asymptotic setting where the number of tasks goes to infinity. We show that the splitting method converges to the optimal prior as expected, whereas the non-splitting method does not in general without structural assumptions on the data. In contrast, if the data are generated from linear models (the realizable regime), we show that both the splitting and non-splitting methods converge to the optimal prior. Further, perhaps surprisingly, our main result shows that the non-splitting method achieves a strictly better asymptotic excess risk under this data distribution, even when the regularization parameter and split ratio are optimally tuned for both methods. Our results highlight that data splitting may not always be preferable, especially when the data is realizable by the model. We validate our theories by experimentally showing that the non-splitting method can indeed outperform the splitting method, on both simulations and real meta-learning tasks. ", + "bbox": [ + 233, + 366, + 764, + 559 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 585, + 334, + 602 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Meta-learning, also known as “learning to learn”, has recently emerged as a powerful paradigm for learning to adapt to unseen tasks (Schmidhuber, 1987). The high-level methodology in metalearning is akin to how human beings learn new skills, which is typically done by relating to certain prior experience that makes the learning process easier. More concretely, meta-learning does not train one model for each individual task, but rather learns a “prior” model from multiple existing tasks so that it is able to quickly adapt to unseen new tasks. Meta-learning has been successfully applied to many real problems, including few-shot image classification (Finn et al., 2017; Snell et al., 2017), hyper-parameter optimization (Franceschi et al., 2018), low-resource machine translation (Gu et al., 2018) and short event sequence modeling (Xie et al., 2019). ", + "bbox": [ + 173, + 617, + 825, + 742 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "A common practice in meta-learning algorithms is to perform a sample splitting, where the data within each task is divided into a training split which the prior uses to adapt to a task-specific predictor, and a validation split on which we evaluate the performance of the task-specific predictor (Nichol et al., 2018; Rajeswaran et al., 2019; Fallah et al., 2020; Wang et al., 2020a). For example, in a 5-way $k$ -shot image classification task, standard meta-learning algorithms such as MAML (Finn et al., 2017) use $5 k$ examples within each task as training data, and use additional examples (e.g. $k$ images, one for each class) as validation data. This sample splitting is believed to be crucial as it matches the evaluation criterion at meta-test time, where we perform adaptation on training data from a new task but evaluate its performance on unseen data from the same task. ", + "bbox": [ + 174, + 750, + 823, + 875 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Despite the aformentioned importance, performing the train-validation split has a potential drawback from the data efficiency perspective — Because of the split, neither the training nor the evaluation stage is able to use all the available per-task data. In the few-shot image classification example, each task has a total of $6 k$ examples available, but the train-validation split forces us to use these data separately in the two stages. Meanwhile, performing the train-validation split is also not the only option in practice: there exist algorithms such as Reptile (Nichol & Schulman, 2018) and Meta-MinibatchProx (Zhou et al., 2019) that can instead use all the per-task data for training the task-specific predictor and also perform well empirically on benchmark tasks. These algorithms modify the loss function in the outer loop so that the training loss no longer matches the meta-test loss, but may have the advantage in terms of data efficiency for the overall problem of learning the best prior. So far it is theoretically unclear how these two approaches (with/without train-validation split) compare with each other, which motivates us to ask the following ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 228 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Question: Is the train-validation split necessary and optimal in meta-learning? ", + "bbox": [ + 233, + 239, + 745, + 253 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we perform a detailed theoretical study on the importance of the train-validation split. We consider the linear centroid meta-learning problem (Denevi et al., 2018b), where for each task we learn a linear predictor that is close to a common centroid in the inner loop, and find the best centroid in the outer loop (see Section 2 for the detailed problem setup). This problem captures the essence of meta-learning with non-linear models (such as neural networks) in practice, yet is sufficiently simple that allows a precise theoretical characterization. We use a biased ridge solver as the inner loop with a (tunable) regularization parameter, and compare two outer-loop algorithms of either performing the train-validation split (the train-val method) or using all the per-task data for both training and evaluation (the train-train method). Specifically, we compare the two methods when the number of tasks $T$ is large, and examine if and how fast they converge to the (properly defined) best centroid at meta-test time. We summarize our contributions as follows: ", + "bbox": [ + 174, + 265, + 825, + 417 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• On the linear centroid meta-learning problem, we show that the train-validation split is necessary in the general agnostic setting: As $T \\to \\infty$ , the train-val method converges to the optimal centroid for test-time adaptation, whereas the train-train method does not without further assumptions on the tasks (Section 3). The convergence of the train-val method is expected since its (population) training loss is equivalent to the meta-test time loss, whereas the non-convergence of the train-train method is because these two losses are not equivalent in general. ", + "bbox": [ + 174, + 428, + 823, + 512 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• Our main theoretical contribution is to show that the train-validation split is not necessary and even non-optimal, in the perhaps more interesting regime when there are structural assumptions on the tasks: When the data are generated from noiseless linear models, both the train-val and traintrain methods converge to the common best centroid, and the train-train method achieves a strictly better (asymptotic) estimation error and test loss than the train-val method (Section 4). This is in stark contrast with the agnostic case, and suggests that data efficiency may indeed be more important when the tasks have a nice structure. Our results build on tools from random matrix theory in the proportional regime, which may be of broader technical interest. ", + "bbox": [ + 174, + 516, + 823, + 627 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We perform meta-learning experiments on simulations and benchmark few-shot image classification tasks, showing that the train-train method consistently outperforms the train-val method (Section 5 & Appendix D). This validates our theories and presents empirical evidence that samplesplitting may not be crucial; methods that utilize the per-task data more efficiently may be preferred. ", + "bbox": [ + 176, + 631, + 823, + 686 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.1 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 704, + 326, + 717 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Meta-learning and representation learning theory Baxter (2000) provided the first theoretical analysis of meta-learning via covering numbers, and Maurer et al. (2016) improved the analysis via Gaussian complexity techniques. Another recent line of theoretical work analyzed gradient-based meta-learning methods (Denevi et al., 2018a; Finn et al., 2019; Khodak et al., 2019; Ji et al., 2020) and showed guarantees for convex losses by using tools from online convex optimization. Saunshi et al. (2020) proved the success of Reptile in a one-dimensional subspace setting. Wang et al. (2020b) compared the performance of train-train and train-val methods for learning the learning rate. Denevi et al. (2018b) proposed the linear centroid model studied in this paper, and provided generalization error bounds for train-val method; the bounds proved also hold for train-train method, so are not sharp enough to compare the two algorithms. Wang et al. (2020a) studied the convergence of gradient-based meta-learning by relating to the kernelized approximation. On the representation learning end, Du et al. (2020); Tripuraneni et al. (2020a;b) showed that ERM can successfully pool data across tasks to learn the representation. Yet the focus is on the accurate estimation of the common representation, not on the fast adaptation of the learned prior. Lastly, we remark that there are analyses for other representation learning schemes (McNamara & Balcan, 2017; Galanti et al., 2016; Alquier et al., 2016). ", + "bbox": [ + 174, + 729, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Empirical understandings of meta-learning Raghu et al. (2020) investigated the representation learning perspective of meta-learning and showed that MAML with a full finetuning inner loop mostly learns the top-layer linear classifier and does not change the representation layers much. This result partly justifies the validity our linear centroid meta-learning problem in which the features (representations) are fixed and only a linear classifier is learned. Goldblum et al. (2020) investigated the difference of the neural representations learned by classical training (supervised learning) and meta-learning, and showed that the meta-learned representation is both better for downstream adaptation and makes classes more separated than the classically trained one. Although the classical training method in (Goldblum et al., 2020) does not perform a train-validation split, it is not exactly the same as the train-train method considered in this work as it effectively performs a supervised learning on all tasks combined and does not do a per-task adaptation. ", + "bbox": [ + 173, + 147, + 825, + 300 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Multi-task learning Multi-task learning also exploits structures and similarities across multiple tasks. The earliest idea dates back to Caruana (1997); Thrun & Pratt (1998); Baxter (2000), initially in connections to neural network models. They further motivated other approaches using kernel methods (Evgeniou et al., 2005; Argyriou et al., 2007) and multivariate linear regression models with structured sparsity (Liu et al., 2009; 2015). More recent advances on deep multi-task learning focus on learning shared intermediate representations across tasks Ruder (2017). These multi-task learning approaches usually minimize the joint empirical risk over all tasks, and the models for different tasks are enforced to share a large amount of parameters. In contrast, meta-learning only requires the models to share the same “prior”, which is more flexible than multi-task learning. ", + "bbox": [ + 174, + 315, + 825, + 441 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 176, + 460, + 339, + 477 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this paper, we consider the standard meta-learning setting, in which we observe data from $T \\geq 1$ supervised learning tasks, and the goal is to find a prior (or “initialization”) using the combined data, such that the $( T + 1 )$ -th new task may be solved sample-efficiently using the prior. ", + "bbox": [ + 176, + 492, + 825, + 535 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Linear centroid meta-learning We instantiate our study on the linear centroid meta-learning problem (also known as learning to learn around a common mean, Denevi et al. (2018b)), where we wish to learn a task-specific linear predictor $\\mathbf { w } _ { t } \\in \\mathbb { R } ^ { d }$ in the inner loop for each task $t$ , and learn a “centroid” $\\mathbf { w } _ { 0 }$ in the outer loop that enables fast adaptation to $\\mathbf { w } _ { t }$ within each task: ", + "bbox": [ + 173, + 549, + 825, + 606 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Find the best centroid $\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }$ for adapting to a linear predictor $\\mathbf { w } _ { t }$ on each task $t$ ", + "bbox": [ + 223, + 613, + 769, + 630 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Formally, we assume that we observe training data from $T \\geq 1$ tasks, where for each task index $t$ we sample a task $p _ { t }$ (a distribution over $\\mathbb { R } ^ { d } \\times \\mathbb { R } ^ { \\cdot }$ ) from some distribution of tasks $\\Pi$ , and observe $n$ examples $( { \\bf X } _ { t } , { \\bf y } _ { t } ) \\in \\mathbb { R } ^ { n \\times d } \\times \\mathbb { R } ^ { n }$ that are drawn i.i.d. from $p _ { t }$ : ", + "bbox": [ + 174, + 643, + 825, + 688 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/301921769484b7937242d9c376e964be6dc57b8369140abb728f06ea00aeb3ad.jpg", + "text": "$$\np _ { t } \\sim \\Pi , ~ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = 1 } ^ { n } ~ \\mathrm { w h e r e } ~ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\overset { \\mathrm { i i d } } { \\sim } p _ { t } .\n$$", + "text_format": "latex", + "bbox": [ + 285, + 694, + 712, + 717 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We do not make further assumptions on $( n , d )$ ; in particular, we allow the underdetermined setting $n \\leq d$ , in which there exists (one or many) interpolators $\\widetilde { \\mathbf { w } } _ { t }$ that perfectly fit the data: $\\mathbf { X } _ { t } \\widetilde { \\mathbf { w } } _ { t } = \\mathbf { y } _ { t }$ . ", + "bbox": [ + 173, + 722, + 826, + 751 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Inner loop: Ridge solver with biased regularization towards the centroid Our goal in the inner loop is to find a linear predictor $\\mathbf { w } _ { t }$ that fits the data in task $t$ while being close to the given “centroid” $\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }$ . We instantiate this through ridge regression (i.e. linear regression with $L _ { 2 }$ regularization) where the regularization biases $\\mathbf { w } _ { t }$ towards the centroid. Formally, for any $\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }$ and any dataset $( \\mathbf { X } , \\mathbf { y } )$ , we consider the algorithm ", + "bbox": [ + 173, + 765, + 825, + 835 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/460b650cffcf39412a777e8d9b649f95c3669055692b207504f0c8af9526f56e.jpg", + "text": "$$\n4 \\lambda _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) : = \\operatorname { a r g m i n } _ { \\mathbf { w } } { \\frac { 1 } { n } } \\left\\| \\mathbf { X } \\mathbf { w } - \\mathbf { y } \\right\\| ^ { 2 } + \\lambda \\left\\| \\mathbf { w } - \\mathbf { w } _ { 0 } \\right\\| ^ { 2 } = \\mathbf { w } _ { 0 } + \\left( \\mathbf { X } ^ { \\top } \\mathbf { X } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } ^ { \\top } ( \\mathbf { y } - \\mathbf { X } \\mathbf { w } _ { 0 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 840, + 839, + 873 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\lambda > 0$ is the regularization strength (typically a tunable hyper-parameter). As we regularize by ${ \\left\\| { \\bf w } - { \\bf w } _ { 0 } \\right\\} | ^ { 2 }$ , this inner solver encourages the solution to be close to $\\mathbf { w } _ { 0 }$ , as we desire. Such a regularizer is widely used in practical meta-learning algorithms such as MetaOptNet (Lee et al., ", + "bbox": [ + 174, + 878, + 826, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2019) and Meta-MinibatchProx (Zhou et al., 2019). In addition, as $\\lambda 0$ , this solver recovers gradient descent fine-tuning: we have ", + "bbox": [ + 174, + 102, + 823, + 132 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/84b078ec17634c44e91ed5cc3da38a7f9d42802e47b6f1e88440ce89f9b61339.jpg", + "text": "$$\n\\mathcal { A } _ { 0 } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) : = \\operatorname* { l i m } _ { \\lambda \\to 0 } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) = \\mathbf { w } _ { 0 } + \\mathbf { X } ^ { \\dagger } ( \\mathbf { y } - \\mathbf { X } \\mathbf { w } _ { 0 } ) = \\arg \\operatorname* { m i n } _ { \\mathbf { X } \\mathbf { w } = \\mathbf { y } } \\left\\| \\mathbf { w } - \\mathbf { w } _ { 0 } \\right\\| ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 196, + 135, + 802, + 160 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "(where $\\mathbf { X } ^ { \\dagger } \\in \\mathbb { R } ^ { d \\times n }$ denotes the pseudo-inverse of $\\mathbf { X }$ ). This is the minimum-distance interpolator of $( \\mathbf { X } , \\mathbf { y } )$ and also the solution found by gradient descent 1 on $\\left\\| \\mathbf { X } \\mathbf { w } - \\mathbf { y } \\right\\| ^ { 2 }$ initialized at $\\mathbf { w } _ { 0 }$ . Therefore our ridge solver with $\\lambda > 0$ can be seen as a generalized version of the gradient descent solver used in MAML (Finn et al., 2017). ", + "bbox": [ + 173, + 164, + 825, + 223 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Outer loop: Finding the best centroid In the outer loop, our goal is to find the best centroid $\\mathbf { w } _ { 0 }$ . The standard approach in meta-learning is to perform a train-validation split, that is, (1) execute the inner solver on a first split of the task-specific data, and (2) evaluate the loss on a second split, yielding a function of $\\mathbf { w } _ { 0 }$ that we can optimize. This two-stage procedure can be written as ", + "bbox": [ + 173, + 236, + 825, + 294 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = 1 } ^ { n _ { 1 } }$ and $( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } , \\mathbf { y } _ { t } ^ { \\mathsf { v a l } } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = n _ { 1 } + 1 } ^ { n }$ are two disjoint splits of the per-task data $\\left( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } \\right)$ of size $( n _ { 1 } , n _ { 2 } )$ , with $n _ { 1 } + n _ { 2 } = n$ . Written concisely, this is to consider the “split loss” ", + "bbox": [ + 176, + 320, + 826, + 367 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/f61eefa869e8b6c1e7e7a2f667d84293b0a3f324337c94d92084f77df5e66951.jpg", + "text": "$$\n\\ell _ { t } ^ { { \\mathrm { t r } } - { \\mathrm { v a l } } } ( \\mathbf { w } _ { 0 } ) : = \\frac { 1 } { 2 n _ { 2 } } \\left. \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\boldsymbol { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } ) \\right. ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 308, + 369, + 689, + 402 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this paper, we will also consider an alternative version, where we do not perform the trainvalidation split, but instead use all the per-task data for both training and evaluation. Mathematically, this is to look at the “non-split loss” ", + "bbox": [ + 173, + 411, + 825, + 453 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/413a38883454527b9da125c0c3f8e310be69c118e783c04f1eae521042776071.jpg", + "text": "$$\n\\ell _ { t } ^ { { \\mathrm { t r } } \\cdot { \\mathrm { t r } } } ( \\mathbf { w } _ { 0 } ) : = { \\frac { 1 } { 2 n } } \\left\\| \\mathbf { y } _ { t } - \\mathbf { X } _ { t } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\right\\| ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 343, + 455, + 653, + 486 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Our overall algorithm is to solve the empirical risk minimization (ERM) problem on the $T$ observed tasks, using either one of the two losses above: ", + "bbox": [ + 176, + 488, + 825, + 516 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/4a71e6f2c1f24c10e3bb1b419b90be8a2e22ecb749bc6f2250405fa670c08a69.jpg", + "text": "$$\n\\begin{array} { r l } & { \\widehat { L } _ { T } ^ { \\mathrm { t r } \\setminus \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) : = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) \\quad \\mathrm { a n d } \\quad \\widehat { L } _ { T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 } ) : = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 } ) , } \\\\ & { \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r } \\cdot \\mathrm { v a l } , \\mathrm { t r } \\cdot \\mathrm { t r } \\} } : = \\displaystyle \\arg \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } \\widehat { L } _ { T } ^ { \\{ \\mathrm { t r } \\cdot \\mathrm { v a l } , \\mathrm { t r } \\cdot \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 259, + 518, + 733, + 592 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Let $L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\vee \\mathsf { a l } , \\mathrm { t r } \\mathrm { - } \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) : = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( { \\mathbf { X } } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\ell _ { t } ^ { \\{ \\mathrm { t r } \\mathrm { - } \\vee \\mathsf { a l } , \\mathrm { t r } \\mathrm { - } \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) \\right]$ be the population risks. ", + "bbox": [ + 174, + 594, + 732, + 622 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "(Meta-)Test time The meta-test time performance of any meta-learning algorithm is a joint function of the (learned) centroid $\\mathbf { w } _ { 0 }$ and the inner algorithm $\\mathsf { A l g }$ . Upon receiving a new task $p _ { T + 1 } \\sim \\Pi$ and training data $( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) \\in \\mathbb { R } ^ { n \\times d } \\times \\mathbb { R } ^ { \\bar { n } }$ , we run the inner loop $\\mathsf { A l g }$ with prior $\\mathbf { w } _ { 0 }$ on the training data, and evaluate it on an (unseen) test example $( { \\bf x } ^ { \\prime } , y ^ { \\prime } ) \\sim p _ { T + 1 }$ : ", + "bbox": [ + 173, + 633, + 825, + 690 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/7f69ad0a1bd0e996487cfa263c31469fc31f6cc2bb47dbc0c2f5afc03268340a.jpg", + "text": "$$\nL ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ; \\mathbb { A } | \\mathbf { g } ) : = \\mathbb { E } _ { p _ { T + 1 } \\sim \\Pi } \\mathbb { E } _ { ( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) , ( \\mathbf { x } ^ { \\prime } , \\pmb { y } ^ { \\prime } ) ^ { \\sharp \\alpha } p _ { T + 1 } } \\left[ \\frac { 1 } { 2 } \\big ( \\mathbf { x } ^ { \\prime \\top } \\mathbb { A } | \\mathbf { g } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) - \\pmb { y } ^ { \\prime } \\big ) ^ { 2 } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 187, + 694, + 807, + 728 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Additionally, for both train-val and train-train methods, we need to ensure that the inner loop used for meta-test is exactly the same as that used in meta-training. Therefore, the meta-test performance for the train-val and train-train methods above should be evaluated as ", + "bbox": [ + 173, + 729, + 823, + 771 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/028d6ccb87397920918f7733dfe8032d08917a586149e945679577be70cf44ca.jpg", + "text": "$$\n\\begin{array} { r } { L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ) : = L ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ; \\mathcal { A } _ { \\lambda , n _ { 1 } } ) , \\quad L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) : = L ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ; \\mathcal { A } _ { \\lambda , n } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 243, + 773, + 751, + 794 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathcal { A } _ { \\lambda , m }$ denotes the ridge solver with regularization strength $\\lambda > 0$ on $m \\leq n$ data points. Finally, we let ", + "bbox": [ + 171, + 795, + 821, + 823 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/81ae36344c1881c133fffc5ec4eb21fbfc6209c0af206dd77dfe1b752c119428.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda ; n ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 390, + 825, + 607, + 852 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "denote the best centroid if the inner loop uses $\\mathcal { A } _ { \\lambda , n }$ . The performance of the train-val algorithm $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }$ should be compared against ${ \\bf w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )$ , whereas the train-train algorithm $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }$ should be compared against $\\mathbf { w } _ { 0 , \\star } ( \\lambda , n )$ . ", + "bbox": [ + 173, + 854, + 825, + 901 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.1 TASK-ABUNDANT SETTING THROUGH ASYMPTOTIC ANALYSIS ", + "text_level": 1, + "bbox": [ + 173, + 103, + 643, + 118 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this paper we are interested in the task-abundant setting where we fix some finite $( d , n )$ and let $T$ be very large. We analyze such a task-abundant setting through the asymptotic analysis framework, that is, examine the limiting properties of the estimator (e.g. w {tr-val,tr-tr}) as T . Here we set up the basic notation of asymptotic analysis required in this paper. We emphasize that our large $T$ setting captures practical meta-learning scenarios; for example, 5-way image classification on miniImageNet (Ravi & Larochelle, 2017) contains $\\binom { 6 4 } { 5 }$ diverse tasks (at train time). ", + "bbox": [ + 173, + 128, + 825, + 222 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Asymptotic rate of estimation & excess risk Let $L$ be any population risk with minimizer $\\mathbf { w } _ { 0 , \\star }$ (which we assume is unique), $\\widehat { L } _ { T }$ be the empirical risk on the observed data from $T$ tasks, and $\\widehat { \\mathbf { w } } _ { 0 , T }$ be the minimizer of $\\widehat { L } _ { T }$ (i.e. the ERM). We say that $\\widehat { \\mathbf { w } } _ { 0 , T }$ is consistent if $\\widehat { \\mathbf { w } } _ { 0 , T } \\to \\mathbf { w } _ { 0 , \\star }$ in probability as $T \\to \\infty$ . For consistent ERMs, we define its asymptotic parameter estimation error (in MSE loss) and asymptotic excess risk as follows2: ", + "bbox": [ + 174, + 233, + 825, + 309 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/83649bb287fec750ed8618496a74ca90cfa50a1012e0c2af73d32ac5c1aa24c9.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\operatorname* { l i m } _ { T \\infty } T \\cdot \\mathbb { E } \\Big [ \\big \\| \\widehat { \\mathbf w } _ { 0 , T } - { \\mathbf w } _ { 0 , \\star } \\big \\| ^ { 2 } \\Big ] } \\\\ & { \\displaystyle \\mathrm { A s y m E x c e s s R i s k } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\operatorname* { l i m } _ { T \\infty } T \\cdot \\mathbb { E } [ L ( \\widehat { \\mathbf w } _ { 0 , T } ) - L ( { \\mathbf w } _ { 0 , \\star } ) ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 290, + 311, + 707, + 364 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We emphasize that asymptotic statements are more refined than non-asymptotic $O ( \\cdot )$ style upper bounds in the $T \\to \\infty$ limit: they already imply the {MSE, excess risk} has order ${ \\cal O } ( 1 / T )$ and specifies the leading constant. ", + "bbox": [ + 173, + 366, + 825, + 409 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 THE IMPORTANCE OF SAMPLE SPLITTING ", + "text_level": 1, + "bbox": [ + 174, + 428, + 549, + 444 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We begin by ana her hms $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - v a l , t r - t r } \\} }$ defined in rge to the best $\\mathbf { w } _ { 0 , \\star } \\big ( \\lambda ; n _ { 1 } \\big )$ $\\mathbf { w } _ { 0 , \\star } ( \\lambda ; n )$ $T \\to \\infty$ situation where we do not make structural assumptions on the data distribution $p _ { t }$ . ", + "bbox": [ + 174, + 455, + 825, + 503 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proposition 1 (Consistency and asymptotics of train-val method). Suppose $\\begin{array} { r } { \\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] ~ \\succ ~ \\mathbf { 0 } , } \\end{array}$ , $\\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\left\\| \\mathbf { x } \\right\\| ^ { 4 } ] < \\infty$ and $\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\| \\mathbf { x } y \\| ] < \\infty$ for almost surely all $p _ { t } \\sim \\Pi$ . Then for any $\\lambda > 0$ and any $( n _ { 1 } , n _ { 2 } )$ such that $n _ { 1 } + n _ { 2 } = n ,$ , the train-val method $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }$ converges to the best test-time centroid: $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } \\to \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )$ almost surely as $T \\to \\infty$ b . Further, we have ", + "bbox": [ + 174, + 505, + 826, + 571 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/5dfb74d95d1fc63328add574a08cb3c809bf3c428cfacbeb15167eb42464df8d.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ) = \\mathrm { t r } \\big ( \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\cdot \\mathrm { C o v } \\big ( \\nabla \\ell _ { t } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\big ) \\cdot \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) } \\\\ & { \\mathrm { m E x c e s s R i s k } _ { L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ) = \\mathrm { t r } \\big ( \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\cdot \\mathrm { C o v } \\big ( \\nabla \\ell _ { t } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\big ) \\big ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 202, + 575, + 861, + 621 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proposition 2 (Inconsistency of train-train method). There exists a distribution of tasks $\\Pi$ on $d = 1$ satisfying the conditions in Proposition $^ { l }$ on which the train-train method does not converge to the best test-time centroid: for any $n \\geq 1$ and any $\\lambda > 0$ , the estimation error $\\lVert \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } - \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) \\rVert$ and the excess risk $L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) - L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) )$ b are both bounded away from $O$ almost surely as $T \\to \\infty$ . ", + "bbox": [ + 173, + 621, + 825, + 695 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Propositions 1 and 2 justify the importance of sample splitting: the train-val method converges to the best test-time centroid, whereas the train-train method does not converge to the best centroid in general. The reason behind Proposition 1 is simple: the population loss $L ^ { \\mathrm { t r - v a l } }$ for the trainval method is indeed equal to the test-time loss $L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } }$ , making the train-val method a proper ERM for the meta-test time we care about, and thus the consistency and asymptotic normality follow from classical results for the ERM (e.g. (Van der Vaart, 2000; Liang, 2016)). ", + "bbox": [ + 173, + 704, + 825, + 790 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "ntrast, for the train-train method, its expected loss measures the in-sample prediction error of the per- $L ^ { \\mathrm { t r - t r } }$ is in general not predictor, whereas alent to measur $L _ { \\lambda , n } ^ { \\mathsf { t e s t } }$ $L ^ { \\mathrm { t r - t r } }$ $L _ { \\lambda , n } ^ { \\mathsf { t e s t } }$ out-of-sample prediction error. equal in general, which leads to equently, the population minimiconverging to the minimizer of f , $L _ { \\lambda , n } ^ { \\mathsf { t e s t } }$ t and Ltr-tr f are note proof $\\widehat { \\mathbf { w } } _ { 0 , \\star }$ $L ^ { \\mathrm { t r - t r } }$ $L _ { \\lambda , n } ^ { \\mathsf { t e s t } }$ of Proposition 2 constructs a simple counter-example in , but we expect such a mismatch to generally hold in any dimension. Appendix A gives the proofs of Proposition 1 and 2. ", + "bbox": [ + 173, + 796, + 825, + 890 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 IS SAMPLE SPLITTING ALWAYS OPTIMAL? ", + "text_level": 1, + "bbox": [ + 173, + 102, + 552, + 118 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proposition 2 states a negative result for the train-train method, showing that it does not converge to the best test-time centroid without further assumptions on the data distribution. However, such a negative result is inherently worst-case, and does not preclude the possibility that there exists a data distribution on which the train-train method can also work well. In this section, we construct a simple data distribution in which we can analyze the performance of both the train-val and the train-train methods more explicitly, showing that sample splitting is indeed not optimal, and the train-train method can work better. ", + "bbox": [ + 173, + 132, + 825, + 231 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Realizable linear model We consider the following instantiation of the (generic) data distribution assumption in (1): We assume that each task $p _ { t }$ is specified by a $\\mathbf { w } _ { t } \\in \\mathbb { R } ^ { d }$ sampled from some distribution $\\Pi$ (overloading notation), and the observed data follows the noiseless linear model with ground truth parameter $\\mathbf { w } _ { t }$ : ", + "bbox": [ + 173, + 244, + 825, + 300 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/ae7ad1bd8e781e160e1ef8b27cfc314e349cdb68e8212e3c5dbfc86cd2563062.jpg", + "text": "$$\n\\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } ,\n$$", + "text_format": "latex", + "bbox": [ + 455, + 299, + 540, + 315 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where the inputs $\\mathbf { x } _ { t , i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )$ and are independent of $\\mathbf { w } _ { t }$ . We assume that $\\Pi$ has a finite second moment (i.e. $\\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\left\\| \\mathbf { w } _ { t } \\right\\| ^ { 2 } ] < \\infty )$ . Note that when $n \\geq d$ , we are able to perfectly recover $\\mathbf { w } _ { t }$ for all $t$ (by solving linear equations), therefore the problem in the inner loop is in a sense “easy”; when $n < d$ , we cannot hope for such perfect recoveries. Our goal in the outer loop is to find the best $\\mathbf { w } _ { 0 }$ , measured by the test loss $L _ { \\lambda , n } ^ { \\mathsf { t e s t } }$ for the train-train method and $L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } }$ for the train-val method. ", + "bbox": [ + 173, + 318, + 825, + 395 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 COMPARISON OF TRAIN-TRAIN AND TRAIN-VAL ON THE REALIZABLE MODEL ", + "text_level": 1, + "bbox": [ + 171, + 409, + 748, + 424 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We begin by showing that on this task and data distribution, the population best centroids $\\mathbf { w } _ { 0 , \\star } ( \\bar { \\lambda _ { \\lambda } } , n ) \\ \\stackrel { - } { = } \\ \\mathrm { a r g } \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } )$ is the same for any $( \\lambda , n )$ , and both the train-val and traintrain methods are asymptotically consistent and converge to same best centroid. ", + "bbox": [ + 173, + 434, + 825, + 478 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 3 (Consistency of both train-val and train-train methods). On the realizable linear model (6), the test-time meta loss for all $\\lambda > 0$ and all $n$ is minimized at the same point, that is, the mean of the ground truth parameters: ", + "bbox": [ + 173, + 479, + 825, + 522 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/88f06094d1a11f77740196e9e76c9cb06fef56a34e407e0f664cfcf1fc68b818.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { a r g } \\mathrm { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) = \\mathbf { w } _ { 0 , \\star } : = \\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\mathbf { w } _ { t } ] , \\ : \\ : \\ : f o r \\ : a l l \\ : \\lambda > 0 , \\ : n . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 248, + 523, + 748, + 549 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Further, both the train-val method and the train-train method are asymptotically consistent: for any $\\lambda > 0$ , $n ,$ , and $( n _ { 1 } , n _ { 2 } )$ , we have ", + "bbox": [ + 174, + 550, + 823, + 579 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/871718c43d94873bcb6c09ee713aa6b405ab88c79226fd17f39aa1cd11ac8e4c.jpg", + "text": "$$\n\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\to \\mathbf { w } _ { 0 , \\star } \\mathrm { a n d } \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\to \\mathbf { w } _ { 0 , \\star } a l m o s t s u r e l y a s T \\to \\infty\n$$", + "text_format": "latex", + "bbox": [ + 225, + 582, + 761, + 601 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "See its proof in Appendix B.1. Theorem 3 shows that both train-val and train-train methods are consistent, and they converge to the same optimal parameter $\\mathbf { w } _ { 0 , \\star }$ which is the mean of $\\mathbf { w } _ { t }$ . This is a consequence of the good structure in our realizable linear model (6): at a high level, $\\mathbf { w } _ { 0 , \\star }$ is indeed the best centroid since it has (on average) the closest distance to a randomly sampled $\\mathbf { w } _ { t }$ . ", + "bbox": [ + 174, + 607, + 825, + 664 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theoerem 3 suggests that we are now able to compare performance of the two methods based on their asymptotic parameter estimation error (for estimating $\\mathbf { w } _ { 0 , \\star }$ ). Throughout the rest of this section, let ", + "bbox": [ + 174, + 670, + 823, + 699 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/fff4b9983f40b12a78b5191337f2160224b357560aa1cbf29ce80afa8eccce49.jpg", + "text": "$$\nR ^ { 2 } : = \\mathbb { E } \\Big [ \\| \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } \\Big ]\n$$", + "text_format": "latex", + "bbox": [ + 413, + 702, + 583, + 728 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "denote the variance of $\\mathbf { w } _ { t }$ . We are now ready to state our main result. ", + "bbox": [ + 173, + 728, + 627, + 742 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 4 (Comparison of asymptotic MSE of the train-val and train-train methods). In the high-dimensional limiting regime $d , n \\infty$ , $d / n \\to \\gamma \\in ( 0 , \\infty ) .$ , the optimal rate of the traintrain method obtained by tuning the regularization $\\lambda \\in ( 0 , \\infty )$ satisfies ", + "bbox": [ + 173, + 744, + 825, + 787 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "$\\operatorname* { i n f } _ { \\lambda > 0 } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r . t r } ( n ; \\lambda ) \\big ) = \\operatorname* { i n f } _ { \\lambda > 0 } \\rho _ { \\lambda , \\gamma } R ^ { 2 } \\overset { ( \\star ) } { \\leq } \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} \\cdot R ^ { 2 } ,$ where $\\rho _ { \\lambda , \\gamma } = 4 \\gamma ^ { 2 } \\big [ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\big ] / ( \\lambda + \\gamma + 1 - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\big ( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\big ) ^ { 3 / 2 }$ and the inequality becomes equality at $\\gamma = 1$ . In contrast, the optimal rate of the train-val method by tuning the regularization $\\lambda \\in ( 0 , \\infty )$ and split ratio $s \\in ( 0 , 1 )$ is ", + "bbox": [ + 176, + 790, + 825, + 873 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/1a1af797ce829bd4902f539780125f02e2fa08ca8929b1c1e72b6ea7db9ad4a6.jpg", + "text": "$$\n\\begin{array} { r } { \\operatorname* { i n f } _ { \\lambda > 0 , s \\in ( 0 , 1 ) } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r \\cdot v a l } ( n s , n ( 1 - s ) ; \\lambda ) \\big ) = ( 1 + \\gamma ) R ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 222, + 876, + 772, + 893 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "A $\\mathrm { ; \\ m a x } \\{ 1 + 5 \\gamma / 2 7 , 5 / 2 7 + \\gamma \\} < 1 + \\gamma ( \\forall \\gamma > 0 )$ , the train-train method achieves a strictly better asymptotic rate than the train-val method when $\\lambda$ and $s$ are optimally tuned in both methods. ", + "bbox": [ + 171, + 895, + 828, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Implications Comparison between the analytical upper bound $\\operatorname* { m a x } \\{ 1 + 5 \\gamma / 2 7 , 5 / 2 7 + \\gamma \\} R ^ { 2 }$ for train-train $( 1 + \\gamma ) R ^ { 2 }$ for train-val in Theorem 4 shows that the train-train method achieves a strictly better asymptotic MSE than the train-val method, for any $\\gamma > 0 ^ { 3 }$ . (See Figure 1(a) for a visualization of the exact optimal rates and the upper bound $( \\star )$ .) Perhaps surprisingly, this suggests that the traintrain method is not only “correct” (converging to the best centroid), but can be even better than the train-val method, when the data is structured. While the “correctness” of the train-train method is a consequence of the realizable linear model, we believe its superior asymptotic MSE is due to the fact that the train-train method is able to use the data more efficiently than the train-val method. ", + "bbox": [ + 173, + 103, + 825, + 215 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Also, while we reached such a conclusion on this particular problem of linear centroid meta-learning, we suspect that this phenomenon to be not restricted to this problem, and may hold in more generality when data is structured or when the signal-to-noise ratio is high. As we are going to see, our real data experiments in Section 5.2 indeed suggests that the superiority of the train-train method may also hold on real meta-learning tasks with neural networks. ", + "bbox": [ + 173, + 222, + 825, + 291 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 PROOF HIGHLIGHTS OF THEOREM 4", + "text_level": 1, + "bbox": [ + 176, + 311, + 464, + 325 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Here we sketch the technical highlights in proving Theorem 4. We defer the full proof to Appendix B.5. ", + "bbox": [ + 174, + 338, + 823, + 367 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Exact asymptotic MSE for both methods The proof begins by calculating the exact asymptotic MSE for both methods, which we provide in the following theorem. ", + "bbox": [ + 173, + 385, + 823, + 414 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Lemma 5 (Exact asymptotic rates of the train-val and train-train methods). Suppose that $\\rho _ { \\sf t r - t r } =$ $\\begin{array} { r l r } { \\frac { \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } ( \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n ) } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } \\ \\mathrm { ~ } a n d \\rho _ { \\mathrm { t r - s i l } } } & { = } & { \\frac { \\mathbb { E } \\left[ \\left( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ^ { - 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\end{array}$ where for any n, $\\cdot$ denotes the eigenvalues of the matrix $\\cdot$ , where we recall $\\cdot$ is a random matrix with i.i.d. standard Gaussian entries. For any $( n , d )$ , we have on the realizable linear model (6) that ", + "bbox": [ + 171, + 419, + 825, + 522 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/c9e5d8ece7446d38d9ce220c8a2d09dd3d6c04518109cf7ea78b1d75acdc9fd1.jpg", + "text": "$$\n-\n$$", + "text_format": "latex", + "bbox": [ + 212, + 531, + 784, + 564 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "See its proof in Appendix B.2. Lemma 5 follows straightforwardly from the classical asymptotic result for empirical risk minimization (Van der Vaart, 2000) and simplifications of certain matrix traces in terms of the spectrum of the empirical covariance matri x 1n Pnt=1 XtX>t . ", + "bbox": [ + 173, + 580, + 825, + 625 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Simplifying and optimizing the asymptotic MSEs The asymptotic MSEs of the train-train and train-val method in Lemma 5 are not yet directly comparable, as the quantities $\\rho _ { \\tt t r - \\tt t r }$ and $\\cdot$ depend on the spectrum of the empirical covariance matrix as well as additional tunable parameters such as $\\cdot$ and $\\cdot$ (for the train-val method). Towards proving Theorem 4, we further simplify the rates and analyze the optimal tunable parameters, using separate strategies for the two methods: ", + "bbox": [ + 173, + 641, + 825, + 712 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For the train-val method, we show that the optimal tunable parameters for any $( n , d )$ is taken at a special case $\\lambda = \\infty$ and $\\_$ , at which the rates only depends on $\\cdot$ through its rank (and thus has a simple closed-form). We state this result in Corollary 8. The proof builds on algebraic manipulations of the quantity $\\cdot$ , and can be found in Appendix B.3. ", + "bbox": [ + 174, + 726, + 825, + 785 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• For the train-train method, we apply random matrix theory to simplify the spectrum of $\\cdot$ in the proportional limit where $\\cdot$ and $\\cdot$ stays a constant (Bai & Silverstein, 2010; Anderson et al., 2010), and obtain a closed-form expression of the asymptotic MSE for any $\\cdot$ , which we can analytically optimize over $\\lambda$ . We state this result in Theorem 9. The proof builds on the Steiltjes transform and its “derivative trick” (Dobriban et al., 2018), and is deferred to Appendix B.4. ", + "bbox": [ + 176, + 790, + 825, + 873 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 328, + 118 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.1 SIMULATIONS ", + "text_level": 1, + "bbox": [ + 174, + 133, + 313, + 148 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We experiment on the realizable linear model studied in Section 4. Recall that the observed data of the $t$ -th task are generated as ", + "bbox": [ + 173, + 160, + 825, + 189 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/6922c0dda557eb20eff27d709c6b68919692b7ea968138a6b0f71d892983dfb4.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } , \\quad \\mathrm { w i t h } \\quad \\mathbf { x } _ { t , i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( 0 , \\mathbf { I } _ { d } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 369, + 198, + 627, + 219 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We independently generate $\\mathbf { w } _ { t } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { w } _ { 0 , \\star } , \\mathbf { I } _ { d } / \\sqrt { d } )$ , where $\\mathbf { w } _ { 0 , \\star }$ is the linear centroid and the corresponding $R ^ { 2 } = 1$ here. The goal is to learn the linear centroid $\\mathbf { w } _ { 0 , \\star }$ using the train-train method and train-val meare quadratic in d, i.e., minimizing , therefore, we ca $\\widehat { L } _ { T } ^ { \\mathrm { t r - t r } }$ and the $\\widehat { L } _ { T } ^ { \\mathrm { t r - v a l } }$ , respectively. orm solutions h . $\\widehat { L } _ { T } ^ { \\mathrm { t r - t r } }$ and eas $\\widehat { L } _ { T } ^ { \\mathrm { t r } . }$ -valthe $\\mathbf { w } _ { 0 }$ w {tr-tr,tr-val} We m ure performance of train-train and train-val methods using the $\\ell _ { 2 }$ -error $\\lVert \\mathbf { w } _ { 0 , \\star } - \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} } \\rVert ^ { 2 }$ ", + "bbox": [ + 173, + 229, + 825, + 319 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We present the comparison among train-train and train-val methods in Figure 1 with scatter plots representing the simulation outputs under different settings. Across all the simulations, we well-tune the regularization coefficient $\\lambda$ in the train-train method, and use a sufficiently large $\\lambda = 1 0 0 0 0$ in the train-val method according to Corollary 8. The simulated results concentrate around the reference curves corresponding to our theoretical findings. This corroborates our analyses and demonstrates the better performance of train-train method on the realizable linear model. ", + "bbox": [ + 173, + 325, + 825, + 410 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We additionally investigate the effect of averaging the loss over multiple splits in the trainval method (a “cross-validation” type loss) rather than the vanilla single split. We show that such cross-validation can indeed improve over the vanilla single-split train-val method. We also experiment with the stronger “leave-one-out” style cross-validation and show that it achieves better MSEs than the constant-fold cross-validation (Appendix E). ", + "bbox": [ + 173, + 415, + 825, + 486 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/8f9f3cbc3586094e8344e1fc3ef4c0539ad59faad6af8ba3292317a176303ce0.jpg", + "image_caption": [ + "Figure 1: Panel (a) presents the optimal As $\\mathrm { \\prime m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } )$ (blue) in Theorem 9 via grid search, and the optimal $\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } )$ in Corollary 8 with $n _ { 1 } = 0$ (orange) and $n _ { 1 } = 5$ (green), as well as the upper bound of $\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } )$ (magenta) in Corollary 4. The optimal AsymMSE $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} } )$ are used as b reference curves in plots (b) and (c). Panel (b) plots the $\\ell _ { 2 }$ -error of $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }$ b the total number of tasks b increases from 20 to 1000 with an increment of 20. We fix data dimension $d = 6 0$ $n = 2 0$ . F of val method, as the ratio xperiment on varies from 0 $n _ { 1 } = 0$ ${ n } _ { 1 } = 5$ (c) shows the scaled (by are fixed). $T$ ) $\\ell _ { 2 }$ $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }$ $d / n$ $n = 2 0$ $T = 1 0 0 0$ " + ], + "image_footnote": [], + "bbox": [ + 179, + 506, + 807, + 646 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2 FEW-SHOT IMAGE CLASSIFICATION ", + "text_level": 1, + "bbox": [ + 176, + 796, + 457, + 810 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We further investigate the comparison between the train-train and train-val type methods in fewshot image classification on miniImageNet (Ravi & Larochelle, 2017) and tieredImageNet (Ren et al., 2018). ", + "bbox": [ + 174, + 823, + 825, + 864 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Methods We instantiate the train-train and train-val method in the centroid meta-learning setting with a ridge solver. The methods are almost exactly the same as in our theoretical setting in (2) and (3), with the only differences being that the parameters $\\mathbf { w } _ { t }$ (and hence $\\cdot$ ) parametrize a deep ", + "bbox": [ + 174, + 882, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "neural network instead of a linear classifier, and the loss function is the cross-entropy instead of squared loss. Mathematically, we minimize the following two loss functions: ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/34f4243dc048fa0017920ac64be59c6d2f86467447f92fe82907b2820253970f.jpg", + "text": "$$\n\\_\n$$", + "text_format": "latex", + "bbox": [ + 181, + 137, + 839, + 227 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "where $\\left( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } \\right)$ is the data for task $t$ of size $\\cdot$ , and $( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } )$ and $\\cdot$ is a split of the data of size $( n _ { 1 } , n _ { 2 } )$ . We note that both loss functions above have been considered in prior work ( $L ^ { \\mathrm { t r - v a l } }$ in iMAML (Rajeswaran et al., 2019), and $\\cdot$ in Meta-MinibatchProx (Zhou et al., 2019)), though we use slightly different implementation details from these prior work to make sure that the two methods here are exactly the same except for whether the split is used. Additional details about the implementation can be found in Appendix D. ", + "bbox": [ + 173, + 229, + 825, + 315 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Experimental settings We adopt the episodic training procedure (Finn et al., 2017; Zhou et al., 2019; Rajeswaran et al., 2019). In meta-test, we sample a set of $N$ -way $( K + 1 )$ -shot test tasks. The first $K$ instances are for training and the remaining one is for testing. In meta-training, we use the “higher way” training strategy. We set the default choice of the train-validation split ratio to be an even split $\\_$ following Zhou et al. (2019); Rajeswaran et al. (2019). For example, for a 5-way 5-shot classification setting, each task contains $\\_$ total images, and we set $\\_$ . (We additionally investigate the optimality of this split ratio in Appendix D.1.) We evaluate both methods under the transduction setting where the information is shared between the test data via batch normalization. We report the average accuracy over $\\cdot$ random test episodes with $9 5 \\%$ confidence interval. ", + "bbox": [ + 173, + 329, + 825, + 468 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Results Table 1 presents the percent classification accuracy on miniImagenet and tieredImageNet. We find that the train-train method consistently outperforms the train-val method. Specifically, on miniImageNet, train-train method outperforms train-val by $\\cdot$ and $\\cdot$ on the 1-shot 5-way and 5-shot 5-way tasks respectively; On tieredImageNet, train-train on average improves by about $6 . 4 0 \\%$ on the four testing cases. These results show the advantages of train-train method over trainval and support our theoretical findings in Theorem 4. ", + "bbox": [ + 173, + 483, + 825, + 568 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/438a2c462da1a65db2107cba786f4939ea954790b8eaeaea46eea1cbe6525cc6.jpg", + "table_caption": [ + "Table 1: Few-shot classification accuracy $\\cdot$ on the miniImageNet and tieredImageNet datasets. " + ], + "table_footnote": [], + "table_body": "
miriiiiiimethod1-shot 5-way 5-shot 5-way1-shot 20-way 5-shot 20-way
train-val48.76 ± 0.8763.56 ± 0.9517.52 ± 0.4921.32 ± 0.54
rrrrareraetrain-train50.77 ± 0.9067.43 ± 0.8921.17 ± 0.3834.30 ± 0.41
method train-val1-shot 5-way 5-shot 5-way1-shot 10-way 5-shot 10-way
50.61 ± 1.1267.30 ± 0.9829.18 ± 0.5743.15 ± 0.72
train-train54.37 ± 0.9371.45 ± 0.9435.56 ± 0.6054.50 ± 0.71
", + "bbox": [ + 174, + 599, + 825, + 714 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 736, + 320, + 752 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We study the importance of train-validation split on the linear-centroid meta-learning problem, and show that the necessity and optimality of train-validation split depends greatly on whether the tasks are structured: the sample splitting is necessary in general situations, and not necessary and nonoptimal when the tasks are nicely structured. It would be of interest to study whether a similar conclusion holds on other meta-learning problems such as learning a representation, or whether our insights can be used towards designing meta-learning algorithms with better empirical performance. ", + "bbox": [ + 173, + 767, + 825, + 852 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 872, + 285, + 887 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Pierre Alquier, The Tien Mai, and Massimiliano Pontil. Regret bounds for lifelong learning. arXiv preprint arXiv:1610.08628, 2016. ", + "bbox": [ + 174, + 895, + 823, + 922 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Greg W Anderson, Alice Guionnet, and Ofer Zeitouni. An introduction to random matrices, volume 118. Cambridge university press, 2010. ", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Andreas Argyriou, Theodoros Evgeniou, and Massimiliano Pontil. Multi-task feature learning. In Advances in neural information processing systems, pp. 41–48, 2007. ", + "bbox": [ + 173, + 141, + 825, + 171 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhidong Bai and Jack W Silverstein. Spectral analysis of large dimensional random matrices, volume 20. Springer, 2010. ", + "bbox": [ + 174, + 180, + 823, + 210 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jonathan Baxter. A model of inductive bias learning. J. Artif. Int. Res., 2000. ", + "bbox": [ + 173, + 219, + 679, + 234 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rich Caruana. Multitask learning. Machine Learning, 28(1):41–75, Jul 1997. ISSN 1573-0565. doi: 10.1023/A:1007379606734. URL https://doi.org/10.1023/A:1007379606734. ", + "bbox": [ + 176, + 244, + 820, + 273 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Giulia Denevi, Carlo Ciliberto, Dimitris Stamos, and Massimiliano Pontil. Incremental learning-tolearn with statistical guarantees. arXiv preprint arXiv:1803.08089, 2018a. ", + "bbox": [ + 176, + 282, + 821, + 313 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Giulia Denevi, Carlo Ciliberto, Dimitris Stamos, and Massimiliano Pontil. Learning to learn around a common mean. In Advances in Neural Information Processing Systems, pp. 10169–10179, 2018b. ", + "bbox": [ + 174, + 321, + 823, + 364 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Edgar Dobriban, Stefan Wager, et al. High-dimensional asymptotics of prediction: Ridge regression and classification. The Annals of Statistics, 46(1):247–279, 2018. ", + "bbox": [ + 174, + 375, + 823, + 404 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Simon S Du, Wei Hu, Sham M Kakade, Jason D Lee, and Qi Lei. Few-shot learning via learning the representation, provably. arXiv preprint arXiv:2002.09434, 2020. ", + "bbox": [ + 174, + 412, + 825, + 443 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Theodoros Evgeniou, Charles A Micchelli, and Massimiliano Pontil. Learning multiple tasks with kernel methods. Journal of machine learning research, 6(Apr):615–637, 2005. ", + "bbox": [ + 171, + 452, + 823, + 482 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alireza Fallah, Aryan Mokhtari, and Asuman Ozdaglar. On the convergence theory of gradientbased model-agnostic meta-learning algorithms. In International Conference on Artificial Intelligence and Statistics, pp. 1082–1092, 2020. ", + "bbox": [ + 174, + 491, + 823, + 534 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of deep networks. In Proceedings of the 34th International Conference on Machine LearningVolume 70, pp. 1126–1135, 2017. ", + "bbox": [ + 174, + 542, + 823, + 587 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chelsea Finn, Aravind Rajeswaran, Sham Kakade, and Sergey Levine. Online meta-learning. In Proceedings of the 36th International Conference on Machine Learning, 2019. ", + "bbox": [ + 173, + 595, + 821, + 626 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Luca Franceschi, Paolo Frasconi, Saverio Salzo, Riccardo Grazzi, and Massimilano Pontil. Bilevel programming for hyperparameter optimization and meta-learning. arXiv preprint arXiv:1806.04910, 2018. ", + "bbox": [ + 173, + 633, + 823, + 678 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tomer Galanti, Lior Wolf, and Tamir Hazan. A theoretical framework for deep transfer learning. Information and Inference: A Journal of the IMA, 5(2):159–209, 2016. ", + "bbox": [ + 171, + 686, + 823, + 717 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Micah Goldblum, Steven Reich, Liam Fowl, Renkun Ni, Valeriia Cherepanova, and Tom Goldstein. Unraveling meta-learning: Understanding feature representations for few-shot tasks. arXiv preprint arXiv:2002.06753, 2020. ", + "bbox": [ + 173, + 726, + 823, + 768 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jiatao Gu, Yong Wang, Yun Chen, Kyunghyun Cho, and Victor OK Li. Meta-learning for lowresource neural machine translation. arXiv preprint arXiv:1808.08437, 2018. ", + "bbox": [ + 168, + 779, + 823, + 809 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaiyi Ji, Jason D Lee, Yingbin Liang, and H Vincent Poor. Convergence of meta-learning with task-specific adaptation over partial parameters. arXiv preprint arXiv:2006.09486, 2020. ", + "bbox": [ + 169, + 816, + 823, + 847 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mikhail Khodak, Maria-Florina Balcan, and Ameet Talwalkar. Adaptive gradient-based metalearning methods. arXiv preprint arXiv:1906.02717, 2019. ", + "bbox": [ + 173, + 856, + 820, + 886 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A. Krizhevsky, I. Sutskever, and G. Hinton. Imagenet classification with deep convolutional neural networks. pp. 1097–1105, 2012. ", + "bbox": [ + 173, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kwonjoon Lee, Subhransu Maji, Avinash Ravichandran, and Stefano Soatto. Meta-learning with differentiable convex optimization. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 10657–10665, 2019. ", + "bbox": [ + 174, + 103, + 821, + 146 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Percy Liang. Cs229t/stat231: Statistical learning theory (winter 2016), 2016. ", + "bbox": [ + 174, + 154, + 678, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Han Liu, Mark Palatucci, and Jian Zhang. Blockwise coordinate descent procedures for the multitask lasso, with applications to neural semantic basis discovery. In Proceedings of the 26th Annual International Conference on Machine Learning, pp. 649–656, 2009. ", + "bbox": [ + 178, + 178, + 823, + 222 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Han Liu, Lie Wang, and Tuo Zhao. Calibrated multivariate regression with application to neural semantic basis discovery. Journal of machine learning research: JMLR, 16:1579, 2015. ", + "bbox": [ + 171, + 229, + 825, + 260 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andreas Maurer, Massimiliano Pontil, and Bernardino Romera-Paredes. The benefit of multitask representation learning. The Journal of Machine Learning Research, 17(1):2853–2884, 2016. ", + "bbox": [ + 173, + 267, + 821, + 296 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Daniel McNamara and Maria-Florina Balcan. Risk bounds for transferring representations with and without fine-tuning. In Proceedings of the 34th International Conference on Machine LearningVolume 70, pp. 2373–2381. JMLR. org, 2017. ", + "bbox": [ + 176, + 304, + 823, + 348 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A. Nichol and J. Schulman. Reptile: a scalable metalearning algorithm. arXiv preprint arXiv:1803.02999, 2, 2018. ", + "bbox": [ + 169, + 356, + 825, + 386 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Nichol, Joshua Achiam, and John Schulman. On first-order meta-learning algorithms. arXiv preprint arXiv:1803.02999, 2018. ", + "bbox": [ + 169, + 393, + 823, + 422 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aniruddh Raghu, Maithra Raghu, Samy Bengio, and Oriol Vinyals. Rapid learning or feature reuse? towards understanding the effectiveness of maml. In International Conference on Learning Representations, 2020. URL https://openreview.net/forum?id=rkgMkCEtPB. ", + "bbox": [ + 174, + 430, + 821, + 474 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aravind Rajeswaran, Chelsea Finn, Sham M Kakade, and Sergey Levine. Meta-learning with implicit gradients. In Advances in Neural Information Processing Systems, pp. 113–124, 2019. ", + "bbox": [ + 173, + 482, + 820, + 512 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "S. Ravi and H. Larochelle. Optimization as a model for few-shot learning. 2017. ", + "bbox": [ + 171, + 520, + 705, + 536 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "M. Ren, E. Triantafillou, S. Ravi, J. Snell, K. Swersky, J. Tenenbaum, H. Larochelle, and R. Zemel. Meta-learning for semi-supervised few-shot classification. arXiv preprint arXiv:1803.00676, 2018. ", + "bbox": [ + 174, + 544, + 823, + 585 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sebastian Ruder. An overview of multi-task learning in deep neural networks. arXiv preprint arXiv:1706.05098, 2017. ", + "bbox": [ + 173, + 594, + 823, + 625 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "O. Russakovsky, J. Deng, H. Su, J. Krause, S. Satheesh, S. Ma, Z. Huang, A. Karpathy, A. Khosla, and M. Bernstein. Imagenet large scale visual recognition challenge. 115(3):211–252, 2015. ", + "bbox": [ + 174, + 632, + 823, + 662 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nikunj Saunshi, Yi Zhang, Mikhail Khodak, and Sanjeev Arora. A sample complexity separation between non-convex and convex meta-learning. arXiv preprint arXiv:2002.11172, 2020. ", + "bbox": [ + 173, + 670, + 823, + 699 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jurgen Schmidhuber. ¨ Evolutionary principles in self-referential learning, or on learning how to learn: the meta-meta-... hook. PhD thesis, Technische Universitat M¨ unchen, 1987. ¨ ", + "bbox": [ + 173, + 707, + 823, + 737 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "J. Snell, K. Swersky, and R. Zemel. Prototypical networks for few-shot learning. pp. 4077–4087, 2017. ", + "bbox": [ + 173, + 744, + 823, + 775 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sebastian Thrun and Lorien Pratt. Learning to Learn: Introduction and Overview, pp. 3–17. Springer US, Boston, MA, 1998. ISBN 978-1-4615-5529-2. doi: 10.1007/978-1-4615-5529-2 1. URL https://doi.org/10.1007/978-1-4615-5529-2_1. ", + "bbox": [ + 173, + 782, + 823, + 825 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nilesh Tripuraneni, Chi Jin, and Michael I Jordan. Provable meta-learning of linear representations. arXiv preprint arXiv:2002.11684, 2020a. ", + "bbox": [ + 174, + 833, + 820, + 863 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nilesh Tripuraneni, Michael I Jordan, and Chi Jin. On the theory of transfer learning: The importance of task diversity. arXiv preprint arXiv:2006.11650, 2020b. ", + "bbox": [ + 173, + 871, + 823, + 900 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aad W Van der Vaart. Asymptotic statistics, volume 3. Cambridge university press, 2000. ", + "bbox": [ + 168, + 909, + 761, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Roman Vershynin. High-dimensional probability: An introduction with applications in data science, volume 47. Cambridge university press, 2018. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Haoxiang Wang, Ruoyu Sun, and Bo Li. Global convergence and induced kernels of gradient-based meta-learning with neural nets. arXiv preprint arXiv:2006.14606, 2020a. ", + "bbox": [ + 173, + 141, + 823, + 171 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xiang Wang, Shuai Yuan, Chenwei Wu, and Rong Ge. Guarantees for tuning the step size using a learning-to-learn approach. arXiv preprint arXiv:2006.16495, 2020b. ", + "bbox": [ + 173, + 179, + 823, + 209 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yujia Xie, Haoming Jiang, Feng Liu, Tuo Zhao, and Hongyuan Zha. Meta learning with relational information for short sequences. In Advances in Neural Information Processing Systems, pp. 9904–9915, 2019. ", + "bbox": [ + 174, + 218, + 826, + 261 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Pan Zhou, Xiaotong Yuan, Huan Xu, Shuicheng Yan, and Jiashi Feng. Efficient meta learning via minibatch proximal update. In Advances in Neural Information Processing Systems, pp. 1534– 1544, 2019. ", + "bbox": [ + 174, + 271, + 825, + 314 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A PROOFS FOR SECTION 3 ", + "text_level": 1, + "bbox": [ + 176, + 340, + 411, + 357 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A.1 DETAILED INTRODUCTION ON ASYMPTOTIC ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 372, + 596, + 387 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Here we provide more details on the asymptotic analysis framework sketched in Section 2.1. ", + "bbox": [ + 169, + 397, + 779, + 414 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In typical scenarios, for consistent ERMs, the limiting distribution of $\\widehat { \\mathbf { w } } _ { 0 , T }$ is asymptotically normal with a known covariance matrix, as is characterized in the following classical result (see, e.g. Van der Vaart (2000, Theorem 5.21) and also Liang (2016)). ", + "bbox": [ + 174, + 419, + 826, + 462 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proposition 6 (Asymptotic normality and excess risk of ERMs). Assume the population minimizer $\\mathbf { w } _ { 0 , \\star }$ is unique and the ERM $\\widehat { \\mathbf { w } } _ { 0 , T }$ is consistent (i.e. it converges to $\\mathbf { w } _ { 0 , \\star }$ in probability as $T \\to \\infty$ ). Further assume the following regularity conditions: ", + "bbox": [ + 173, + 465, + 825, + 510 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "(a) There exists some random variable $A _ { t } = A ( p _ { t } , \\mathbf { X } _ { t } , \\mathbf { y } _ { t } )$ such that $\\mathbb { E } [ A _ { t } ^ { 2 } ] < \\infty$ and ", + "bbox": [ + 171, + 520, + 743, + 536 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/876c938a19ee62d4d112a89e706f569cfeb4ca84ddb39e6fc71d505b1efd1425.jpg", + "text": "$$\n\\| \\nabla \\ell _ { t } ( \\mathbf { w } _ { 1 } ) - \\nabla \\ell _ { t } ( \\mathbf { w } _ { 2 } ) \\| \\leq A _ { t } \\| \\mathbf { w } _ { 1 } - \\mathbf { w } _ { 2 } \\|\n$$", + "text_format": "latex", + "bbox": [ + 372, + 542, + 655, + 560 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "for all $\\mathbf { w } _ { 1 } , \\mathbf { w } _ { 2 } \\in \\mathbb { R } ^ { d }$ ; ", + "bbox": [ + 200, + 568, + 346, + 584 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/667d9a8d45903e1f0796488e4f297e481d296f906b937112b8a5fad24dafda07.jpg", + "text": "$$\n\\mathbb { E } [ \\| \\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 , \\star } ) \\| ^ { 2 } ] < \\infty ;\n$$", + "text_format": "latex", + "bbox": [ + 204, + 592, + 364, + 612 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "(c) $L$ is twice-differentiable with $\\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\succ \\mathbf { 0 }$ , ", + "bbox": [ + 178, + 619, + 511, + 636 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "then the ERM $\\widehat { \\mathbf { w } } _ { 0 , T }$ is asymptotically normally distributed, with ", + "bbox": [ + 173, + 646, + 593, + 662 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/5832905b83f6880c8c9649b45ec714272652f20c2bfb58f5cb2ec06398786bc6.jpg", + "text": "$$\n\\begin{array} { r l } & { \\sqrt { T } \\cdot ( \\widehat { \\mathbf { w } } _ { 0 , T } - \\mathbf { w } _ { 0 , \\star } ) \\stackrel { d } { } \\mathsf { N } \\big ( \\mathbf { 0 } , \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 , \\star } ) ) \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) ^ { - 1 } \\big ) = : P _ { \\mathbf { w } } , } \\\\ & { T \\cdot ( L ( \\widehat { \\mathbf { w } } _ { 0 , T } ) - L ( \\mathbf { w } _ { 0 , \\star } ) ) \\stackrel { d } { } \\Delta ^ { \\top } \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\Delta \\quad \\mathrm { w h e r e } \\Delta \\sim P _ { \\mathbf { w } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 217, + 670, + 777, + 717 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "where $\\overset { d } { \\to }$ denotes convergence in distribution and $\\ell _ { t } : \\mathbb { R } ^ { d } \\to \\mathbb { R }$ is the loss function on a single task. ", + "bbox": [ + 171, + 727, + 821, + 744 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "When this happens, we define the asymptotic rate of estimation (in MSE loss) and asymptotic excess risk $\\widehat { \\mathbf { w } } _ { 0 , T }$ as those of its limiting distribution: ", + "bbox": [ + 173, + 755, + 823, + 784 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/52ab5c58ade80b07c7b0eb65eca40c63bc3582a87297f9af5c2ce952ac79fd53.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\mathbb { E } _ { \\Delta \\sim P _ { \\mathrm { w } } } \\Big [ \\big \\| \\Delta \\big \\| ^ { 2 } \\Big ] = \\mathrm { t r } \\big ( \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf w _ { 0 , \\star } ) ) \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\big ) } \\\\ & { \\mathrm { A s y m E x c e s s R i s k } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\mathbb { E } _ { \\Delta \\sim P _ { \\mathrm { w } } } \\big [ \\Delta ^ { \\top } \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) \\Delta \\big ] = \\mathrm { t r } \\big ( \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf w _ { 0 , \\star } ) ) \\big ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 790, + 820, + 840 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A.2 PROOF OF PROPOSITION 1 ", + "text_level": 1, + "bbox": [ + 176, + 853, + 400, + 868 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Equivalence of test-time risk and training loss for train-val method We first show that ", + "bbox": [ + 171, + 878, + 776, + 896 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/8bb3b20da53ca474ff5c82aa7350733a61dcebdc04adc05ea304718401dc6eaa.jpg", + "text": "$$\nL ^ { \\mathsf { t r } - \\mathsf { v a l } } ( \\mathbf { w } _ { 0 } ) = \\mathbb { E } [ \\ell _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ( \\mathbf { w } _ { 0 } ) ] = L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( \\mathbf { w } _ { 0 } )\n$$", + "text_format": "latex", + "bbox": [ + 357, + 901, + 638, + 922 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "for all $\\mathbf { w } _ { 0 }$ , that is, the population meta-test loss is exactly the same as the population risk of the trainval method. This is straightforward: as the tasks are i.i.d. and $\\mathscr { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } )$ is independent of the test points $( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } , \\bar { \\mathbf { y } } _ { t } ^ { \\mathsf { v a l } } )$ , we have for any $\\mathbf { w } _ { 0 }$ that ", + "bbox": [ + 173, + 103, + 826, + 147 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/9663f017c3ad7473cca1d52b877596a25685acbb24523e810c27010a9fba4680.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathbb { E } [ \\ell _ { t } ^ { \\mathrm { t r } - \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) ] = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\frac { 1 } { 2 n _ { 2 } } \\left. \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathcal { A } _ { \\lambda } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } \\big ) \\right. ^ { 2 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\frac { 1 } { 2 } \\big ( y _ { t , 1 } ^ { \\mathrm { v a l } } - \\mathbf { x } _ { t , 1 } ^ { \\mathrm { v a l } } \\mathcal { A } _ { \\lambda } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } \\big ) \\big ) ^ { 2 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { T + 1 } \\sim \\Pi , ( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) , ( \\mathbf { x } ^ { \\prime } , y ^ { \\prime } ) \\overset { \\mathrm { i d } } { \\sim } p _ { t } } \\left[ \\frac { 1 } { 2 } \\big ( y ^ { \\prime } - \\mathbf { x } ^ { \\prime \\top } \\mathcal { A } _ { \\lambda , n _ { 1 } } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } \\big ) \\big ) ^ { 2 } \\right] } \\\\ & { = L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e x t } } ( \\mathbf { w } _ { 0 } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 235, + 151, + 766, + 277 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Therefore the train-val method is acutally a valid ERM for the test loss Ltestλ,n , and it remains to show that the train-val method is (itself) consistent. ", + "bbox": [ + 174, + 281, + 823, + 311 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Consistency We expand the empirical risk of the train-val method as ", + "bbox": [ + 173, + 325, + 638, + 342 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/029bbd8e60def74f40c672cc8ec681f12c782211627775f45ecea272647cb43f.jpg", + "text": "$$\n\\begin{array} { r l } & { \\hat { L } _ { T } ^ { \\mathrm { t r a s a l } } ( \\mathbf { w } _ { 0 } ) = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { s a l } } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } ) \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } [ \\mathbf { w } _ { 0 } + ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } ( \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } - \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { 0 } ) ] \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } n _ { 1 } \\lambda ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) \\right. } \\\\ & = \\displaystyle \\frac { 1 } { 2 } \\mathbf { w } _ { 0 } ^ { \\top } \\mathbf { M } _ { T } \\mathbf { w } _ { 0 } - \\mathbf { w } _ { 0 } ^ { \\top } \\mathbf { b } _ { T } + \\mathrm c o n \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 345, + 839, + 508 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 173, + 512, + 217, + 525 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/337e28258706a54b059e8507a74940430b20cb8749e2a6cb8dcba9785ed80322.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\mathbf { { d } } _ { T } : = \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { n _ { 2 } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } , } \\\\ & \\displaystyle _ { \\mathcal { N } : = \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\lambda ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\cdot \\frac { 1 } { n _ { 2 } } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\left( \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\right) ^ { - 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 529, + 839, + 613 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Noticing that $( { \\bf X } _ { t } ^ { \\sf t r a i n ^ { \\top } } { \\bf X } _ { t } ^ { \\sf t r a i n } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } \\preceq \\lambda ^ { - 1 } { \\bf I } _ { d }$ and by the assumption that $\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] $ $\\infty$ , $\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\mathbf { x y } ] < \\infty$ , we have $\\mathbb { E } [ \\| \\mathbf { M } _ { T } \\| ] < \\infty$ and $\\mathbb { E } [ \\| \\mathbf { b } _ { T } \\| ] < \\infty$ . Since the task $p _ { t }$ ’s are i.i.d., by the law of large numbers, we have with probability one that ", + "bbox": [ + 174, + 621, + 828, + 667 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/2bedcf03949b86b1cf2eada4781ed55c04455629c5c834cd48545936651cba51.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathbf { M } _ { T } \\to \\mathbb { E } [ \\mathbf { M } _ { T } ] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathsf { v a l } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } } { n _ { 2 } } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\right] \\succ \\mathbf { 0 } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 202, + 671, + 781, + 750 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "(where $\\pmb { \\Sigma } _ { t } = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] \\succ \\mathbf { 0 } ,$ and ", + "bbox": [ + 173, + 752, + 413, + 770 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/a0e2f23a1ddd939088ec98f3ef942721d514a40004726f3bdfc7335dd0ff4ef8.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathbf { b } _ { T } \\to \\mathbb { E } [ \\mathbf { b } _ { T } ] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\boldsymbol { \\lambda } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\boldsymbol { \\lambda } \\mathbf { I } _ { d } ) ^ { - 1 } \\cdot \\frac { 1 } { n _ { 2 } } \\mathbf { X } _ { t } ^ { \\mathrm { v a l \\top } } \\left( { \\mathbf { y } } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( { \\mathbf { X } } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\boldsymbol { \\lambda } \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } \\right. \\right. } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 176, + 773, + 816, + 828 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "as $T \\to \\infty$ . Therefore, by Slutsky’s Theorem, we have ", + "bbox": [ + 173, + 856, + 534, + 872 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/6a41934edf6f87ae51a7073ccfcbb8851242d6b34054d4a18f34bcbb180944d1.jpg", + "text": "$$\n\\widehat { \\mathbf { w } } _ { 0 , T } = \\mathbf { M } _ { T } ^ { - 1 } \\mathbf { b } _ { T } \\mathbb { E } [ \\mathbf { M } _ { T } ] ^ { - 1 } \\mathbb { E } [ \\mathbf { b } _ { T } ] = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( \\mathbf { w } _ { 0 } ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) = \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )\n$$", + "text_format": "latex", + "bbox": [ + 181, + 877, + 823, + 904 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "as $T \\to \\infty$ . This proves the consistency of the train-val method. ", + "bbox": [ + 173, + 909, + 594, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Asymptotic normality Similar as above, we can write the per-task loss as ", + "bbox": [ + 173, + 102, + 671, + 119 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/74d3a86b5dc12573ea271734fb564d861b43bc4024c8420cc48b712cd58cec1d.jpg", + "text": "$$\n\\ell _ { t } ( { \\mathbf { w } } _ { 0 } ) = \\frac { 1 } { 2 } \\left\\| { \\mathbf { A } } _ { t } { \\mathbf { w } } _ { 0 } - { \\mathbf { c } } _ { t } \\right\\| ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 401, + 126, + 593, + 156 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 173, + 164, + 217, + 178 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/da5bf25a47dc3fe2ddabc89c8fd32863a9a17f6ab533f8c04106711d2ed57c65.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle { \\bf A } _ { t } = \\frac { \\lambda } { \\sqrt { n _ { 2 } } } { \\bf X } _ { t } ^ { \\mathrm { v a l } } ( { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } } , } \\\\ { { \\displaystyle { \\bf c } _ { t } = \\frac { 1 } { \\sqrt { n _ { 2 } } } \\bigg ( { \\bf y } _ { t } ^ { \\mathrm { v a l } } - { \\bf X } _ { t } ^ { \\mathrm { v a l } } ( { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } \\frac { 1 } { n _ { 1 } } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf y } _ { t } ^ { \\mathrm { t r a i n } } \\bigg ) } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 264, + 183, + 735, + 255 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In order to show the desired asymptotic normality result, it suffices to check the conditions in Proposition 6. First, we have ", + "bbox": [ + 173, + 260, + 823, + 289 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/c73bf06c84369b6ca08c7c3e3ea5313ce7edf277e5b8194cca45f10f29b5e027.jpg", + "text": "$$\n\\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 } ) = \\mathbf { A } _ { t } ^ { \\top } ( \\mathbf { A } _ { t } \\mathbf { w } _ { 0 } - \\mathbf { c } _ { t } ) .\n$$", + "text_format": "latex", + "bbox": [ + 397, + 295, + 599, + 314 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This is Lipschitz in $\\mathbf { w } _ { 0 }$ with Lipschitz constant ", + "bbox": [ + 174, + 321, + 482, + 337 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/af67d5d6ddee3dbd375b6025d1d3e2ab2f1ac79b5ab512085a07528b29b5db4b.jpg", + "text": "$$\n\\left. \\mathbf { A } _ { t } ^ { \\intercal } \\mathbf { A } _ { t } \\right. _ { \\mathrm { o p } } \\leq \\left. \\mathbf { A } _ { t } \\right. _ { \\mathsf { F r } } ^ { 2 } < \\frac { 1 } { n _ { 2 } } \\left. \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\right. _ { \\mathsf { F r } } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 366, + 343, + 630, + 376 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "As $\\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\left\\| \\mathbf { x } \\right\\| ^ { 4 } ] < \\infty$ , the above quantity is clearly square integrable, therefore verifying (a). As $\\mathbf { w } _ { 0 , \\star } = \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )$ is finite, we can use similar arguments as above to show (b) holds. Finally, we have already seen $L$ is twice-differentiable (since it is quadratic in $\\mathbf { w } _ { 0 }$ ) and $\\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\succ \\mathbf { 0 }$ , which verifies (c). Therefore the conditions of Proposition 6 hold, which yields the desired asymptotic normality result. □ ", + "bbox": [ + 173, + 385, + 826, + 458 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.3 PROOF OF PROPOSITION 2 ", + "text_level": 1, + "bbox": [ + 176, + 476, + 400, + 491 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "High-level idea At a high level, this proof proceeds by showing that the train-train method is also consistent to the (populwhich the minimizers of minimizer of is not equal to $L ^ { \\mathrm { t r - t r } }$ , of onstructing a simple counter-example on. $L ^ { \\mathrm { t r - t r } }$ $L _ { \\lambda , n } ^ { \\mathsf { t e s t } }$ ", + "bbox": [ + 173, + 502, + 826, + 546 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Population minimizers of $L ^ { \\mathrm { t r - t r } }$ and $L ^ { \\mathsf { t r - v a l } }$ We begin by simplifying the non-splitting risk. We have ", + "bbox": [ + 169, + 564, + 825, + 595 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/b1d34f4c7b53074ac36a9e55e9b6536049f430f10820b86efa2e41ebca641417.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\ell _ { t } ^ { \\mathrm { t r } + \\mathrm { r } } ( \\mathbf w _ { 0 } ) = \\frac { 1 } { 2 n } \\left\\| \\mathbf y _ { t } - \\mathbf X _ { t } A _ { \\lambda } ( \\mathbf w _ { 0 } ; \\mathbf X _ { t } , \\mathbf y _ { t } ) \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n } \\left\\| \\mathbf y _ { t } - \\mathbf X _ { t } \\big [ \\mathbf w _ { 0 } + ( \\mathbf X _ { t } ^ { \\top } \\mathbf X _ { t } + n \\lambda \\mathbf I _ { d } ) ^ { - 1 } \\mathbf X _ { t } ^ { \\top } ( \\mathbf y _ { t } - \\mathbf X _ { t } \\mathbf w _ { 0 } ) \\big ] \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac 1 2 \\left\\| \\mathbf A _ { t } \\mathbf w _ { 0 } - \\mathbf c _ { t } \\right\\| ^ { 2 } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 287, + 598, + 715, + 690 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 173, + 696, + 217, + 710 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/b6d8b75d40fbe771d6ab185cadae599b4ac7327871b42bd0ea4edb2dc096e7a8.jpg", + "text": "$$\n\\mathbf { A } _ { t } = \\frac { 1 } { \\sqrt { n } } n \\lambda \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\quad \\mathrm { a n d } \\quad \\mathbf { c } _ { t } = \\frac { 1 } { \\sqrt { n } } \\big ( \\mathbf { I } _ { n } - \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\big ) \\mathbf { y } _ { t } .\n$$", + "text_format": "latex", + "bbox": [ + 197, + 715, + 799, + 750 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Using similar arguments as in the proof of Proposition 1 (Appendix A.2), we see that the traintrain method $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - t r }$ converges with probability one to the minimizer of the pouplation risk $L ^ { \\mathrm { t r - t r } }$ , which is ", + "bbox": [ + 174, + 756, + 823, + 799 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/d8b91d0f4b3481c192671bdb00897fd626ddf0a0f22d39b0eb7079d892ed99d6.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { v } _ { 0 , \\star } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } = \\underset { \\mathbf { w } _ { 0 } } { \\operatorname { a r g m i n } } L ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } ( \\mathbf { w } _ { 0 } ) = \\big ( \\mathbb { E } [ \\mathbf { A } _ { t } ^ { \\top } \\mathbf { A } _ { t } ] \\big ) ^ { - 1 } \\mathbb { E } [ \\mathbf { A } _ { t } ^ { \\top } \\mathbf { c } _ { t } ] } \\\\ & { = \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } \\bigg ] ^ { - 1 } \\cdot \\mathbb { E } \\bigg [ \\frac { 1 } { n } \\lambda \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } ( \\mathbf { I } _ { n } - \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ) } \\\\ & { = \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } \\bigg ] ^ { - 1 } \\cdot \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { 1 } { n } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } \\bigg ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 801, + 839, + 914 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "On the other hand, recall from Proposition 1 ((8) and (9)) that the population minimizer of $L _ { \\lambda , n } ^ { \\mathsf { t e s t } }$ ", + "bbox": [ + 171, + 102, + 816, + 119 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/ad4f184d5cef4f769cfb94fe8548d50913e48f2344fc531f5274fce45559f441.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { a r g } } \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\\\ & { = \\mathbb { E } \\big [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ] ^ { - 1 } \\cdot \\Big \\{ \\lambda \\mathbb { E } \\big [ ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ] \\mathbb { E } _ { p _ { t } , ( \\mathbf { x } ^ { \\prime } , y ^ { \\prime } ) \\sim p _ { t } } [ \\Xi ] \\big \\} } \\\\ & { \\phantom { = } - \\lambda \\mathbb { E } \\bigg [ ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { 1 } { n } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } \\bigg ] \\Big \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 125, + 839, + 227 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Construction of the counter-example We now construct a distribution for which (10) is not equal to (11). Let $d = 1$ and let all $p _ { t }$ be the following distribution: ", + "bbox": [ + 174, + 250, + 825, + 279 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/df03034e6294c6d1c51c3ed6703b23141a5306e3caace4611644c95c19ce9cbd.jpg", + "text": "$$\np _ { t } : ( x _ { t , i } , y _ { t , i } ) = { \\left\\{ \\begin{array} { l l } { ( 1 , 3 ) { \\mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 ; } \\\\ { ( 3 , - 1 ) { \\mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 . } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 325, + 284, + 671, + 319 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Clearly, we have $\\Sigma _ { t } = 5$ $= 5 , s _ { t } : = \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n \\in [ 1 , 9 ]$ , and $\\mathbb { E } _ { x ^ { \\prime } , y ^ { \\prime } \\sim p _ { t } } [ x ^ { \\prime } y ^ { \\prime } ] = 0$ . Therefore we have ", + "bbox": [ + 171, + 324, + 794, + 343 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/ad7b4c88ada28aa57d82c411cfea82e10f4e316bf82f760f2d9a5e1d99956db0.jpg", + "text": "$$\n\\mathbf { w } _ { 0 , \\star } ^ { \\mathrm { t r - t r } } = \\mathbb { E } \\left[ ( s _ { t } + \\lambda ) ^ { - 2 } s _ { t } \\right] ^ { - 1 } \\cdot \\mathbb { E } \\left[ ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 299, + 347, + 696, + 390 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "and ", + "bbox": [ + 173, + 395, + 202, + 409 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/22428c7c61611144f4547e82187fdddb30a2b5d08b48680c6167c82282c18a6d.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle { \\bf w } _ { 0 , \\star } ( \\lambda , n ) = - \\mathbb { E } \\big [ 5 \\lambda ^ { 2 } ( s _ { t } + \\lambda ) ^ { - 2 } \\big ] ^ { - 1 } \\cdot \\mathbb { E } \\Bigg [ 5 \\lambda ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] } } \\\\ { { \\displaystyle = - \\mathbb { E } \\big [ \\lambda ( s _ { t } + \\lambda ) ^ { - 2 } \\big ] ^ { - 1 } \\cdot \\mathbb { E } \\Bigg [ ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 259, + 411, + 741, + 498 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We now show that $\\mathbf { w } _ { 0 , \\star } ^ { \\sf t r - t r } \\neq \\mathbf { w } _ { 0 , \\star } ( \\lambda , n )$ by showing that ", + "bbox": [ + 173, + 502, + 537, + 518 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/25a777f2bbf528146fc3325e1f0dd3521c5336e755fa1534af8baa05e9e5703d.jpg", + "text": "$$\n\\mathbb { E } \\Bigg [ \\big ( s _ { t } + \\lambda \\big ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] = \\mathbb { E } \\Bigg [ \\frac { x _ { t , 1 } y _ { t , 1 } } { \\big ( s _ { t } + \\lambda \\big ) ^ { 2 } } \\Bigg ] \\neq 0\n$$", + "text_format": "latex", + "bbox": [ + 326, + 523, + 669, + 568 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "for any $\\lambda > 0$ . Indeed, conditioning on $( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 )$ , we know that the sum-of-squares in $s _ { t }$ has one term that equals 1, and all others i.i.d. being 1 or 9 with probability one half. On the other hand, if we condition on $( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 )$ , then we know the sum in $s _ { t }$ has one term that equals 9 and all others i.i.d.. This means that the negative contribution in the expectation is smaller than the positive contribution, in other words ", + "bbox": [ + 176, + 571, + 823, + 642 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/26afa1b6024b71f16c2da21a9b8beedb990e4eede4ba278ab113723d73ceb9d4.jpg", + "text": "$$\n\\begin{array} { r l r } & { } & { \\mathbb { E } \\bigg [ \\frac { x _ { t , 1 } y _ { t , 1 } } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg ] = \\frac { 1 } { 2 } \\cdot 3 \\mathbb { E } \\bigg [ \\frac { 1 } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 ) \\bigg ] } \\\\ & { } & { \\quad + \\frac { 1 } { 2 } \\cdot - 3 \\mathbb { E } \\bigg [ \\frac { 1 } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 ) \\bigg ] > 0 . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 308, + 647, + 689, + 719 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "This shows $\\mathbf { w } _ { 0 , \\star } ^ { \\sf t r - t r } \\neq \\mathbf { w } _ { 0 , \\star } ( \\lambda , n )$ and consequently the $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }$ does not converge to $\\mathbf { w } _ { 0 , \\star } ( \\lambda , n )$ and the difference is bounded away from zero as . ", + "bbox": [ + 174, + 723, + 823, + 752 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Finally, for this distribution, the risk $L _ { \\lambda , n } ^ { \\mathsf { t e s t } } ( \\mathbf { w } _ { 0 } )$ is strongly convex (since it has a positive second derivative), this further implies that $L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) - L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) )$ is bounded away from zero almost surely as $T \\to \\infty$ . ", + "bbox": [ + 174, + 757, + 825, + 805 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B PROOFS FOR SECTION 4 ", + "text_level": 1, + "bbox": [ + 176, + 824, + 410, + 840 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B.1 PROOF OF THEOREM 3 ", + "text_level": 1, + "bbox": [ + 174, + 854, + 375, + 871 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We first show that $\\mathbf { w } _ { 0 , \\star } = \\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\mathbf { w } _ { t } ]$ is a global optimizer for $L ^ { \\mathrm { t r - t r } }$ and $L ^ { \\mathsf { t r - v a l } }$ with any regularization coefficient $\\lambda > 0$ , any $n$ , and any split $( n _ { 1 } , n _ { 2 } )$ . To do this, it suffices to check that the gradient at $\\mathbf { w } _ { 0 , \\star }$ is zero and the Hessian is positive definite (PD). ", + "bbox": [ + 174, + 881, + 823, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Optimality of $\\mathbf { w } _ { 0 , \\star }$ in both $L ^ { \\mathrm { t r - t r } }$ and $L ^ { \\mathrm { t r - v a l } }$ . We first look at $L ^ { \\mathrm { t r - t r } }$ : for any $\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }$ we have ", + "bbox": [ + 171, + 102, + 795, + 119 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/8f7d624cddea3c92290243b83185b00850bb5dcb3e2110b11f50c14ce81d650f.jpg", + "text": "$$\n\\begin{array} { r l } & { L ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf w _ { 0 } ) = \\mathbb { E } [ \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf w _ { 0 } ) ] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { 2 n } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } \\left[ \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\left( \\mathbf { X } _ { t } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } \\mathbf { w } _ { 0 } \\right) + \\mathbf { w } _ { 0 } \\right] \\right\\| ^ { 2 } \\right] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { 2 n } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\left( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } \\right) \\right\\| ^ { 2 } \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 205, + 122, + 790, + 210 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Similarly, $L ^ { \\mathrm { t r - v a l } }$ can be written as ", + "bbox": [ + 173, + 212, + 398, + 228 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/e3e86abdb403b4883b9461f4b172bed34d919a81cea37db12756843952d2b050.jpg", + "text": "$$\n\\begin{array} { r l r } & { \\quad L ^ { \\mathrm { t r } \\cdot \\mathrm { s c a l } } ( \\mathbf { w } _ { 0 } ) } & { ( 1 3 ) } \\\\ & { = \\mathbb { E } \\bigl [ \\phi _ { t } ^ { \\mathrm { r } \\cdot \\mathrm { s c a l } } ( \\mathbf { w } _ { 0 } ) \\bigr ] } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n _ { 2 } } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } ^ { \\mathrm { s c a l } } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left[ \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\left( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { 0 } \\right) + \\mathbf { w } _ { 0 } \\right] \\right\\| ^ { 2 } \\right. } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n _ { 2 } } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left( \\mathbf { I } _ { d } - \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right\\| ^ { 2 } \\right] . } & { ( 1 4 ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 232, + 839, + 342 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We denote ", + "bbox": [ + 173, + 344, + 246, + 358 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/bb52c36cf08d22d805aafd97b9d1005fe833678991f90d4a74f5e1f2cd75305d.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } = \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\quad \\mathrm { a n d } } \\\\ & { \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } = \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left( \\mathbf { I } _ { d } - \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\left( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 271, + 359, + 725, + 416 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "to simplify the notations in (12) and (14). We take gradient of $L ^ { \\mathrm { t r - t r } }$ and $L ^ { \\mathsf { t r - v a l } }$ with respect to $\\mathbf { w } _ { 0 }$ ", + "bbox": [ + 173, + 420, + 815, + 436 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/d9694f9294373c2b47090b367db349e4abd7fef797734c1a4fd756c9bf36740a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 } ) = - \\displaystyle \\frac { 1 } { n } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right] , } \\\\ & { \\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - v a l } } ( \\mathbf { w } _ { 0 } ) = - \\displaystyle \\frac { 1 } { n _ { 2 } } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 439, + 691, + 505 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Substituting $\\mathbf { w } _ { 0 , \\star }$ into (17) and taking expectation, we deduce ", + "bbox": [ + 174, + 506, + 580, + 521 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/36d93d302ee9e8a65cf28830bea4d067882ee63dd369f4a5a9a83143e402a4b7.jpg", + "text": "$$\n\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) = - \\frac { 1 } { n } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } ) \\right] = \\mathbf { 0 } .\n$$", + "text_format": "latex", + "bbox": [ + 292, + 526, + 704, + 556 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "To see this, observe that by definition $\\mathbb { E } [ \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } ] = \\mathbf { 0 }$ . Combining with $\\mathbf { w } _ { t }$ being generated independently of $\\mathbf { X } _ { t }$ , we have the first term in RHS of (19) vanish. In addition, $\\mathbf { z } _ { t }$ is independent white noise, therefore, the second term in RHS of (19) also vanishes. Following the same argument, we can show ", + "bbox": [ + 173, + 560, + 825, + 616 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/c3e37c8a4cf9cb95e1398465f71bc9e8be4f24a09e9603d9ff0eb6be7ccf5cdd.jpg", + "text": "$$\n\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - v a l } } ( \\mathbf { w } _ { 0 , \\star } ) = \\mathbf { 0 } ,\n$$", + "text_format": "latex", + "bbox": [ + 421, + 619, + 575, + 638 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "since $\\mathbf { X } _ { t } ^ { \\prime }$ is also independent of $\\mathbf { w } _ { t }$ . The above reasonings indicates that $\\mathbf { w } _ { 0 , \\star }$ is a stationary point of both $L ^ { \\mathrm { t r - t r } }$ and $L ^ { \\mathsf { t r - v a l } }$ . The remaining step is to check $\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - t r } } \\bigl ( \\mathbf { w } _ { 0 , \\star } \\bigr )$ and $\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - v a l } } \\left( \\mathbf { w } _ { 0 , \\star } \\right)$ are PD. From (17) and (18), we derive respectively the hessian of $L ^ { \\mathrm { t r - t r } }$ and $L ^ { \\mathrm { t r - v a l } }$ as ", + "bbox": [ + 173, + 642, + 825, + 689 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/87bcb03eda6e2cdf0b972899c1755972d60af4d1f5cb3904509f91f7154d1ad7.jpg", + "text": "$$\n\\begin{array} { r l } & { \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) = \\displaystyle \\frac { 1 } { n } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ] \\quad \\mathrm { a n d } } \\\\ & { \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - v a l } } ( \\mathbf { w } _ { 0 , \\star } ) = \\displaystyle \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - v a l } } ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 339, + 693, + 660, + 756 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Let $\\textbf { v } \\in \\mathbb { R } ^ { d }$ be any nonzero vector, we check $\\mathbf { v } ^ { \\top } \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) \\mathbf { v } \\ > \\ \\mathrm { ~ 0 ~ }$ . A key observation is that $\\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right)$ is positive definite for any $\\lambda \\ \\ne \\ 0$ . To see this, let $\\sigma _ { 1 } ~ \\geq ~ \\cdots ~ \\geq ~ \\sigma _ { d }$ be eigenvalues of $\\textstyle { \\frac { 1 } { n } } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t }$ , some algebra yields the eigenvalues of $\\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right)$ are $\\frac { \\lambda } { \\lambda + \\sigma _ { i } } > 0$ for $\\lambda \\neq 0$ and $i = 1 , \\ldots , d$ . Hence, we deduce ", + "bbox": [ + 173, + 758, + 826, + 840 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/dcb5f2e491be4702a99ecbfb61631ebbbfdf626021470491528350e9c447ba63.jpg", + "text": "$$\n\\mathbf { v } ^ { \\top } \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) \\mathbf { v } = \\frac { 1 } { n } \\mathbb { E } [ \\mathbf { v } ^ { \\top } \\mathbf { X } _ { t } ^ { \\top } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) ^ { 2 } \\mathbf { X } _ { t } \\mathbf { v } ] > 0 ,\n$$", + "text_format": "latex", + "bbox": [ + 205, + 845, + 763, + 876 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "since $\\mathbf { X } _ { t }$ is isotropic (an explicit computation of the hessian matrix can be found in Appendix B.2). As a consequence, we have shown that $\\mathbf { w } _ { 0 , \\star }$ is a global optimum of $L ^ { \\mathrm { t r - t r } }$ . The same argument applies to $L ^ { \\mathrm { t r - v a l } }$ , and the proof is complete. ", + "bbox": [ + 174, + 880, + 823, + 924 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Consistency of w {tr-tr,tr-val}0,T . To check the consistency, we need to verify the conditions (a) – (c) in ", + "bbox": [ + 174, + 99, + 825, + 133 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For condition (a), we derive from (17) and (18) that ", + "bbox": [ + 173, + 140, + 513, + 156 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/fd75ce799d90280e75fc9433ed4a39e66e9b2e28d64282716b753981cc712eb6.jpg", + "text": "$$\n\\left. \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } } \\} } ( \\mathbf { w } _ { 1 } ) - \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } ( \\mathbf { w } _ { 2 } ) \\right. \\leq \\frac { 1 } { n } \\left. ( \\mathbf { M } _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } \\right. _ { \\mathrm { o p } } \\left. \\mathbf { w } _ { 1 } - \\mathbf { w } _ { 2 } \\right. ,\n$$", + "text_format": "latex", + "bbox": [ + 181, + 159, + 813, + 189 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where $n$ should be replaced by $n _ { 2 }$ for the split method (we slightly abuse the notation for simplicity). It suffices to show $\\mathbb { E } \\left[ \\left. ( \\mathbf { M } _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { t r } , \\mathsf { t r } - \\mathsf { v a l } \\} } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { t r } , \\mathsf { t r } - \\mathsf { v a l } \\} } \\right. _ { \\mathrm { o p } } \\right] < \\infty$ , which follows from the same argument in the proof of Proposition 1. In particular, we know $\\mathbf { 0 } \\preceq \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\preceq \\mathbf { I } _ { d }$ and $\\mathbb { E } [ \\left. \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right. _ { \\mathrm { o p } } ] ~ < ~ \\infty$ since $\\mathbf { X } _ { t }$ is Gaussian. As a consequence, for the no-split method, we have $\\mathbb { E } \\left[ \\big \\lVert ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } - \\mathrm { t r } } \\big \\rVert _ { \\mathrm { o p } } ^ { 2 } \\right] \\ < \\ \\infty$ . For the split method, we also have $\\mathrm { ~ { ~ \\bf ~ 0 ~ } ~ } \\preceq \\mathrm { ~ \\bf ~ I } _ { d } \\mathrm { ~ - ~ }$ $\\left( ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } \\preceq \\mathbf { I } _ { d }$ and $\\mathbb { E } [ \\left. ( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\right. _ { \\mathrm { o p } } ] < \\infty$ , which implies $\\mathbb { E } \\left[ \\left. ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } \\right. _ { \\mathrm { o p } } ^ { 2 } \\right] < \\infty .$ ", + "bbox": [ + 173, + 194, + 826, + 348 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For condition (b), using a similar argument in condition (a) and combining with $R ^ { 2 } = \\mathbb { E } [ \\| \\mathbf { w } _ { 0 , \\star } -$ $\\mathbf { w } _ { t } \\| ^ { 2 } \\|$ , we have $\\mathbb { E } [ \\| \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r } - \\mathrm { t r } , \\mathrm { t r } - \\mathrm { v a l } \\} } ( \\mathbf { w } _ { 0 , \\star } ) \\| ^ { 2 } ] < \\infty .$ . ", + "bbox": [ + 174, + 353, + 823, + 388 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For condition (c), using (20), we directly verify that $L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }$ is twice-differentiable and $\\nabla ^ { 2 } L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} } \\succ \\mathbf { 0 }$ . ", + "bbox": [ + 174, + 393, + 823, + 426 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B.2 PROOF OF LEMMA 5 ", + "text_level": 1, + "bbox": [ + 174, + 441, + 359, + 457 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. In this section we prove Lemma 5. Using the the asymptotic normality in Proposition 6, the asymptotic covariance is $\\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } \\mathrm { C o v } \\big [ \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } \\big ] \\big \\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } .$ . Therefore, in the following, we only need to find ∇−2L{tr-tr,tr-val} and Cov[∇\\`{tr-tr,tr-val}t ]. ", + "bbox": [ + 173, + 468, + 826, + 518 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "• Asymptotic variance of $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }$ . We begin with the computation of the expected Hessian $\\begin{array} { r } { \\frac { 1 } { n } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ] } \\end{array}$ . ", + "bbox": [ + 171, + 523, + 823, + 558 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/7c0a4d8f3cbd7f285ca5a85dd9de2fef59c13db6ab714e7e25c4fcff915e819c.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathbb { E } \\big [ \\big ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } \\cdot \\mathsf { r } } \\big ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } \\big ] } \\\\ & { = \\mathbb { E } \\left[ \\Big ( \\mathbf { I } _ { d } - \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\Big ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\right] } \\\\ & { \\overset { ( i ) } { = } \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) ^ { \\top } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 187, + 561, + 810, + 648 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where the equality $( i )$ is obtained by plugging in the SVD of $\\mathbf { X } _ { t } = \\mathbf { U } _ { t } \\mathbf { D } _ { t } \\mathbf { V } _ { t } ^ { \\top }$ with $\\mathbf { U } _ { t } \\in \\mathbb { R } ^ { n \\times n }$ , $\\mathbf { D } _ { t } \\in \\mathbb { R } ^ { n \\times d }$ , and $\\dot { \\mathbf { V } _ { t } } \\in \\mathbb { R } ^ { d \\times d }$ . A key observation is that $\\mathbf { U } _ { t }$ and $\\mathbf { V } _ { t }$ are independent, since $\\mathbf { X } _ { t }$ is isotropic, i.e., homogeneous in each orthogonal direction. To see this, for any orthogonal matrices $\\mathbf { Q } \\in \\mathbb { \\bar { R } } ^ { n \\times n }$ and $\\mathbf { P } \\in \\mathbb { R } ^ { d \\times d }$ , we know $\\mathbf { X } _ { t }$ and $\\mathbf { Q } \\mathbf { X } _ { t } \\mathbf { P } ^ { \\top }$ share the same distribution. Moreover, we have $\\mathbf { Q } \\mathbf { X } _ { t } \\mathbf { P } ^ { \\top } = ( \\mathbf { Q } \\mathbf { U } _ { t } ) \\mathbf { D } _ { t } ( \\mathbf { P } \\mathbf { V } _ { t } ) ^ { \\top }$ as the SVD. This shows that the left and right singular matrices are independent and both uniformly distributed on all the orthogonal matrices of the corresponding dimensions $\\mathbb { R } ^ { n \\times n }$ and $\\mathbb { R } ^ { d \\times d }$ , respectively). ", + "bbox": [ + 173, + 666, + 826, + 767 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Recall that we denote $\\sigma _ { 1 } ^ { ( n ) } \\geq \\cdots \\geq \\sigma _ { d } ^ { ( n ) }$ as the eigenvalues of $\\textstyle { \\frac { 1 } { n } } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t }$ . Thus, we have $\\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } =$ Diag(nσ(n)1 , . $\\mathrm { D i a g } ( n \\sigma _ { 1 } ^ { ( n ) } , \\dots , n \\sigma _ { d } ^ { ( n ) } )$ σ(n)d ). We can further simplify (21) as ", + "bbox": [ + 173, + 772, + 823, + 810 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/5c924cf51f68e6f07f4bbb503219fe358a29a13b30239c41b2ea8481477cc2a6.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) ^ { \\top } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] } \\\\ & { = \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] } \\\\ & { = \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , i } \\mathbf { v } _ { t , i } ^ { \\top } \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 194, + 813, + 805, + 930 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We will utilize the isotropicity of $\\mathbf { X } _ { t }$ to find (22). Recall that we have shown that $\\mathbf { V } _ { t }$ is uniform on all the orthogonal matrices. Let $\\mathbf { P } \\in \\mathbb { R } ^ { d \\times d }$ be any permutation matrix, then $\\mathbf { V } _ { t } \\mathbf { P }$ has the same distribution as $\\mathbf { V } _ { t }$ . For this permuted data matrix $\\mathbf { V } _ { t } \\mathbf { P }$ , (22) becomes ", + "bbox": [ + 173, + 103, + 825, + 147 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/1a2b28b471119c987cfb4d10a5302b8c283cd1aa2e71fd184c2a5d450581ea9e.jpg", + "text": "$$\n\\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } ^ { \\top } \\right] \\mathrm { w i t h } \\tau _ { p } ( i ) \\mathrm { d e n o t e s ~ t h e ~ p e r m u t a t i o n ~ o f ~ t h e ~ } i \\mathrm { \\cdot t h ~ e l e m e n t ~ i n ~ } \\tau _ { p } ( i ) \\mathrm { d e n s ~ } \\tau _ { p } ( i ) \\mathrm { d e n s ~ } \\tau _ { p } ( i ) .\n$$", + "text_format": "latex", + "bbox": [ + 178, + 152, + 792, + 196 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Summing over all the permutations $\\mathbf { P }$ (and there are totally $d !$ instances), we deduce ", + "bbox": [ + 173, + 202, + 727, + 218 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/0e352d9157146a177b43a5e1472fcbe2251cecf7b7e4812f44902042a38cd70b.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle { d \\mathbb { E } [ ( { \\bf M } _ { t } ^ { \\mathrm { t r u } } ) ^ { \\top } { \\bf M } _ { t } ^ { \\mathrm { t r u } } ; \\tau ] } } } \\\\ { { = \\displaystyle { \\sum _ { u \\ l p \\ r m u t a \\ n e : \\tau } \\mathbb { E } \\left[ \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\alpha \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\sigma _ { i } ^ { u } ) } } \\mathbf { v } _ { t , \\tau _ { r } ( i ) } \\mathbf { v } _ { t , \\tau _ { r } ( i ) } ^ { \\top } \\right] } } } \\\\ { { = ( d - 1 ) ! ! \\mathbb { E } \\left[ \\displaystyle { \\sum _ { j = 1 } ^ { d } \\left[ \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\alpha \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\sigma _ { i } ^ { u } ) } } \\right] ^ { \\top } \\mathbf { v } _ { t , \\tau _ { t } ( j ) } \\mathbf { v } _ { t , j } ^ { \\top } } \\right] } } \\\\ { { = ( d - 1 ) ! \\mathbb { E } \\left[ \\displaystyle { \\nabla _ { t } \\mathrm { D i a g } \\left( \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { \\lambda + \\sigma _ { i } ^ { ( u ) } } } \\right) ^ { 2 } } \\cdots \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\lambda + \\sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \\right] \\mathbf { V } _ { t } ^ { \\top } } } \\\\ { { = ( d - 1 ) ! \\mathbb { E } \\left[ \\displaystyle { \\sum _ { j = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\lambda + \\sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \\mathbf { V } _ { t } \\mathbf { I } _ { t } \\mathbf { V } _ { t } ^ { \\top } \\right] } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 263, + 224, + 735, + 431 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Dividing $( d - 1 ) !$ ! on both sides of (23) yields ", + "bbox": [ + 174, + 435, + 473, + 452 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/024dd790e4ed1358a5bc6cecd22bcf723e6929ce64fc27373f3d358d47597ac3.jpg", + "text": "$$\n\\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { t r } } ] = \\frac { n } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \\right] \\mathbf { I } _ { d } .\n$$", + "text_format": "latex", + "bbox": [ + 334, + 458, + 663, + 502 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Next, we find the expected covariance matrix $\\begin{array} { r } { \\frac { 1 } { n ^ { 2 } } \\mathbb { E } \\big [ \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } \\big ( \\mathbf { w } _ { 0 , \\star } \\big ) \\big ( \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } \\big ( \\mathbf { w } _ { 0 , \\star } \\big ) \\big ) ^ { \\top } \\big ] , } \\end{array}$ . ", + "bbox": [ + 173, + 515, + 714, + 535 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/705f1aadcb1312e82c6081fe9bba0ef1aa49996e092b7efb14897d958bf02a35.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathbb { E } [ \\nabla \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } ) ( \\nabla \\ell _ { t } ^ { \\mathrm { r t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } ) ) ^ { \\top } ] } \\\\ & { = \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } ( \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ] } \\\\ & { \\stackrel { ( i ) } { = } \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\bigg ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 233, + 540, + 767, + 669 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Here step $( i )$ uses the SVD of $\\mathbf { X } _ { t }$ and the computation in (22). Combining (24) and (25), we derive the asymptotic covariance matrix of using $L ^ { \\mathrm { t r - t r } }$ as ", + "bbox": [ + 173, + 672, + 825, + 702 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/d1409f3509f7924e0821516eaca84003e952e3fb28518dbf1e6399221d2b5028.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathrm { A s y m C o v } ( \\widetilde { \\mathbf { w } } _ { 0 , T } ^ { t \\star \\star r } ) } \\\\ & { = \\mathbb { E } [ \\nabla ^ { - 2 } \\ell _ { t } ^ { t \\star r } ] \\mathrm { C o v } [ \\nabla \\ell _ { t } ^ { \\mathrm { r r } + t } ( \\mathbf { w } _ { 0 , \\star } ) ] \\mathbb { E } [ \\nabla ^ { - 2 } \\ell _ { t } ^ { \\mathrm { t r } \\star r } ] } \\\\ & { = \\displaystyle \\frac { d ^ { 2 } } { n ^ { 2 } } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \\right] \\right) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\displaystyle \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } \\right. } \\\\ & { \\quad \\left. \\cdot \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\displaystyle \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 228, + 708, + 767, + 883 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Taking trace in (26), we deduce ", + "bbox": [ + 174, + 886, + 383, + 901 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "AsymMSE(wb tr-tr0,T )", + "bbox": [ + 218, + 907, + 346, + 925 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/eb8346f6ae1f45004f7c2d4a6df4122973fe43fe234c56e9c2ee66db9d4d17b8.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad _ { 1 } - ( \\cdot _ { 2 } + \\kappa _ { 3 } \\alpha ) \\alpha ( \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } ) ^ { 2 } } \\\\ & { = \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad - \\kappa ( \\kappa [ \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) \\kappa _ { 1 } ( \\frac { \\rho _ { 1 } ^ { \\varDelta } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\le \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\le \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\quad \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & \\quad - \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) \\kappa _ { 1 } ( \\mathrm { l o g } _ { \\varepsilon } - \\mathrm \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 197, + 101, + 802, + 412 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "where step $( i )$ utilizes the independence between $\\mathbf { w } _ { t }$ and $\\mathbf { X } _ { t }$ and applies the permutation trick in ", + "bbox": [ + 178, + 420, + 821, + 435 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "(23) to find E $\\begin{array} { r l r } & { } & { \\left[ { \\bf V } _ { t } \\mathrm { D i a g } \\left( \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { 1 } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 4 } } , \\dots , \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { d } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 4 } } \\right) { \\bf V } _ { t } ^ { \\top } \\right] . } \\end{array}$ ", + "bbox": [ + 173, + 434, + 580, + 468 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "• Asymptotic variance of $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }$ . Similar to the no-split case, we compute the Hessian $\\begin{array} { r } { \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ \\nabla ^ { 2 } \\ell _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ] = \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ] } \\end{array}$ first. ", + "bbox": [ + 173, + 473, + 823, + 507 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/08873ede98ad86995db6a60b4c3d088b807857e1b65e270fb9772bbb12541e4a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r a i n } } ] } \\\\ & { = \\mathbb { E } \\Bigg [ ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s a } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { s a } } } \\\\ & { \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) \\Bigg ] } \\\\ & { \\stackrel { ( i ) } { = } n _ { 2 } \\mathbb { E } \\Bigg [ ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) \\Bigg ] } \\\\ & \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 228, + 515, + 767, + 704 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "where $( i )$ uses the data generating assumption $\\mathbb { E } [ ( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } ) ^ { \\top } \\mathbf { X } _ { t . } ^ { \\mathsf { v a l } } ] = n _ { 2 } \\mathbf { I } _ { d }$ and the independence between $\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } }$ and $\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }$ , and $( i i )$ t follows from the SVD of $\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } = \\mathbf { U } _ { t } ^ { \\mathsf { t r a i n } } \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } ( \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top }$ ", + "bbox": [ + 173, + 708, + 823, + 739 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "$\\sigma _ { 1 } ^ { ( n _ { 1 } ) } \\geq \\cdots \\geq \\sigma _ { d } ^ { ( n _ { 1 } ) }$ eigenvalues of . We can now f $\\begin{array} { r } { \\frac { 1 } { n _ { 1 } } ( { \\bf X } _ { t } ^ { \\sf t r a i n } ) ^ { \\top } { \\bf X } _ { t } ^ { \\sf t r a i n } } \\end{array}$ . Thus, we have) as $( \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } = \\mathrm { D i a g } ( n _ { 1 } \\sigma _ { 1 } ^ { ( n _ { 1 } ) } , \\ldots , n _ { 1 } \\sigma _ { d } ^ { ( n _ { 1 } ) } )$ σ(n1)d ) urther simplify (28 ", + "bbox": [ + 174, + 746, + 825, + 785 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/de284222dacba510f3b015654ffaaebb7e50a96b807d8f5a02658e39c701667d.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad n _ { 2 } \\mathbb { E } \\left[ \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } \\left( \\mathbf { I } _ { d } - ( ( \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } \\right) ^ { 2 } ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\right] } \\\\ & { \\stackrel { ( i ) } { = } n _ { 2 } \\mathbb { E } \\left[ \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\right] } \\\\ & { \\stackrel { ( i i ) } { = } \\frac { n _ { 2 } } { d } \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \\right] \\mathbf { I } _ { d } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 241, + 789, + 761, + 906 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Step $( i )$ follows from the same computation in (22), and step $( i i )$ uses the permutation trick in (23). ", + "bbox": [ + 173, + 909, + 823, + 925 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Next, we find the expected covariance matrix $\\begin{array} { r } { \\frac { 1 } { n _ { 2 } ^ { 2 } } \\mathbb { E } [ \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) ( \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) ) ^ { \\top } ] } \\end{array}$ ", + "bbox": [ + 173, + 102, + 715, + 122 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/a98c7077ead09b6c5f9f4b1672fb8b7b4bf0d8b6375d5a847fd39ac4e089360f.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathbb { E } | \\nabla \\xi ^ { t } \\mathbf { t } ^ { \\tau } \\mathbf { w } _ { 0 , k } | ( \\nabla \\xi _ { t } ^ { t \\tau } \\mathbf { w } _ { 0 , k } ) ^ { \\tau } | } \\\\ & { = \\mathbb { E } \\big [ ( \\mathbf { M } _ { t } ^ { \\tau , \\tau } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\tau , \\tau } \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } \\big ) ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ^ { \\top } ( \\mathbf { M } _ { t } ^ { \\tau , \\tau - \\tau } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\tau , \\tau + \\tau } \\big ] } \\\\ & { = \\mathbb { E } \\Bigg [ \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 0 } ^ { ( 1 ) } \\mathbf { 1 } ^ { \\tau + 1 } } \\lambda ^ { \\prime } \\cdots \\cdots \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) } \\mathbf { 1 } } \\Big ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { x } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } \\Gamma } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n ) } + \\lambda } \\cdots \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) + 1 } } \\Big ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( 1 ) } + \\lambda } \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) + 1 } + \\lambda } \\Bigg ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } } \\\\ & \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg ( \\displaystyle \\frac { \\lambda } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 200, + 132, + 800, + 347 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Combining (29) and (30), we derive the asymptotic covariance matrix of using $L ^ { \\mathrm { t r - v a l } }$ as ", + "bbox": [ + 173, + 354, + 750, + 371 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/67673d6cd44011fa1309707bed96b12768c869291bb52725a27d2b2e775d04a7.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathrm { A s s u p ~ C o s s : } ( \\nabla _ { v _ { \\xi } } \\mathrm { a r } ) } \\\\ & { = \\mathbb { E } \\{ \\nabla _ { v _ { \\xi } } \\mathrm { a r } \\sin [ \\mathrm { C e } ( \\mathrm { B e } ( \\xi _ { v _ { \\xi } } \\cdots ) ) ] \\} } \\\\ & { = \\frac { d ^ { 2 } } { v _ { \\xi } ^ { 2 } } ( \\mathbb { E } [ \\frac { d } { \\sum _ { i = 1 } ^ { d } ( \\lambda + v _ { \\xi } ^ { ( n ) } \\cdots ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathbb { E } [ \\nabla _ { v _ { \\xi } } \\mathrm { a r n } \\mathrm { b i g h } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots ) ] \\cdot \\mathbf { V } _ { v _ { \\xi } } ^ { \\mathrm { a s s } } ) ^ { \\top } ( \\mathbf { X } _ { \\xi } ^ { \\mathrm { a d } } ) ^ { \\top } } \\\\ & { \\quad \\cdot \\mathbb { E } [ \\nabla _ { v _ { \\xi } } \\mathrm { a r n } \\mathrm { b i g h } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots ) \\cdot ( \\mathbf { V } _ { v _ { \\xi } } ^ { \\mathrm { a s s } } ) ^ { \\top } ( \\mathbf { W } _ { \\xi } - \\mathbf { w } _ { \\xi } ) | \\mathbf { \\Psi } ( \\mathbf { x } _ { \\xi } - \\mathbf { w } _ { \\xi } ) \\cdot \\mathbf { V } _ { v _ { \\xi } } ^ { \\top } } \\\\ & \\quad \\cdot \\mathbb { X } _ { v _ { \\xi } } ^ { \\mathrm { a r s t } } \\nabla _ { v _ { \\xi } } \\mathrm { a s } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) } - \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) } ) ( \\nabla _ { v _ { \\xi } } ^ { \\mathrm { a r s } } ) ^ { \\top } ( \\mathbf { w } _ { \\xi } - \\mathbf { w } _ { \\xi } ) \\cdot \\mathbf { V } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 196, + 378, + 802, + 641 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Taking trace in (31), we deduce ", + "bbox": [ + 174, + 647, + 383, + 662 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/6d0ec42c29b2d973f1138a4176955a46178acfc25ee054aaa38d9c8d9bddd7fc.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathrm { A s g n a l i t } \\ : \\ : \\mathrm { B e f f } _ { \\mathrm { e f f } } ^ { \\mathrm { o u t } , \\mathrm { p } } } \\\\ & { = \\mathrm { t } \\ : ( \\mathrm { A s g n a l i t y } \\ : ( \\mathrm { w } _ { \\mathrm { i g h } } ^ { \\mathrm { o u t } } ) ^ { \\mathrm { p } } ) } \\\\ & { = \\frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } ( \\mathbb { Z } [ \\displaystyle \\sum _ { i = 1 } ^ { n } \\frac { \\lambda } { ( \\lambda + \\alpha _ { \\mathrm { i f f f } } ^ { \\mathrm { o u t } } ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathrm { ~ t } \\Bigg ( \\mathbb { E } [ \\mathrm { v } _ { \\mathrm { i n } } ^ { \\mathrm { s t a n h } } \\mathrm { l i s k g } ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } } + \\lambda ^ { \\mathrm { ~ , ~ } \\dots , \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } } ) ( \\mathrm { v } _ { \\mathrm { i n } } ^ { \\mathrm { s t a n h } } ) ^ { \\mathrm { T } } ( \\mathrm { X } _ { \\mathrm { f } } ^ { \\mathrm { a d } } ) ^ { \\mathrm { T } } } \\\\ & { \\quad \\cdot \\mathrm { ~ X } _ { \\mathrm { i } } ^ { \\mathrm { o u t } } \\mathrm { Y } _ { \\mathrm { t } } ^ { \\mathrm { o u t } } \\mathrm { D i s k } \\Bigg ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } - \\lambda ^ { \\mathrm { ~ , ~ } \\dots , \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } } \\Bigg ) \\ : ( \\mathrm { Y } _ { \\mathrm { t } } ^ { \\mathrm { p r o n } } ) ^ { \\mathrm { T } } ( \\mathrm { w } _ { \\mathrm { e } _ { k } } - \\mathrm { w } _ { \\mathrm { i f } } ^ { \\mathrm { o u t } } | \\mathrm { w } _ { \\mathrm { i f } } , \\mathrm { ~ } - \\mathrm { w } _ { \\mathrm { i f } } ^ { \\mathrm { o u t } } ) ^ { \\mathrm { T } } } \\\\ & \\quad \\cdot \\mathrm ~ \\mathbb { V } _ { \\mathrm { t } } ^ { \\mathrm { e x i n } } \\mathrm { l i s k g } ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } - \\lambda ^ { \\mathrm { ~ , ~ } } \\frac \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 186, + 669, + 787, + 929 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/ac5982a756fef66f5f48f3023e785433e17f3e4cfdf7de47b387ac3ba29af61b.jpg", + "text": "$$\n\\begin{array} { r l } & { \\frac { ( i ) } { n _ { 2 } ^ { 2 } } ( { \\mathbb { E } } [ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot { \\operatorname { t r } } ( { \\mathbb { E } } [ \\displaystyle \\mathbf { V } _ { t } ^ { \\mathrm { r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda } { \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s } a } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s } a } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda } { \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } ] ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 191, + 99, + 810, + 277 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "where $( i )$ follows from the cyclic property of the matrix trace operation. Due to the isotropicity of $\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } }$ and $\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }$ , we claim that ", + "bbox": [ + 173, + 296, + 826, + 325 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/db384a9ab3f318df98ac6bf89445fc0fa2178a479781c396d33e40f1c750ff48.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } \\bigg [ { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda } , \\ldots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda } , \\ldots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } \\bigg ] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 254, + 333, + 758, + 464 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "is a diagonal matrix $c \\mathbf { I } _ { d }$ with all the diagonal elements identical. We can show the claim bying taking expectation with respect to $\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }$ first. Since $\\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } }$ is an orthogonal matrix, $\\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } }$ has the same distribution as $\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }$ and independent of $\\mathbf { X } _ { t }$ . We verify that any off-diagonal element of the matrix expectation ", + "bbox": [ + 174, + 468, + 825, + 525 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/032ec99591d49c556e4617bef17dd37da8431a7c3d3d6a8805b6b68e74d954c8.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { A } : = \\mathbb { E } _ { \\mathbf { X } _ { t } ^ { \\mathrm { s i n } } } \\bigg [ \\big ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\big ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) } \\\\ & { \\qquad \\cdot ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\bigg ] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 222, + 530, + 774, + 611 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "is zero. We denote ${ \\bf X } _ { t } ^ { \\mathsf { v a l } } { \\bf V } _ { t } ^ { \\mathsf { t r a i n } } = [ { \\bf x } _ { 1 } , \\ldots , { \\bf x } _ { n } ] ^ { \\top } \\in \\mathbb { R } ^ { n _ { 2 } \\times d }$ with $\\mathbf { x } _ { i }$ iid∼ ${ \\mathsf { N } } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )$ . For $k \\neq \\ell$ , the $( k , \\ell )$ -th entry $A _ { k , \\ell }$ of $\\mathbf { A }$ is ", + "bbox": [ + 173, + 618, + 823, + 651 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/d1a2fff61a3aae3c3a5188b89ff92427ce90a1cd8b93bfca61a96eebe036be6c.jpg", + "text": "$$\n\\begin{array} { l } { { A _ { k , \\ell } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\sum _ { i } x _ { k , i } x _ { j , i } \\right) \\left( \\sum _ { i } x _ { j , i } x _ { \\ell , i } \\right) \\right) \\right] } } \\\\ { { \\mathrm { } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \\ell , n } \\right) \\right] } } \\\\ { { \\mathrm { } \\overset { ( i ) } { = } 0 , } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 276, + 659, + 718, + 785 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "where $x _ { i , j }$ denotes the $j$ -th element of $\\mathbf { x } _ { i }$ . Equality $( i )$ holds, since either $x _ { k , m }$ or $x _ { \\ell , n }$ only appears once in each summand. Therefore, we can write $\\mathbf { A } = \\operatorname { D i a g } \\left( A _ { 1 , 1 } , \\ldots , A _ { d , d } \\right)$ with $A _ { k , k }$ being ", + "bbox": [ + 173, + 790, + 823, + 820 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/e2f1eb53e4fd79e08198b7a7454abb859871b3838e611dbe8bf9d391a07beaa1.jpg", + "text": "$$\n\\begin{array} { r l r } & { } & { A _ { k , k } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \\ell , n } \\right) \\right] } \\\\ & { } & { = \\mathbb E \\left[ \\displaystyle \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { k } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { k , m } x _ { k , n } x _ { k , n } \\right) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 307, + 827, + 687, + 924 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "$A _ { k , k }$ only depends on $\\sigma _ { k } ^ { ( n _ { 1 } ) }$ . Plugging back into (33), we have ", + "bbox": [ + 173, + 101, + 671, + 121 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/a828773c439c32fae71345410963ff84dfe4b414fa076eb9adb947c769d174c1.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { a t a l p h i s g a } } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { a r s i n g } } ) ^ { - 1 } \\big ( \\mathbf { X } _ { t } ^ { \\mathrm { a r s i } } \\big ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { a p } } \\mathbf { V } _ { t } ^ { \\mathrm { a b l p h i s g } } \\bigg ( \\frac { \\lambda } { ( \\sigma _ { t } ^ { ( 1 ) } + \\lambda ) ^ { 2 } } , \\cdots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda ) ^ { 2 } } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { p a l p h } } ) ^ { \\top } \\big ( \\mathbf { X } _ { t } ^ { \\mathrm { a r s i } } \\big ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { a p } } \\mathbf { V } _ { t } ^ { \\mathrm { a p } } \\mathrm { P l a s i n g } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { p a r p } } ) ^ { \\top } \\bigg ] } \\\\ & { = \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { s a m p h i s g a } } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( k + 1 ) } + \\lambda } \\bigg ) \\ \\mathrm { D i s g } ( A _ { 1 , 1 } , \\ldots , A _ { t , \\mathrm { d } } ) } \\\\ & { \\qquad \\cdot \\mathrm { D i s g } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { a r p } } ) ^ { \\top } \\bigg ] } \\\\ & = \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { s a m p h } } ( \\frac { \\lambda } ( \\sigma _ { t } ^ { ( 1 ) } + \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 243, + 123, + 756, + 382 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "where equality $( i )$ utilizes the permutation trick in (24). To this end, it is sufficient to find $c$ as ", + "bbox": [ + 174, + 405, + 789, + 420 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/fce22d68f161751f2c327ef81c8ff20649dfe1aaf32b378457f0ff62ae600019.jpg", + "text": "$$\n\\begin{array} { r l } & { c = \\cfrac { 1 } { d } \\mathrm { t r } ( \\mathbb { B } [ \\nabla _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda } { \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda } , \\cdots , \\cfrac { \\lambda } { \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { a b } } ) ^ { \\top } } \\\\ & { \\qquad \\times \\mathbf { X } _ { t } ^ { \\mathrm { s d } } \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s d } } ) ^ { \\top } } \\\\ & { \\qquad \\times \\mathbf { X } _ { t } ^ { \\mathrm { s d } } \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda } { \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda } , \\cdots , \\cfrac { \\lambda } { \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ] ) } \\\\ & { = \\cfrac { 1 } { d } \\mathrm { t r } ( \\mathbb { B } [ \\mathbf { X } _ { t } ^ { \\mathrm { a i n } } \\mathrm { V } _ { t } ^ { \\mathrm { t x i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { a b } } ) ^ { \\top } } \\\\ & \\qquad \\times \\mathbf { X } _ { t } ^ \\mathrm s \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 220, + 422, + 774, + 638 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Observe again that $\\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } } \\in \\mathbb { R } ^ { n _ { 2 } \\times d }$ is a Gaussian random matrix. We rewrite (34) as ", + "bbox": [ + 173, + 638, + 756, + 655 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/64927095f105463e3b7525064e275e2aa29a57f3f80abeafd56207b14d92afe1.jpg", + "text": "$$\nc = \\frac { 1 } { d } \\mathbb { E } \\left[ \\left( \\sum _ { i , j = 1 } ^ { n _ { 2 } } \\mathbf { v } _ { i } ^ { \\top } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { v } _ { j } \\right) ^ { 2 } \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 261, + 657, + 735, + 715 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "where $\\mathbf { v } _ { i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )$ is i.i.d. Gaussian random vectors for $i = 1 , \\ldots , n _ { 2 }$ . To compute (35), we need the following result. ", + "bbox": [ + 174, + 720, + 821, + 751 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Claim 7. Given any symmetric matrix $\\textbf { A } \\in \\mathbb { R } ^ { d \\times d }$ and i.i.d. standard Gaussian random vectors $\\mathbf { v } , \\mathbf { u } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )$ , we have ", + "bbox": [ + 174, + 756, + 820, + 790 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/b98fd43d90d69eb77822761056b91573b34777686bec9d94f8b062057c5162f7.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { v } ) ^ { 2 } \\right] = 2 \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } + \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) \\quad a n d } \\\\ & { \\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { u } ) ^ { 2 } \\right] = \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 357, + 791, + 640, + 835 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Proof of Claim 7. We show (36) first. We denote $A _ { i , j }$ as the $( i , j )$ -th element of $\\mathbf { A }$ and $v _ { i }$ as the $i$ -th element of $\\mathbf { v }$ . Expanding the quadratic form, we have ", + "bbox": [ + 171, + 847, + 826, + 877 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/c96a471b2e3c85035074275520534736f07705d741e70ba18b5683d25032df81.jpg", + "text": "$$\n\\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { v } ) ^ { 2 } \\right] = \\mathbb { E } \\left[ \\sum _ { i , j , k , \\ell \\leq d } v _ { i } v _ { j } v _ { k } v _ { \\ell } A _ { i , j } A _ { k , \\ell } \\right]\n$$", + "text_format": "latex", + "bbox": [ + 235, + 878, + 558, + 929 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/0e5caba3e729df7d95cf8d7afbcb020baf94913ec264bb4daf04a7a404dcc82b.jpg", + "text": "$$\n\\begin{array} { r l } & { = \\mathbb { E } \\left[ \\underset { i \\leq d } { \\sum } v _ { i } ^ { 4 } A _ { i , i } ^ { 2 } \\right] + \\mathbb { E } \\left[ \\underset { i \\neq j } { \\sum } v _ { i } ^ { 2 } v _ { j } ^ { 2 } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) \\right] } \\\\ & { = 3 \\underset { i \\leq d } { \\sum } A _ { i , i } ^ { 2 } + \\underset { i \\neq j } { \\sum } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) } \\\\ & { = \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) + 2 \\underset { i \\leq d } { \\sum } A _ { i , i } ^ { 2 } + \\underset { i \\neq j } { \\sum } ( A _ { i , j } ^ { 2 } + A _ { i , j } A _ { j , i } ) } \\\\ & { = \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) + 2 \\| \\mathbf { A } \\| _ { \\mathrm { F r } } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 328, + 99, + 756, + 243 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Next, we show (37) by the cyclic property of race. ", + "bbox": [ + 173, + 246, + 503, + 261 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/f991837b9ebe8ae98b54addae6f2b5517b699408b07f24fbd2e566762b63bf04.jpg", + "text": "$$\n\\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { u } ) ^ { 2 } \\right] = \\operatorname { t r } \\left( \\mathbb { E } \\left[ \\mathbf { u } \\mathbf { u } ^ { \\top } \\mathbf { A } \\mathbf { v } \\mathbf { v } ^ { \\top } \\mathbf { A } \\right] \\right) = \\operatorname { t r } ( \\mathbf { A } ^ { 2 } ) = \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 295, + 265, + 700, + 286 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "We back to the computation of (35) using Claim 7. ", + "bbox": [ + 173, + 319, + 508, + 334 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/a410cd1916f88cadc86d36af719c095e410f0da092175e0d1eaac747909130a8.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad _ { 1 } = - \\frac { 1 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } - \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin \\beta } ) ^ { k } ] } \\\\ & { \\quad - \\frac { 3 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) \\sin \\beta ] } \\\\ & { \\quad \\quad + \\frac { 3 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) ] } \\\\ & { \\quad - \\frac { \\sin \\beta } { 2 ^ { k } } \\mathbb { E } [ ( \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } ) ) ] } \\\\ & { \\quad \\quad _ { 1 } = \\frac { \\sin \\beta } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\alpha } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) ] } \\\\ & { \\quad \\quad + \\frac { \\sin \\beta } { 2 ^ { k } } \\frac { \\sin \\alpha } { \\sin \\alpha + \\sin \\beta } ( \\frac { \\sin \\alpha } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\sin \\beta } ) ] } \\\\ & \\quad \\quad - \\frac { \\sin \\alpha } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\sin \\beta } ) ^ { k } - ( \\sin \\beta + \\frac { \\sin \\beta } \\sin \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 259, + 343, + 741, + 690 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Combining (38) and (33), by the independence between $\\mathbf { w } _ { t }$ and $\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { X } _ { t } ^ { \\mathsf { v a l } }$ , we compute (32) as ", + "bbox": [ + 173, + 688, + 807, + 705 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/db7416da64c3aa6a52d960fd3bfad14e8acbc9477930820648deab346d08b53c.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathrm { A s y n M N S E } ( \\widehat { \\mathbf { w } } _ { 0 , \\mathcal { T } } ^ { t , \\mathcal { T } } ) } \\\\ & { = \\displaystyle \\frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \\right] \\right) ^ { - 2 } } \\\\ & { \\qquad \\cdot \\displaystyle \\frac { n _ { 2 } } { d } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right] ^ { 2 } + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 4 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } } \\right] \\right) } \\\\ & { \\qquad \\cdot \\mathbb { E } \\left[ ( \\mathbf { w } _ { 0 , \\ast } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\ast } - \\mathbf { w } _ { t } ) ^ { \\top } \\right] } \\\\ & { = \\displaystyle \\frac { d R ^ { 2 } } { n _ { 2 } } \\frac { \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] ^ { 2 } + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } \\right] \\right) ^ { 2 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 243, + 713, + 756, + 907 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "The proof is complete. ", + "bbox": [ + 173, + 909, + 323, + 924 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "Corollary 8 (Optimal rate of the train-val method at finite $( n , d ) )$ . For any $( n , d )$ and any split ratio $( n _ { 1 } , n _ { 2 } ) \\stackrel { \\cdot } { = } ( n _ { 1 } , \\stackrel { \\cdot } { = } n - n _ { 1 } )$ , the optimal rate (by tuning the regularization $\\lambda > 0$ ) of the train-val method is achieved at ", + "bbox": [ + 174, + 128, + 825, + 172 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/d34ecf7a8bc39cc0e39dec0e3075ace83def4ceacb393108d1301a7058b4ef68.jpg", + "text": "$$\n\\operatorname* { i n f } _ { \\lambda > 0 } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\operatorname* { l i m } _ { \\lambda \\to \\infty } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 178, + 815, + 210 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Further optimizing the rate over $n _ { 2 }$ , the best rate is taken at $( n _ { 1 } , n _ { 2 } ) = ( 0 , n )$ , in which the rate is ", + "bbox": [ + 171, + 218, + 818, + 234 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/acf4f5a5d7b4caacecb7881b48f0aa56b8dfc569f1b13f86e67b2ad600bbcdd5.jpg", + "text": "$$\n\\mathrm { i n f } _ { \\lambda > 0 , n _ { 2 } \\in [ n ] } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } - \\mathsf { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { ( d + n + 1 ) R ^ { 2 } } { n } .\n$$", + "text_format": "latex", + "bbox": [ + 282, + 241, + 715, + 273 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Discussion: Using all data as validation Corollary 8 suggests that the optimal asymptotic rate of the train-val method is obtained at $\\lambda = \\infty$ and $( n _ { 1 } , n _ { 2 } ) = ( 0 , n )$ . In other words, the optimal choice for the train-val method is to use all the data as validation. In this case, since there is no training data, the inner solver reduces to the identity map: $\\mathcal { A } _ { \\infty , 0 } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) = \\mathbf { w } _ { 0 }$ , and the outer loop reduces to learning a single linear model $\\mathbf { w } _ { 0 }$ on all the tasks combined. We remark that while the optimality of such a split ratio is likely an artifact of the data distribution we assumed (noiseless realizable linear model) and may not generalize to other meta-learning problems, we do find experimentally that using more data as validation (than training) can also improve the performance on real metalearning tasks (see Table 2). ", + "bbox": [ + 173, + 285, + 826, + 412 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Proof of Corollary 8 Fix $n _ { 1 } \\in [ n ]$ and $n _ { 2 } = n - n _ { 1 }$ . Recall from Lemma 5 that ", + "bbox": [ + 171, + 417, + 722, + 435 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/e5512866c2ce15ea1a73279a2e7f4859803978869023b16abfd9d8386fde19fa.jpg", + "text": "$$\n\\mathrm { 1 s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\sim \\mathrm { s q l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { d R ^ { 2 } } { n _ { 2 } } \\cdot \\frac { \\mathbb { E } \\Big [ \\Big ( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ^ { 2 } ) \\Big ) \\Big ] } { \\Big ( \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ] \\Big ) ^ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 181, + 440, + 839, + 506 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Clearly, as $\\lambda \\to \\infty$ , we have ", + "bbox": [ + 173, + 512, + 362, + 526 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/5664d9ead6bf3997e226343f81dcea72840c823e4ec5dae0639b613e39c20774.jpg", + "text": "$$\n\\operatorname* { l i m } _ { \\lambda \\infty } \\mathrm { { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s u } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { d R ^ { 2 } } { n _ { 2 } } \\cdot \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { d ^ { 2 } } = \\frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 220, + 534, + 774, + 568 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "It remains to show that the above quantity is a lower bound for $\\mathrm { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\right)$ fo r any $\\lambda > 0$ , which is equivalent to ", + "bbox": [ + 173, + 575, + 826, + 606 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/0885147a96023e13e09f9ec7cd88fc5f9a0909bcf71cbd9a641fa7328df5df9f.jpg", + "text": "$$\n\\frac { \\Xi \\bigg [ \\Big ( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\bigg ] } { \\Big ( \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ] \\Big ) ^ { 2 } } \\geq \\frac { d + n _ { 2 } + 1 } { d } , \\mathrm { f o r ~ a l l } \\lambda > 0 .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 613, + 826, + 678 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "We now prove (39). For $i \\in [ n _ { 1 } ]$ , define random variables ", + "bbox": [ + 174, + 699, + 553, + 715 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/f76b9e2b6e6eba12986a7947285962d6049dd3d26516741b5a79ec41c808d7c9.jpg", + "text": "$$\nX _ { i } : = \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\in [ 0 , 1 ] \\mathrm { a n d } Y _ { i } : = 1 - X _ { i } \\in [ 0 , 1 ] .\n$$", + "text_format": "latex", + "bbox": [ + 305, + 720, + 692, + 761 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "Then the left-hand side of (39) can be rewritten as ", + "bbox": [ + 176, + 767, + 501, + 782 + ], + "page_idx": 23 + }, + { + "type": "equation", + "img_path": "images/0258f8181380db316241ed1c03d0e3dc4aa5fa893a5fc8f24c4de36a8d8b3a4a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\frac { \\mathbb { E } \\left[ \\left( d - n _ { 1 } + \\sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\left( d - n _ { 1 } + \\sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } ^ { 2 } \\right) \\right] } { \\left( \\mathbb { E } \\left[ d - n _ { 1 } + \\sum _ { i = 1 } ^ { n } X _ { i } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { \\mathbb { E } \\left[ \\left( d - \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \\right) ^ { 2 } + \\left( n _ { 2 } + 1 \\right) \\left( d - 2 \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } + \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } ^ { 2 } \\right) \\right] } { \\left( \\mathbb { E } \\left[ d - \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d - 2 ( d + n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } \\right] + \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { d ^ { 2 } - 2 d \\mathbb { E } \\left[ \\sum Y _ { i } \\right] + \\left( \\mathbb { E } \\left[ \\sum Y _ { i } \\right] \\right) ^ { 2 } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 232, + 787, + 769, + 925 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "By algebraic manipulation, inequality (39) is equivalent to showing that ", + "bbox": [ + 173, + 103, + 645, + 119 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/91585135229da573690bda916fa1a2f2d97a28baabe2a7368044d6aafa780434.jpg", + "text": "$$\n\\frac { \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { \\left( \\mathbb { E } [ \\sum Y _ { i } ] \\right) ^ { 2 } } \\geq \\frac { d + n _ { 2 } + 1 } { d } .\n$$", + "text_format": "latex", + "bbox": [ + 331, + 122, + 666, + 161 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Clearly, $\\mathbb { E } [ ( \\sum Y _ { i } ) ^ { 2 } ] \\ge ( \\mathbb { E } [ \\sum Y _ { i } ] ) ^ { 2 }$ . By Cauchy-Schwarz we also have ", + "bbox": [ + 174, + 165, + 635, + 183 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/7dbae1cb587a7e2666bbf139476e2f5d28a638c2a241f75903fd98359e3d09ec.jpg", + "text": "$$\n\\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] \\geq \\frac { 1 } { n _ { 1 } } \\mathbb { E } \\left[ \\left( \\sum Y _ { i } \\right) ^ { 2 } \\right] \\geq \\frac { 1 } { n _ { 1 } } \\Big ( \\mathbb { E } \\left[ \\sum Y _ { i } \\right] \\Big ) ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 318, + 185, + 678, + 220 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Therefore we have ", + "bbox": [ + 174, + 224, + 299, + 238 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/fd38806f5a35c5a9720ab9b6674ed9310b6f01b034524fed09a702d6a2ab5919.jpg", + "text": "$$\n\\frac { \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { ( \\mathbb { E } [ \\sum Y _ { i } ] ) ^ { 2 } } \\geq 1 + \\frac { n _ { 2 } + 1 } { n _ { 1 } } \\geq 1 + \\frac { n _ { 2 } + 1 } { d } = \\frac { d + n _ { 2 } + 1 } { d } ,\n$$", + "text_format": "latex", + "bbox": [ + 232, + 239, + 764, + 279 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "where we have used that $n _ { 1 } \\leq n \\leq d$ . This shows (40) and consequently (39). ", + "bbox": [ + 173, + 281, + 686, + 297 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "B.4 RATE OF THE TRAIN-TRAIN METHOD IN THE PROPORTIONAL LIMIT ", + "text_level": 1, + "bbox": [ + 173, + 340, + 679, + 356 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Theorem 9 (Exact rates of the train-train method in the proportional limit). In the high-dimensional limiting regime $d , n \\infty$ , $d / n \\gamma$ where $\\gamma \\in ( 0 , \\infty )$ is a fixed shape parameter, for any $\\lambda > 0$ ", + "bbox": [ + 174, + 366, + 825, + 396 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/06301a5281d93f9622e89b842b57d12da190d5a9037292fd8c0ef1d5ebf77348.jpg", + "text": "$$\n\\begin{array} { r l } & { \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } { \\mathrm { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r + \\sf t r } ( n ; \\lambda ) \\big ) = \\rho _ { \\lambda , \\gamma } R ^ { 2 } . } \\\\ & { \\qquad \\quad \\lambda , \\gamma = 4 \\gamma ^ { 2 } \\big [ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\big ] / ( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\big ( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\big ) ^ { 3 / 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 214, + 400, + 826, + 448 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Proof of Theorem 9 Let $\\widehat { \\pmb { \\Sigma } } _ { n } : = \\frac { 1 } { n } \\pmb { \\mathrm { X } } _ { t } \\pmb { \\mathrm { X } } _ { t } ^ { \\top }$ denote the sample covariance matrix of the inputs in a single task $\\mathbf { \\rho } ( t )$ . By Lemma 5, we have ", + "bbox": [ + 174, + 457, + 823, + 488 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/2d740799e44e8bd37a61fd25adb958324c8fd5fa6a459a3c3ae21c048dd2c627.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } ( n ; \\lambda ) ) = R ^ { 2 } \\cdot \\frac { \\frac { 1 } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) ^ { 2 } / \\big ( \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) + \\lambda \\big ) ^ { 4 } \\right] } { \\left( \\frac { 1 } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) / \\big ( \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { = R ^ { 2 } \\cdot \\underbrace { \\frac { 1 } { d } \\mathbb { E } \\left[ \\mathrm { t r } \\left( ( \\widehat { \\pmb \\Sigma } _ { n } + \\lambda \\mathbf { I } _ { d } ) ^ { - 4 } \\widehat { \\pmb \\Sigma } _ { n } ^ { 2 } \\right) \\right] } _ { \\mathbf { I } _ { n , d } } / \\Bigg \\{ \\underbrace { \\frac { 1 } { d } \\mathbb { E } \\left[ \\mathrm { t r } \\left( ( \\widehat { \\pmb \\Sigma } _ { n } + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\widehat { \\pmb \\Sigma } _ { n } \\right) \\right] } _ { \\mathbf { I } _ { n , d } } } \\Bigg \\} ^ { 2 } . \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 251, + 492, + 750, + 603 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "We now evaluate quantities $\\mathrm { I } _ { n , d }$ and $\\Pi _ { n , d }$ in the high-dimensional limit of $d , n \\infty$ , $d / n \\to \\gamma \\in$ $( 0 , \\infty )$ . Consider the (slightly generalized) Stieltjes transform of $\\widehat { \\Sigma } _ { n }$ defined for all $\\lambda _ { 1 } , \\lambda _ { 2 } > 0$ : ", + "bbox": [ + 173, + 607, + 825, + 640 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/99ab4a324fa75b38148ef6cdd8a08682515630a2132d1d56de440fd25bdbc49f.jpg", + "text": "$$\ns ( \\lambda _ { 1 } , \\lambda _ { 2 } ) : = \\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Bigl [ \\mathrm { t r } \\Bigl ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Bigr ) \\Bigr ] .\n$$", + "text_format": "latex", + "bbox": [ + 305, + 643, + 691, + 676 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "As the entries of $\\mathbf { X } _ { t }$ are i.i.d. ${ \\mathsf { N } } ( 0 , 1 )$ , the above limiting Stieltjes transform is the Stieltjes form of the Marchenko-Pastur law, which has a closed form (see, e.g. (Dobriban et al., 2018, Equation (7))) ", + "bbox": [ + 171, + 681, + 825, + 710 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/80f3bd441ec146dc23915c6ec3da59f7a2309a0b81cb5385fae1d2e7ce57c3c0.jpg", + "text": "$$\n\\begin{array} { c l } { { s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) = \\displaystyle \\lambda _ { 2 } ^ { - 1 } s ( \\lambda _ { 1 } / \\lambda _ { 2 } , 1 ) = \\displaystyle \\frac { 1 } { \\lambda _ { 2 } } \\cdot \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } / \\lambda _ { 2 } } } } \\\\ { { = \\displaystyle \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } } . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 210, + 714, + 764, + 789 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "Now observe that differentiating $s ( \\lambda _ { 1 } , \\lambda _ { 2 } )$ yields quantity $\\mathrm { I I }$ (known as the derivative trick of Stieltjes transforms). Indeed, we have ", + "bbox": [ + 173, + 791, + 825, + 821 + ], + "page_idx": 24 + }, + { + "type": "equation", + "img_path": "images/d5e2934daa7f9c6c01bc385420087d856280ec8c1fe37a9dffd6c992f819df64.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle - \\frac { d } { d \\lambda _ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) = - \\frac { d } { d \\lambda _ { 2 } } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Big ) \\Big ] } \\\\ { = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ - \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Big ) \\Big ] } \\\\ { = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 2 } \\widehat { \\pmb { \\Sigma } } _ { n } \\Big ) \\Big ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 258, + 824, + 740, + 929 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "(Above, the exchange of differentiation and limit is due to the uniform convergence of the derivatives, which holds at any $\\lambda _ { 1 } , \\lambda _ { 2 } ~ > ~ 0$ . See Appendix B.4.1 for a detailed justification.) Taking $\\lambda _ { 1 } = \\lambda$ and $\\lambda _ { 2 } = 1$ , we get ", + "bbox": [ + 173, + 103, + 825, + 146 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/ac31176b8dcc912b9fd7d8db4dbab0016fe99b744c944841d92d4f9fb71e2daf.jpg", + "text": "$$\n\\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\Pi _ { n , d } = \\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda \\mathbf { I } _ { d } + \\widehat { \\boldsymbol { \\Sigma } } _ { n } ) ^ { - 2 } \\widehat { \\boldsymbol { \\Sigma } } _ { n } \\Big ) \\Big ] = - \\frac { d } { d \\lambda _ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) | _ { \\lambda _ { 1 } = \\lambda , \\lambda _ { 2 } = 1 } .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 151, + 821, + 184 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Similarly we have ", + "bbox": [ + 174, + 189, + 295, + 204 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/607c5f73190f357bf095acb54ee799eb657a3ae66f403c6f075709538bc1eb56.jpg", + "text": "$$\n\\operatorname* { l i m } _ { \\substack { , n \\infty , d / n \\gamma } } \\mathrm { I } _ { n , d } = \\operatorname* { l i m } _ { \\substack { d , n \\infty , d / n \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda \\mathrm { I } _ { d } + \\widehat { \\Sigma } _ { n } ) ^ { - 4 } \\widehat { \\Sigma } _ { n } ^ { 2 } \\Big ) \\Big ] = - \\frac { 1 } { 6 } \\frac { d } { d \\lambda _ { 1 } } \\frac { d ^ { 2 } } { d \\lambda _ { 2 } ^ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) | _ { \\lambda _ { 1 } = \\lambda , \\lambda _ { 2 } = 1 }\n$$", + "text_format": "latex", + "bbox": [ + 181, + 209, + 839, + 244 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Evaluating the right-hand sides from differentiating the closed-form expression (42), we get ", + "bbox": [ + 171, + 247, + 776, + 263 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/6e54a3a3f32ab0a78687dede1a18a7bb8e413b683adb840495b086fd35938645.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\operatorname* { l i m } _ { { d , n \\to \\infty , d / n \\to \\gamma } } \\mathrm { I } _ { n , d } = \\frac { 1 } { 2 \\gamma } \\cdot \\frac { \\lambda + 1 + \\gamma } { \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } - \\frac { 1 } { 2 \\gamma } , } \\\\ { \\displaystyle \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\mathrm { I I } _ { n , d } = \\frac { ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 5 / 2 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 313, + 267, + 686, + 343 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Substituting back to (41) yields that ", + "bbox": [ + 174, + 345, + 410, + 361 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/22a5baab0651d692d0538f94eabc93cabaa077693f39065f793976056f4cb889.jpg", + "text": "$$\n\\begin{array} { r l } & { \\underset { d , n \\to \\infty , d / n \\to \\gamma } { \\operatorname* { l i m } } \\mathrm { A s y m M S E } ( \\widehat { \\ w } _ { 0 , T } ^ { \\mathrm { t r } + \\mathrm { t r } } ( n ; \\lambda ) ) = \\underset { d , n \\to \\infty , d / n \\to \\gamma } { \\operatorname* { l i m } } R ^ { 2 } \\cdot \\mathrm { I } _ { n , d } / \\mathrm { I } _ { n , d } ^ { 2 } } \\\\ & { = R ^ { 2 } \\cdot \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 5 / 2 } \\cdot \\left( \\frac { \\lambda + 1 + \\gamma } { \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } - 1 \\right) ^ { 2 } } } \\\\ & { = R ^ { 2 } \\cdot \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 3 / 2 } \\cdot \\left( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } \\right) ^ { 2 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 253, + 366, + 748, + 500 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "This proves the desired result. ", + "bbox": [ + 174, + 502, + 372, + 517 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "B.4.1 INTERCHANGING DERIVATIVE AND EXPECTATION / LIMIT ", + "text_level": 1, + "bbox": [ + 173, + 560, + 627, + 574 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Here we rigorously establish the interchange of the derivative and the expectation / limit used in (43). For convenience of notation let $\\_$ denote the empirical covariance matrix of $\\cdot$ . We wish to show that ", + "bbox": [ + 174, + 584, + 825, + 628 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/d014ebf0b8ebd8a1efeef2fff1e4fa883334ab04c2dec8cc6e43afb110dde078.jpg", + "text": "$$\n\\frac { d } { d \\lambda _ { 2 } } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\bigg ] .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 632, + 815, + 666 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "This involves the interchange of derivative and limit, and then the interchange of derivative and expectation. ", + "bbox": [ + 173, + 670, + 823, + 699 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Interchange of derivative and expectation First, we show that for any fixed $( d , n )$ , ", + "bbox": [ + 171, + 713, + 740, + 728 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/58ee449ca56a76fd1f3a5333e2dcf2828fd411afd525fe0617b33a5edef013f7.jpg", + "text": "$$\n\\frac { d } { d \\lambda _ { 2 } } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\mathbb { E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\bigg ] .\n$$", + "text_format": "latex", + "bbox": [ + 289, + 734, + 707, + 768 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "By definition of the derivative, we have ", + "bbox": [ + 173, + 772, + 434, + 787 + ], + "page_idx": 25 + }, + { + "type": "equation", + "img_path": "images/ad9b8bb6f15f860171cd2e8afff64714fb5f921fe5a4e2e03d809118bb6ff8f1.jpg", + "text": "$$\n\\frac { d } { d \\lambda _ { 2 } } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\operatorname* { l i m } _ { t \\to 0 } \\mathbb { E } \\left[ \\frac { \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } + t \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) - \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) } { t } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 187, + 791, + 808, + 834 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "For any $\\mathbf A \\succ \\mathbf 0$ , the function $\\_$ is continuously differentiable at $\\cdot$ with derivative $\\cdot$ , and thus locally Lipschitz around $t = 0$ with Lipschitz constant $\\left| \\operatorname { t r } ( \\mathbf { A } ^ { - 2 } \\mathbf { B } ) \\right| + 1$ . Applying this in the above expectation with $\\mathbf { A } = \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } \\succeq \\lambda _ { 1 } \\mathbf { I } _ { d }$ and $\\cdot$ , we get that for sufficiently small $\\cdot$ , the fraction inside the expectation is upper bounded by $\\vert \\mathrm { t r } ( \\lambda _ { 1 } ^ { - 2 } \\pmb { \\Sigma } ) \\vert + 1 < \\infty$ uniformly over $\\cdot$ . Thus by the Dominated Convergence Theorem, the limit can be passed into the expectation, which yields the expectation of the derivative. ", + "bbox": [ + 173, + 839, + 825, + 924 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Interchange of derivative and limit Define $f _ { n , d } ( \\lambda _ { 2 } ) : = \\frac { 1 } { d } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ]$ . It suffices to show that ", + "bbox": [ + 171, + 102, + 825, + 133 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/4dc38d6520fadbf0ebafb99fd04418f03afdcedea05139dd1680049b4d9dd56b.jpg", + "text": "$$\n\\frac { d } { d \\lambda _ { 2 } } \\operatorname * { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } f _ { n , d } ( \\lambda _ { 2 } ) = \\operatorname * { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } f _ { n , d } ^ { \\prime } ( \\lambda _ { 2 } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 316, + 135, + 679, + 167 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 173, + 174, + 217, + 188 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/76701ec300f4e140534b2744e9bbcd0a524702198138146b34070a37b075df8c.jpg", + "text": "$$\nf _ { n , d } ^ { \\prime } ( \\lambda _ { 2 } ) = { \\mathbb E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\frac { 1 } { d } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\Sigma ) ^ { - 1 } ) \\bigg ] = - \\frac { 1 } { d } { \\mathbb E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\Sigma ) ^ { - 2 } \\Sigma \\big ) \\big ]\n$$", + "text_format": "latex", + "bbox": [ + 241, + 191, + 756, + 226 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "by the result of the preceding part. ", + "bbox": [ + 173, + 231, + 400, + 246 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "As $\\_$ pointwise over $\\cdot$ by properties of the Wishart matrix (Bai $\\&$ Silverstein, 2010) and each individual $f _ { n , d }$ is differentiable, it suffices to show that the derivatives $f _ { n , d } ^ { \\prime } ( \\widetilde { \\lambda } _ { 2 } )$ converges uniformly for $\\cdot$ in a neighborhood of $\\cdot$ . Observe that can rewrite $f _ { n , d } ^ { \\prime }$ as ", + "bbox": [ + 173, + 252, + 826, + 304 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/38ea93a0502eebc694a7641095170fcf8ff1202fec0d8ee9e59ed30cf4d4295c.jpg", + "text": "$$\n-\n$$", + "text_format": "latex", + "bbox": [ + 366, + 311, + 630, + 338 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "where $\\hat { \\mu } _ { n , d }$ is the empirical distribution of the eigenvalues of $\\Sigma$ , and ", + "bbox": [ + 174, + 343, + 622, + 358 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/a3c786cf6c6908cd46d5d45e052c668d97fa71bfa0b121847df7c91d85214181.jpg", + "text": "$$\n\\_\n$$", + "text_format": "latex", + "bbox": [ + 339, + 364, + 658, + 400 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Therefore, as $\\hat { \\mu } _ { n , d }$ converges weakly to the Marchenko-Pastur distribution with probability one and $\\cdot$ is uniformly bounded for $\\widetilde { \\lambda } _ { 2 }$ in a small neighborhood of $\\cdot$ , we get that $\\cdot$ does converge uniformly to the expectation of $g _ { \\widetilde { \\lambda } _ { 2 } } ^ { } ( \\lambda )$ under the Marchenko-Pastur distribution. This shows the edesired interchange of derivative and limit. ", + "bbox": [ + 173, + 405, + 826, + 469 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "B.5 PROOF OF THEOREM 4 ", + "text_level": 1, + "bbox": [ + 174, + 486, + 375, + 500 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Throughout this proof we assume that $R ^ { 2 } = 1$ without loss of generality (as all the rates are constant multiples of $R ^ { 2 }$ ). ", + "bbox": [ + 174, + 511, + 825, + 541 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Part I: Optimal rate for $L ^ { \\mathrm { t r - t r } }$ By Theorem 9, we have ", + "bbox": [ + 173, + 554, + 552, + 570 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/e3b6e28b9173f4275a26b3ff67a1ea776975094abf1d59aacf29996b681180ff.jpg", + "text": "$$\n\\begin{array} { r l } & { \\underset { \\lambda > 0 } { \\operatorname* { i n f } } \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\overset { \\mathrm { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\right) } { \\operatorname* { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\right) } } \\\\ & { = \\underset { \\lambda > 0 } { \\operatorname* { i n f } } \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { \\displaystyle \\left( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } \\right) ^ { 2 } \\cdot \\left( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\right) ^ { 3 / 2 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 259, + 574, + 738, + 664 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "In order to bound $\\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , \\gamma )$ , picking any $\\lambda = \\lambda ( \\gamma )$ gives $f ( \\lambda ( \\gamma ) , \\gamma )$ as a valid upper bound, and our goal is to choose $\\lambda$ that yields a bound as tight as possible. Here we consider the choice ", + "bbox": [ + 173, + 667, + 825, + 698 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/e3da7ab3417940df3ee8bcaf7e577b2bf8535bba6f7b0e5a08f9a48aa2208984.jpg", + "text": "$$\n\\lambda = \\lambda ( \\gamma ) = \\operatorname* { m a x } \\left\\{ 1 - \\gamma / 2 , \\gamma - 1 / 2 \\right\\} = ( 1 - \\gamma / 2 ) \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + ( \\gamma - 1 / 2 ) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\}\n$$", + "text_format": "latex", + "bbox": [ + 217, + 703, + 781, + 720 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "which we now show yields the claimed upper bound. ", + "bbox": [ + 173, + 726, + 522, + 741 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Case 1: $\\gamma \\leq 1$ Substituting $\\lambda = 1 - \\gamma / 2$ into $f ( \\lambda , \\gamma )$ and simplifying, we get ", + "bbox": [ + 174, + 755, + 696, + 772 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/5f1aa8f3da8b8c46e2f9edc73bb1c8f0b1259c9ea047e638ae9f16fc2bd23a42.jpg", + "text": "$$\nf ( 1 - \\gamma / 2 , \\gamma ) = \\frac { 2 ( \\gamma ^ { 2 } - 3 \\gamma + 4 ) } { ( 2 - \\gamma / 2 ) ^ { 3 } } = : g _ { 1 } ( \\gamma ) .\n$$", + "text_format": "latex", + "bbox": [ + 352, + 776, + 645, + 811 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Clearly, $g _ { 1 } ( 0 ) = 1$ and $g _ { 1 } ( 1 ) = 3 2 / 2 7$ . Further differentiating $g _ { 1 }$ twice gives ", + "bbox": [ + 171, + 815, + 678, + 833 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/aa25c46f2dccd863d4156a4e3c362080c404b92978c5ca02531422f5785582ef.jpg", + "text": "$$\ng _ { 1 } ^ { \\prime \\prime } ( \\gamma ) = \\frac { \\gamma ^ { 2 } + 7 \\gamma + 4 } { ( 2 - \\gamma / 2 ) ^ { 5 } } > 0 ~ \\mathrm { f o r ~ a l l } \\gamma \\in [ 0 , 1 ] .\n$$", + "text_format": "latex", + "bbox": [ + 348, + 837, + 650, + 872 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Thus $g _ { 1 }$ is convex on $[ 0 , 1 ]$ , from which we conclude that ", + "bbox": [ + 173, + 877, + 549, + 893 + ], + "page_idx": 26 + }, + { + "type": "equation", + "img_path": "images/ed062d93d9e491dbba9a3cc94a8bd9f2a8de058220e4bad1231928bd844c19c5.jpg", + "text": "$$\ng _ { 1 } ( \\gamma ) \\leq ( 1 - \\gamma ) \\cdot g _ { 1 } ( 0 ) + \\gamma \\cdot g _ { 1 } ( 1 ) = 1 + \\frac { 5 } { 2 7 } \\gamma .\n$$", + "text_format": "latex", + "bbox": [ + 338, + 898, + 660, + 929 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Case 2: $\\gamma > 1$ Substituting $\\lambda = \\gamma - 1 / 2$ into $f ( \\lambda , \\gamma )$ and simplifying, we get ", + "bbox": [ + 171, + 102, + 697, + 119 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/7bb007fd9b273ae1df3ea20d471eadf46648c51793f50817b0b30fd75aeba590.jpg", + "text": "$$\nf ( \\gamma - 1 / 2 , \\gamma ) = \\frac { 2 \\gamma ^ { 2 } ( 4 \\gamma ^ { 2 } - 3 \\gamma + 1 ) } { ( 2 \\gamma - 1 / 2 ) ^ { 3 } } = : g _ { 2 } ( \\gamma ) .\n$$", + "text_format": "latex", + "bbox": [ + 339, + 125, + 656, + 160 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "We have $g _ { 2 } ( 1 ) = g _ { 1 } ( 1 ) = 3 2 / 2 7 .$ . Further differentiating $g _ { 2 }$ gives ", + "bbox": [ + 174, + 165, + 604, + 183 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/6ca8f0cb50be8a4a8e93c3b1283fec594ca001d89ae38e745a269aa53896a47b.jpg", + "text": "$$\ng _ { 2 } ^ { \\prime } ( \\gamma ) = - \\frac { 1 } { ( 4 \\gamma - 1 ) ^ { 2 } } - \\frac { 6 } { ( 4 \\gamma - 1 ) ^ { 3 } } - \\frac { 6 } { ( 4 \\gamma - 1 ) ^ { 4 } } + 1 < 1 \\mathrm { f o r } \\mathrm { a l l } \\gamma > 1 .\n$$", + "text_format": "latex", + "bbox": [ + 258, + 186, + 740, + 220 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Therefore we have for all $\\gamma > 1$ that ", + "bbox": [ + 174, + 226, + 415, + 241 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/3cb3773e4c84b78cb35fcc4f36a98c3ce99cebb9626a65c2c7bbd90427deef78.jpg", + "text": "$$\ng _ { 2 } ( \\gamma ) = g _ { 2 } ( 1 ) + \\int _ { 1 } ^ { \\gamma } g _ { 2 } ^ { \\prime } ( t ) d t \\leq g _ { 2 } ( 1 ) + \\gamma - 1 = \\gamma + \\frac { 5 } { 2 7 } .\n$$", + "text_format": "latex", + "bbox": [ + 305, + 246, + 692, + 281 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Combining Case 1 and 2, we get ", + "bbox": [ + 173, + 292, + 390, + 309 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/7c687891365d11fbdccaf697c93bbd91ddbc93114a05c6db0ab432b49b3f3207.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\displaystyle \\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , \\gamma ) \\leq g _ { 1 } ( \\gamma ) } \\\\ & { \\leq \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + g _ { 2 } ( \\gamma ) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\} \\leq \\left( 1 + \\frac { 5 } { 2 7 } \\gamma \\right) \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + \\left( \\frac { 5 } { 2 7 } + \\gamma \\right) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\} } \\\\ & { = \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 225, + 314, + 776, + 411 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "This is the desired upper bound for $L ^ { \\mathrm { t r - t r } }$ . ", + "bbox": [ + 176, + 416, + 446, + 431 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Equality at $\\gamma = 1$ We finally show that the above upper bound becomes an equality when $\\gamma = 1$ . At $\\gamma = 1$ , we have ", + "bbox": [ + 173, + 445, + 823, + 474 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/ce1b25fe12080cd9f71507b7088a301c6dc7e02bf3f38d20865ff4f3f305c0b7.jpg", + "text": "$$\nf ( \\lambda , 1 ) = \\frac { 8 \\lambda } { ( \\lambda + 2 - \\sqrt { \\lambda ^ { 2 } + 4 \\lambda } ) ^ { 2 } ( \\lambda ^ { 2 } + 4 \\lambda ) ^ { 3 / 2 } } = \\frac { 8 \\lambda ^ { - 4 } } { ( 1 + 2 / \\lambda - \\sqrt { 1 + 4 / \\lambda } ) ^ { 2 } ( 1 + 4 / \\lambda ) ^ { 3 / 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 202, + 479, + 794, + 518 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Make the change of variable $t = \\sqrt { 1 + 4 / \\lambda }$ so that $\\lambda ^ { - 1 } = ( t ^ { 2 } - 1 ) / 4$ , minimizing the above expression is equivalent to minimizing ", + "bbox": [ + 173, + 525, + 823, + 555 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/63713602e54dd6d1940ec8c57464fee38dc5da9db5778850528f92e54b93def1.jpg", + "text": "$$\n{ \\frac { ( t ^ { 2 } - 1 ) ^ { 4 } / 3 2 } { ( t ^ { 2 } / 2 - t + 1 / 2 ) ^ { 2 } t ^ { 3 } } } = { \\frac { ( t + 1 ) ^ { 4 } } { 8 t ^ { 3 } } }\n$$", + "text_format": "latex", + "bbox": [ + 388, + 561, + 609, + 597 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "over $t > 1$ . It is straightforward to check (by computing the first and second derivatives) that the above quantity is minimized at $t = 3$ with value 32/27. In other words, we have shown ", + "bbox": [ + 171, + 602, + 823, + 631 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/1e08526e1d300fb96cd147abcac5a049c5a0406c430c5e9c532fe2ac8b3fe6c3.jpg", + "text": "$$\n\\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , 1 ) = \\frac { 3 2 } { 2 7 } = \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} \\Biggl | _ { \\gamma = 1 } ,\n$$", + "text_format": "latex", + "bbox": [ + 323, + 637, + 673, + 674 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "that is, the equality holds at $\\gamma = 1$ ", + "bbox": [ + 173, + 680, + 401, + 695 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "Part II: Optimal rate for $L ^ { \\mathrm { t r - v a l } }$ We now prove the result on $L ^ { \\mathrm { t r - v a l } }$ , that is, ", + "bbox": [ + 173, + 708, + 681, + 726 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/2215f90a71a6a62c7fee9b593d47ff51932c0f3aaaa7486f528ade57e8c8498a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\underset { \\lambda > 0 , s \\in ( 0 , 1 ) } { \\operatorname* { i n f } } \\ \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\ \\underset { \\lambda \\in \\gamma } { \\operatorname { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n s , n ( 1 - s ) ; \\lambda ) \\big ) } \\\\ & { \\stackrel { ( i ) } { = } \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\underset { \\lambda > 0 , n _ { 1 } + n _ { 2 } = n } { \\operatorname* { i n f } } \\ \\underset { \\frac { d + n + 1 } { n } } { \\operatorname { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) \\overset { ( i i ) } { = } 1 + \\gamma . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 263, + 731, + 740, + 815 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "First, equality (ii) follows from Corollary 8 and the fact that $( d + n + 1 ) / n \\to 1 + \\gamma ,$ . Second, the $\\because '$ direction of equality (i) is trivial (since we always have “inf l $\\mathrm { ~ m ~ } { \\geq } \\operatorname { l i l }$ m inf”). Therefore we get the “ $\\because$ ” direction of the overall equality, and it remains to prove the “ $\\because$ direction. ", + "bbox": [ + 176, + 820, + 823, + 864 + ], + "page_idx": 27 + }, + { + "type": "text", + "text": "For the “ $\\because$ direction, we fix any $\\lambda > 0$ , and bound AsymMSE $( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) )$ (and consequently its limit as $d , n \\infty$ .) We have from Lemma 5 that ", + "bbox": [ + 173, + 868, + 821, + 900 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/251de32e818b6060ce7c7829204851d5a98c97fa8343d1719a6a3db94b3e647c.jpg", + "text": "$$\n\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) )\n$$", + "text_format": "latex", + "bbox": [ + 264, + 906, + 470, + 926 + ], + "page_idx": 27 + }, + { + "type": "equation", + "img_path": "images/b2858906135a467e4424d980ec35e81b48ca041e654e389fbd40b7e148dc6a58.jpg", + "text": "$$\n\\begin{array} { r l } & { = \\frac { d } { n _ { 2 } } \\cdot \\frac { \\mathbb { E } \\left[ \\left( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { \\leq \\frac { d } { n _ { 2 } } \\cdot \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { d + n _ { 2 } + 1 } { n _ { 2 } } \\cdot \\frac { 1 } { \\left( \\mathbb { E } \\left[ \\frac { 1 } { d } \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 251, + 99, + 745, + 258 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Observe that ", + "bbox": [ + 173, + 284, + 259, + 297 + ], + "page_idx": 28 + }, + { + "type": "equation", + "img_path": "images/c400eb61b676f774b9dbc36d1d58a91d652e933ae2cbc3c16d99981bf3687b8b.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } \\Bigg [ \\frac { 1 } { d } \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\Bigg ] \\stackrel { ( i ) } { \\geq } \\mathbb { E } \\left[ \\frac { \\lambda ^ { 2 } } { \\Big ( \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } / d + \\lambda \\Big ) ^ { 2 } } \\right] } \\\\ & { \\stackrel { ( i i ) } { \\geq } \\frac { \\lambda ^ { 2 } } { \\Big ( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } / d \\right] + \\lambda \\Big ) ^ { 2 } } \\stackrel { ( i i ) } { = } \\frac { \\lambda ^ { 2 } } { ( 1 + \\lambda ) ^ { 2 } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 307, + 306, + 692, + 412 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "where (i) follows from the convexity of $t \\ \\mapsto \\ \\lambda ^ { 2 } / ( t + \\lambda ) ^ { 2 }$ on $t ~ \\geq ~ 0$ ; (ii) follows from the same convexity and Jensen’s inequality, and (iii) is since $\\begin{array} { r l r } { { \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } \\Big ] \\ = \\ \\mathbb { E } \\Big [ \\mathrm { t r } ( \\frac { 1 } { n _ { 1 } } { \\bf X } _ { t } ^ { \\top } { \\bf X } _ { t } ) \\Big ] \\ = } } \\end{array}$ $\\mathbb { E } \\Big [ \\| \\mathbf { X } _ { t } \\| _ { \\mathsf { F r } } ^ { 2 } / n _ { 1 } \\Big ] = d .$ . Applying this in the preceeding bound yields ", + "bbox": [ + 173, + 420, + 826, + 486 + ], + "page_idx": 28 + }, + { + "type": "equation", + "img_path": "images/5457f2d8c252b0417a619b3cae60cf786beae05ba3105d1e580cfc528352bf14.jpg", + "text": "$$\n\\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) ) \\leq \\frac { d + n _ { 2 } + 1 } { n _ { 2 } } \\cdot \\frac { ( 1 + \\lambda ) ^ { 2 } } { \\lambda ^ { 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 307, + 494, + 691, + 527 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Further plugging in $n _ { 1 } = n s$ and $n _ { 2 } = n ( 1 - s )$ for any $s \\in ( 0 , 1 )$ yields ", + "bbox": [ + 174, + 536, + 655, + 553 + ], + "page_idx": 28 + }, + { + "type": "equation", + "img_path": "images/1d9ceacb42f5b8be7100d3f4137b964c2a62f31e0ac06142543906e75ec3ff8c.jpg", + "text": "$$\n\\operatorname* { l i m } _ { \\substack { d , n \\infty , d / n \\gamma } } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s u l } } ( n s , n ( 1 - s ) ; \\lambda ) ) \\leq \\frac { \\gamma + 1 - s } { 1 - s } \\cdot \\frac { ( 1 + \\lambda ) ^ { 2 } } { \\lambda ^ { 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 243, + 561, + 754, + 595 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Finally, the right-hand side is minimized at $\\lambda \\to \\infty$ and $s = 0$ , from which we conclude that ", + "bbox": [ + 168, + 604, + 779, + 621 + ], + "page_idx": 28 + }, + { + "type": "equation", + "img_path": "images/62ef59fc3a1b4e03ccb84fc3e6916bedb90f4cc34e7aae06b96b87099029cda4.jpg", + "text": "$$\n\\operatorname* { i n f } _ { \\lambda > 0 , s \\in ( 0 , 1 ) } \\operatorname* { l i m } _ { d , n \\to \\infty , \\ d / n \\to \\gamma } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) ) \\leq 1 + \\gamma ,\n$$", + "text_format": "latex", + "bbox": [ + 276, + 630, + 717, + 656 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "which is the desired $\\because$ ” direction. ", + "bbox": [ + 174, + 665, + 403, + 680 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "C CONNECTIONS TO BAYESIAN ESTIMATOR ", + "text_level": 1, + "bbox": [ + 173, + 704, + 555, + 720 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Here we discuss the relationship between our train-train meta-learining estimator using ridge regression solvers and a Bayesian estimator under a somewhat natural hierarchical generative model for the realizable setting in Section 4. We show that these two estimators are not equal in general, albeit they have some similarities in their expressions. ", + "bbox": [ + 173, + 737, + 825, + 794 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "We consider the following hierarchical probabilitistic model: ", + "bbox": [ + 173, + 799, + 573, + 815 + ], + "page_idx": 28 + }, + { + "type": "equation", + "img_path": "images/0aae071000565cc306c9bde8cbb4e3e2dc262c209521f6fdb16fdc0915471b20.jpg", + "text": "$$\n\\mathbf { w } _ { 0 , \\star } \\sim \\mathbb { N } \\bigg ( 0 , \\frac { \\sigma _ { w } ^ { 2 } } { d } \\mathbf { I } _ { d } \\bigg ) , \\quad \\mathbf { w } _ { t } | \\mathbf { w } _ { 0 , \\star } \\overset { \\mathrm { i i d } } { \\sim } \\mathbb { N } \\bigg ( \\mathbf { w } _ { 0 , \\star } , \\frac { R ^ { 2 } } { d } \\mathbf { I } _ { d } \\bigg ) , \\quad \\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } + \\sigma \\mathbf { z } _ { t } \\mathrm { w h e r e \\mathbf { z } } _ { t } \\overset { \\mathrm { i i d } } { \\sim } \\mathbb { N } ( 0 , \\mathbf { I } _ { n } ) .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 824, + 823, + 859 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "This model is similar to our realizable linear model (6), except that $\\cdot$ has a prior and that there is observation noise in the data (such that data likelihoods and posteriors are well-defined). We also note that the $\\cdot$ variance for $\\mathbf { w } _ { t }$ guarantees that $-$ , consistent with our definition (7). ", + "bbox": [ + 173, + 867, + 825, + 924 + ], + "page_idx": 28 + }, + { + "type": "text", + "text": "Bayesian estimator We now derive the Bayesian posterior mean estimator of $\\cdot$ , which requires us to compute the posterior distribution of $\\cdot$ given the data $4$ . ", + "bbox": [ + 173, + 103, + 825, + 137 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "We begin by computing the likelihood of one task by marginalizing over $\\cdot$ ", + "bbox": [ + 174, + 142, + 676, + 157 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/496cf2be8a1bb485ad0d20abb78f73664d8b28ade9ef4f7ae5ee45de4d817e0f.jpg", + "text": "$$\n\\begin{array} { r l } & { p ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } | \\mathbf { w } _ { 0 , \\star } ) \\propto \\displaystyle \\int p ( \\mathbf { w } _ { t } | \\mathbf { w } _ { 0 , \\star } ) \\cdot p ( \\mathbf { y } _ { t } | \\mathbf { X } _ { t } , \\mathbf { w } _ { t } ) d \\mathbf { w } _ { t } } \\\\ & { \\displaystyle \\times \\displaystyle \\int \\exp ( - \\frac { \\| \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { 2 R ^ { 2 } / d } ) \\cdot \\exp ( - \\frac { \\| \\mathbf { y } _ { t } - \\mathbf { X } _ { t } \\mathbf { w } _ { t } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } ) d \\mathbf { w } _ { t } } \\\\ & { \\displaystyle \\overset { ( i ) } { \\propto } \\exp ( - \\frac { \\| \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { 2 R ^ { 2 } / d } + \\frac { 1 } { 2 } \\Big ( \\frac { \\mathbf { w } _ { 0 , \\star } } { R ^ { 2 } / d } + \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { \\sigma ^ { 2 } } \\Big ) ^ { \\top } \\Big ( \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { \\sigma ^ { 2 } } + \\frac { \\mathbf { I } _ { d } } { R ^ { 2 } / d } \\Big ) ^ { - 1 } \\Big ( \\frac { \\mathbf { w } _ { 0 , \\star } } { R ^ { 2 } / d } + \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { \\sigma ^ { 2 } } \\Big ) ) } \\\\ & \\displaystyle \\times \\exp ( - \\frac { 1 } { 2 } \\mathbf { w } _ { 0 , \\star } ^ { \\top } ( ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { R ^ { 2 } / d } ) \\mathbf { w } _ { 0 , \\star } + \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\Big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\Big ) ^ { - 1 } \\frac \\mathbf { X } _ { t } ^ \\top \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 159, + 826, + 320 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "where (i) is obtained by integrating a multivariate Gaussian density over $\\mathbf { w } _ { t }$ , and “ $\\cdot$ ” drops all the terms that do not depend on $\\cdot$ . Therefore, by the Bayes rule, the overall posterior distribution of $\\cdot$ is given by ", + "bbox": [ + 174, + 321, + 826, + 363 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/97745759b4ad8a5db4ae975338713a83936bf5c5de9b7f924e1d0f787f451bc6.jpg", + "text": "$$\n\\begin{array} { r l } & { p \\Big ( \\mathbf { w } _ { 0 , \\star } | \\{ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\} _ { t = 1 } ^ { T } \\Big ) \\propto p ( \\mathbf { w } _ { 0 , \\star } ) \\cdot \\displaystyle \\prod _ { t = 1 } ^ { T } p ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } | \\mathbf { w } _ { 0 , \\star } ) } \\\\ & { \\propto \\exp \\left( - \\frac { \\displaystyle \\| \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { \\displaystyle 2 \\sigma _ { w } ^ { 2 } / d } \\right) \\cdot } \\\\ & { \\qquad \\displaystyle \\prod _ { t = 1 } ^ { T } \\exp \\left( - \\frac { 1 } { 2 } \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\left( \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\right) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { R ^ { 2 } / d } \\right) \\mathbf { w } _ { 0 , \\star } + \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\right) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { R ^ { 2 } / d } \\right. } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 178, + 364, + 839, + 496 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "This means that the posterior distribution of $\\mathbf { w } _ { 0 , \\star }$ is Gaussian, with mean , i.e. the Bayesian estimator, equal to5 ", + "bbox": [ + 171, + 497, + 831, + 526 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/4beeae1af89269a1f491f3c304d64e128abb386924f2d9b5391b0929f3f7a05d.jpg", + "text": "$$\n\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { B a y e s } } : = \\mathbb { E } \\Big [ \\mathbf { w } _ { 0 , \\star } \\ | \\ \\{ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\} _ { t = 1 } ^ { T } \\Big ] = ( \\mathbf { A } _ { T } ^ { \\mathsf { B a y e s } } ) ^ { - 1 } \\mathbf { c } _ { T } ^ { \\mathsf { B a y e s } } ,\n$$", + "text_format": "latex", + "bbox": [ + 310, + 529, + 684, + 554 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 174, + 556, + 217, + 570 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/e318130a816b75c02e275534db2a6a3d8e65ca84668f81766c2d8e6a1bbcf575.jpg", + "text": "$$\n\\cdot\n$$", + "text_format": "latex", + "bbox": [ + 316, + 570, + 679, + 659 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "We note that $\\cdot$ has a similar form as our train-train estimator, but is not exactly the same. Indeed, recall the closed form of our train-train estimator is (cf. (10)) ", + "bbox": [ + 174, + 661, + 823, + 691 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/9e47834a51e8c08936aa39b50ba161f0a16913556b11f23f11ad33ddb8a1ed7e.jpg", + "text": "$$\n\\_\n$$", + "text_format": "latex", + "bbox": [ + 416, + 691, + 578, + 712 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 174, + 713, + 217, + 727 + ], + "page_idx": 29 + }, + { + "type": "equation", + "img_path": "images/1cb9e01e675e90c528a5913923c53e142b7d8dbff1e6e04a1c578b482eae30be.jpg", + "text": "$$\n\\cdot\n$$", + "text_format": "latex", + "bbox": [ + 364, + 726, + 633, + 815 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "As w Bayes0,T uses the inverse and $\\cdot$ uses the squared inverse, these two sets of estimators are not the same in general, no matter how we tune the $\\lambda$ in the train-train estimator. This is true even if we set $\\sigma _ { w } = \\infty$ so that the prior of $\\cdot$ becomes degenerate (and the Bayesian estimator reduces to the MLE). ", + "bbox": [ + 173, + 818, + 826, + 876 + ], + "page_idx": 29 + }, + { + "type": "text", + "text": "D DETAILS ON THE FEW-SHOT IMAGE CLASSIFICATION EXPERIMENT ", + "text_level": 1, + "bbox": [ + 171, + 103, + 758, + 117 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Here we provide additional details of the few-shot image classification experiment in Section 5.2. ", + "bbox": [ + 171, + 136, + 808, + 150 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Optimization and architecture For both methods, we run a few gradient steps on the inner argmin problem to obtain (an approximation of) $\\mathbf { w } _ { t }$ , and plug $\\mathbf { w } _ { t }$ into the \\`{tr-val,tr-tr}t (w0) (which involves $\\mathbf { w } _ { t }$ through implicit function differentiation) for optimizing $\\mathbf { w } _ { 0 }$ in the outer loop. ", + "bbox": [ + 174, + 170, + 823, + 215 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "For both train-train and train-val methods, we use the standard 4-layer convolutional network in (Finn et al., 2017; Zhou et al., 2019) as the backbone (i.e. the architecture for $\\mathbf { w } _ { t }$ ). We further tune their hyper-parameters, such as the regularization constant $\\lambda$ , the learning rate (initial learning rate and its decay strategy), and the gradient clipping threshold. ", + "bbox": [ + 173, + 223, + 825, + 279 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Datasets We experiment on miniImageNet (Ravi & Larochelle, 2017) and tieredImageNet (Ren et al., 2018). MiniImageNet consists of 100 classes of images from ImageNet (Krizhevsky et al., 2012) and each class has 600 images of resolution $8 4 \\times 8 4 \\times 3$ . We use 64 classes for training, 16 classes for validation, and the remaining 20 classes for testing (Ravi & Larochelle, 2017). TieredImageNet consists of 608 classes from the ILSVRC-12 data set (Russakovsky et al., 2015) and each image is also of resolution $8 4 \\times 8 4 \\times 3$ . TieredImageNet groups classes into broader hierarchy categories corresponding to higher-level nodes in the ImageNet. Specifically, its top hierarchy has 20 training categories (351 classes), 6 validation categories (97 classes) and 8 test categories (160 classes). This structure ensures that all training classes are distinct from the testing classes, providing a more realistic few-shot learning scenario. ", + "bbox": [ + 173, + 297, + 825, + 438 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "D.1 EFFECT OF THE SPLIT RATIO FOR THE TRAIN-VAL METHOD ", + "text_level": 1, + "bbox": [ + 174, + 459, + 625, + 473 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "We further tune the split $( n _ { 1 } , n _ { 2 } )$ in the train-val method and report the results in Table 2. As can be seen, as the number of test samples $n _ { 2 }$ increases, the percent classification accuracy on both the miniImageNet and tieredImageNet datasets becomes higher. This testifies our theoretical affirmation in Corollary 8. However, note that even if we take the best split $( n _ { 1 } , n _ { 2 } ) = ( 5 , 2 5 )$ (and compare again with Table 1), the train-val method still performs worse than the train-train method. ", + "bbox": [ + 174, + 486, + 825, + 556 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "We remark that our theoretical results on train-train performing better than train-val (in Section 4) rely on the assumptions that the data can be exactly realized by the representation and contains no label noise. Our experimental results here may suggest that the miniImageNet and tieredImageNet few-shot tasks may have a similar structure (there exists a NN representation that almost perfectly realizes the label with no noise) that allows the train-train method to perform better than the trainval method. ", + "bbox": [ + 174, + 563, + 825, + 646 + ], + "page_idx": 30 + }, + { + "type": "table", + "img_path": "images/9b3589ab9c67f312176bc17e9f674f76a73b91e8199969341ce8dbcf007a5d24.jpg", + "table_caption": [ + "Table 2: Investigation of the effects of training/validation splitting ratio in the train-val method (iMAML) to the few-shot classification accuracy $( \\% )$ on miniImageNet and tieredImageNet. " + ], + "table_footnote": [], + "table_body": "
datasetsn1 =25,n2=5n1 =15,n2=15n1=5,n2=25
miniImageNet62.09 ± 0.9763.56 ± 0.9563.92 ± 1.04
tieredImageNet66.45 ± 1.0567.30 ± 0.9867.50 ± 0.94
", + "bbox": [ + 174, + 694, + 825, + 744 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "E COMPARISON WITH CROSS-VALIDATION ON SYNTHETIC DATA ", + "text_level": 1, + "bbox": [ + 176, + 785, + 727, + 801 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "We test the effect of using cross-validation for the train-val method on the same synthetic data (realizable linear centroid meta-learning) as in Section 5.1. ", + "bbox": [ + 174, + 820, + 821, + 848 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "Method We fix the number of per-task data $n = 2 0$ , and use 4-fold cross validation in the following two settings: $\\_$ , and $( n _ { 1 } , n _ { 2 } ) \\ : = \\ : ( 1 5 , 5 )$ . In both cases, we partition the data into 4 parts each with 5 data points, and we roulette over 4 possible partitions of which one as train and which one as validation. The estimated optimal $\\hat { \\mathbf { w } } _ { 0 } ^ { \\mathrm { c v } }$ is obtained by minimize the averaged ", + "bbox": [ + 174, + 868, + 825, + 924 + ], + "page_idx": 30 + }, + { + "type": "text", + "text": "train-val loss over the 4 partitions: ", + "bbox": [ + 173, + 103, + 400, + 118 + ], + "page_idx": 31 + }, + { + "type": "equation", + "img_path": "images/78318e4c5fda4d26ac0556ba88dd5153d13f0f1c94dd39f7e8a728534f715ef0.jpg", + "text": "$$\n\\begin{array} { r l } & { \\ell _ { t } ^ { \\mathrm { c v } } ( \\mathbf w _ { 0 } ) : = \\displaystyle \\frac { 1 } { 4 } \\sum _ { j = 1 } ^ { 4 } \\frac { 1 } { 2 n _ { v \\mathrm { e l } } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } , j } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } , j } \\mathcal { A } _ { \\lambda } ( \\mathbf w _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } , j } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } , j } ) \\right\\| ^ { 2 } , } \\\\ & { \\quad \\widehat { \\mathbf { w } } _ { 0 } ^ { \\mathrm { c v } } = \\displaystyle \\arg \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { c v } } ( \\mathbf w _ { 0 } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 272, + 125, + 723, + 214 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "where superscript $\\cdot$ denotes the index of the cross-validation. The performance is depicted in Figure 2. ", + "bbox": [ + 169, + 218, + 823, + 247 + ], + "page_idx": 31 + }, + { + "type": "image", + "img_path": "images/1413c4c29e261cb27dc4940c073d6a489f71464d80755a6423234eec9cec32ea.jpg", + "image_caption": [ + "Figure 2: The scaled (by T ) \\`2-error of w {tr-tr,tr-val,cv}0,T a s the ratio $\\cdot$ varies from 0 to 3 $( n = 2 0$ and $\\cdot$ are fixed). For the cross-validation method, the regularization coefficient $\\cdot$ is tuned. " + ], + "image_footnote": [], + "bbox": [ + 253, + 268, + 723, + 529 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "Result As showin in Figure 2, for both $( n _ { 1 } , n _ { 2 } ) ~ = ~ ( 1 5 , 5 )$ and $\\_$ , using cross-validation consistently beats the performance of the train-val method. This demonstrates the variance-reduction effect of cross-validation. Note that the best performance (among the crossvalidation methods) is still achieved at $n _ { 1 } = 5$ , similar as for the vanilla train-val method. However, numerically, the best cross-validation performance is still not as good as the train-train method. ", + "bbox": [ + 173, + 619, + 825, + 690 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "Leave-one-out cross-validation Figure 3 left further tests with an increased number of per-task samples $\\cdot$ , and incorporates the train-val method with the leave-one-out cross-validation, i.e., $\\_$ and $( n _ { 1 } , n _ { 2 } ) = ( 1 , 3 9 )$ . We repeat the experiment 10 times for plotting the error bar (shaded area). We see that the train-train method still outperforms the train-val method with leave-one-out validation. ", + "bbox": [ + 173, + 705, + 825, + 775 + ], + "page_idx": 31 + }, + { + "type": "text", + "text": "We further increase the per-task sample size $n$ to 200, and test the leave-one-out method with a sample split of $( n _ { 1 } , n _ { 2 } ) = ( 1 , 1 9 9 )$ . We adopt a matrix inverse trick to mitigate the computational overhead of finding $\\_$ . To ease the computation, we also vary $d$ from 0 to 400 on a coarse grid (with an increment of 80). From Figure 3 right, we see that the leave-one-out method can slightly beat the train-train method for some $\\cdot$ values. Compared to $n = 2 0$ and $\\cdot$ experiments, this is the first time of seeing leave-one-out method outperforms the traintrain method. We suspect that the per-task sample size $n$ plays a vital role in the power of the leave-one-out method: a large $\\textit { \\textbf { u } }$ tends to have a strong variance reduction effect in the leave-one-out method, so that the performance can be improved. Yet using the leave-one-out method with a large $\\cdot$ invokes a high computational burden. ", + "bbox": [ + 173, + 782, + 825, + 924 + ], + "page_idx": 31 + }, + { + "type": "image", + "img_path": "images/a7ec48a17bacf333016e73c4c25d108d4a28507720d736827797d2c569bc6621.jpg", + "image_caption": [ + "Figure 3: The scaled (by T ) \\`2-error of w {tr-tr,cv}0,T as the ratio $d / n$ varies from 0 to 3 $\\cdot$ and $\\cdot$ are fixed). For the cross-validation method, the regularization coefficient $\\cdot$ . Left: $\\cdot$ . Leave-out-out CV performs worse than the train-train method. Right: $n = 2 0 0$ . Leave one-out CV appears better than the train-train method for $d / n \\in \\{ 1 . 2 , 1 . 6 \\}$ . " + ], + "image_footnote": [], + "bbox": [ + 183, + 112, + 792, + 308 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "F NONASYMPTOTIC ANALYSIS UNDER GENERAL SCALINGS OF $\\cdot$ ", + "text_level": 1, + "bbox": [ + 171, + 409, + 764, + 424 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "We sketch an nonasymptotic analysis of the train-train method in the realizable linear model in Section 4. We assume in addition that ${ } _ { 6 } \\qquad \\quad \\cdot \\qquad ^ { 6 }$ . ", + "bbox": [ + 173, + 440, + 823, + 474 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "We begin by recalling from Appendix B.1 and B.2 that the train-train and train-val estimators have closed-form expressions ", + "bbox": [ + 171, + 479, + 825, + 508 + ], + "page_idx": 32 + }, + { + "type": "equation", + "img_path": "images/a2e15cf936cca59149bb4694b7e171061646895d214e913691f122181258a740.jpg", + "text": "$$\n\\cdot\n$$", + "text_format": "latex", + "bbox": [ + 383, + 517, + 611, + 613 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 173, + 618, + 217, + 632 + ], + "page_idx": 32 + }, + { + "type": "equation", + "img_path": "images/f244d9bb0f2cfa47e65eeadf00bc7a10253df4987066d5cb31f8599f82f18ead.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { A } _ { t } : = \\lambda ^ { 2 } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } , } \\\\ & { \\mathbf { B } _ { t } : = \\lambda ^ { 2 } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } } { n _ { 1 } } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { n _ { 2 } } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } } { n _ { 1 } } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 1 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 250, + 638, + 746, + 718 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "Nonasymptotic result for $\\cdot$ For simplicity, we restrict attention on the analysis of the traintrain estimator $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathtt { t r - t r } }$ b , whose closed form expression is given in (44). Analysis of the train-val esti", + "bbox": [ + 174, + 731, + 823, + 776 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "We sketch a proof for the following ", + "bbox": [ + 174, + 784, + 410, + 797 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "Result: Let $T = \\Omega ( d )$ and $( d , n )$ is such that ", + "bbox": [ + 174, + 804, + 472, + 819 + ], + "page_idx": 32 + }, + { + "type": "equation", + "img_path": "images/17fb77c14f74f8b7db832e1410afdb6121cac7335cb749334f2f2eb49d88cf99.jpg", + "text": "$$\n\\cdot\n$$", + "text_format": "latex", + "bbox": [ + 312, + 828, + 686, + 885 + ], + "page_idx": 32 + }, + { + "type": "text", + "text": "(which for example holds if $( d , n )$ are in the proportional limit), then with high probability we have ", + "bbox": [ + 171, + 103, + 825, + 119 + ], + "page_idx": 33 + }, + { + "type": "equation", + "img_path": "images/f033a65319b6a6303af54bc6fbcdfb64d03b6b3add3e99c5bd35e98c312ff67c.jpg", + "text": "$$\n\\begin{array} { r l } & { \\quad \\mathrm { M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) = \\displaystyle \\frac { R ^ { 2 } } { d } \\bigg ( 1 \\pm O \\bigg ( \\frac { 1 } { \\sqrt { d } } \\bigg ) \\bigg ) \\cdot \\bigg [ \\frac { 1 } { T } \\cdot \\bigg ( d \\cdot f _ { \\mathrm { t r - t r } } ( d , n ) \\pm O \\bigg ( d \\sqrt { \\frac { \\log ( T / \\delta ) } { T } } \\bigg ) \\bigg ) \\bigg ] } \\\\ & { \\approx \\displaystyle \\frac { R ^ { 2 } } { T } \\cdot f _ { \\mathrm { t r - t r } } ( d , n ) = \\frac { 1 } { T } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 214, + 123, + 790, + 200 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "that is, the MSE for the train-train method concentrates around the asymptotic MSE. ", + "bbox": [ + 171, + 203, + 727, + 218 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "Proof Sketch We first define the matrix ", + "bbox": [ + 173, + 224, + 459, + 238 + ], + "page_idx": 33 + }, + { + "type": "equation", + "img_path": "images/4d84f35f96d5c45cffb542277e3d76d6bad7f33d68b37b2021ace2f8815e1967.jpg", + "text": "$$\n\\pmb { \\Sigma } _ { T } : = \\left( \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } \\right) ^ { - 2 } \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } ^ { 2 } = \\frac { 1 } { T } \\cdot \\left( \\frac { \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } } { T } \\right) ^ { - 2 } \\frac { \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } ^ { 2 } } { T } ,\n$$", + "text_format": "latex", + "bbox": [ + 285, + 241, + 710, + 287 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "which will be key to our analysis. Observe that conditioned on ${ \\bf A } _ { t }$ (and only looking at the randomness of $\\mathbf { w } _ { t }$ ), we have ", + "bbox": [ + 173, + 291, + 823, + 320 + ], + "page_idx": 33 + }, + { + "type": "equation", + "img_path": "images/0182281535ec0601644e688582611315ac2ac0774e1c5569ae1848b6c5e3badf.jpg", + "text": "$$\n\\_\n$$", + "text_format": "latex", + "bbox": [ + 269, + 324, + 728, + 371 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "Therefore, applying the Hanson-Wright inequality (Vershynin, 2018, Theorem 6.2.1) yields that ", + "bbox": [ + 174, + 375, + 802, + 390 + ], + "page_idx": 33 + }, + { + "type": "equation", + "img_path": "images/9ffa7faa60c226c6a1facc7e85f341e578df1fd908bc8ab58da1c4bb7530d4ac.jpg", + "text": "$$\n-\n$$", + "text_format": "latex", + "bbox": [ + 184, + 395, + 812, + 436 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "with probability at least $\\cdot$ . In the following, we argue that $\\cdot$ is the dominating term in the above bound and concentrates around the asymptotic MSE in Lemma 5, whereas the error terms within the max are lower order errors compared with $\\operatorname { t r } ( \\Sigma _ { T } )$ . ", + "bbox": [ + 174, + 440, + 825, + 484 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "Concentration of $\\cdot$ Recall that ${ \\bf A } _ { t }$ are i.i.d. PSD matrices in $\\cdot$ . We have ", + "bbox": [ + 173, + 497, + 732, + 513 + ], + "page_idx": 33 + }, + { + "type": "equation", + "img_path": "images/1419b369d1cc1a590b3ea22aeaf9cc7a7267bc235cff73ec9a6021851f842caf.jpg", + "text": "$$\n\\cdot\n$$", + "text_format": "latex", + "bbox": [ + 181, + 518, + 839, + 617 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "We argue that I is the main term that depends on $( d , n )$ and is independent of $T$ . Further, $\\cdot$ has eigenvalues $\\lambda ^ { 2 } \\sigma _ { i } / ( \\lambda + \\sigma _ { i } ) ^ { 2 }$ where $\\cdot$ are the eigenvalues of $\\cdot$ , and $\\cdot$ has uniformly distributed eigenvectors. Following the same analysis of Lemma 5, we see that ", + "bbox": [ + 174, + 632, + 826, + 678 + ], + "page_idx": 33 + }, + { + "type": "equation", + "img_path": "images/bbfb8327933255ca1dcab614547f85935289dc23cf6dee2f5b553720bd967d30.jpg", + "text": "$$\n\\cdot\n$$", + "text_format": "latex", + "bbox": [ + 316, + 683, + 679, + 761 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "This is exactly the same quantity that appeared in the asymptotic MSE for the train-train method in Theorem 4. In the following we assume that $d , n$ is such that $\\_$ . ", + "bbox": [ + 171, + 763, + 825, + 794 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "We further argue that terms $\\cdot$ and III are low-order terms compared with term I. Indeed, term I is $O ( d )$ . Applying matrix concentrations (e.g. the matrix Bernstein inequality), we can get that terms II and III are of order $-$ with probability at least $1 - \\delta$ . Combining the terms yields that ", + "bbox": [ + 173, + 799, + 826, + 858 + ], + "page_idx": 33 + }, + { + "type": "equation", + "img_path": "images/d30b13fde3f484646c70e3a685f151b4d9313e0cb97ec8f2463b15ed239ce272.jpg", + "text": "$$\n\\_\n$$", + "text_format": "latex", + "bbox": [ + 343, + 864, + 655, + 905 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "with high probability. ", + "bbox": [ + 173, + 909, + 316, + 924 + ], + "page_idx": 33 + }, + { + "type": "text", + "text": "Controlling the error in the MSE We now control $\\cdot$ and (consequently) $\\| \\Sigma _ { T } \\| _ { \\mathrm { o p } }$ . We wish to show that ", + "bbox": [ + 174, + 102, + 825, + 133 + ], + "page_idx": 34 + }, + { + "type": "equation", + "img_path": "images/65e449ebb7c5e9ae616762ea516b8aa790b2af1fea11e27ccd3359f8c4116277.jpg", + "text": "$$\n\\left\\| \\Sigma _ { T } \\right\\| _ { \\mathsf { F r } } \\leq O \\left( { \\frac { 1 } { \\sqrt { d } } } \\right) \\cdot \\operatorname { t r } ( \\Sigma _ { T } )\n$$", + "text_format": "latex", + "bbox": [ + 398, + 137, + 599, + 172 + ], + "page_idx": 34 + }, + { + "type": "text", + "text": "with high probability. This can be seen from the combination of two results: (1) $\\mathrm { t r } ( \\Sigma _ { T } ) = \\Omega ( d / T )$ by the preceding part, and (2) ", + "bbox": [ + 173, + 179, + 823, + 208 + ], + "page_idx": 34 + }, + { + "type": "equation", + "img_path": "images/179e5f8854be5c57fcb16b2b24c6d08047477db47db8021c13c0adc5c209e315.jpg", + "text": "$$\n\\_\n$$", + "text_format": "latex", + "bbox": [ + 289, + 214, + 709, + 258 + ], + "page_idx": 34 + }, + { + "type": "text", + "text": "The above requires (1) $\\_$ , which is true since we have $\\_$ and thus $\\left\\| \\mathbf { A } _ { t } ^ { 2 } \\right\\| _ { \\mathsf { F r } } \\leq \\lambda ^ { 2 } \\sqrt { d }$ , and (2) $\\begin{array} { r } { \\lambda _ { \\operatorname* { m i n } } \\bigl ( \\sum _ { t \\leq T } \\mathbf { A } _ { t } / T \\bigr ) = \\Omega ( 1 ) } \\end{array}$ with high probability, which is true whenever $T = \\Omega ( d )$ because of matrix concentration and the fact that $\\lambda _ { \\operatorname* { m i n } } ( \\mathbb { E } [ \\mathbf { A } _ { 1 } ] ) = \\Omega ( 1 )$ . ", + "bbox": [ + 173, + 265, + 826, + 315 + ], + "page_idx": 34 + }, + { + "type": "text", + "text": "Putting together We have with high probability that ", + "bbox": [ + 173, + 329, + 534, + 344 + ], + "page_idx": 34 + }, + { + "type": "equation", + "img_path": "images/05ba56851b7da3ca51fc572e4ad5a1747e36942944d0402170489edc1b549b61.jpg", + "text": "$$\n\\mathrm { M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) = \\frac { R ^ { 2 } } { d } \\bigg ( 1 \\pm O \\bigg ( \\frac { 1 } { \\sqrt { d } } \\bigg ) \\bigg ) \\cdot \\bigg [ \\frac { 1 } { T } \\cdot \\bigg ( d \\cdot f _ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( d , n ) \\pm O \\bigg ( d \\sqrt { \\frac { \\log ( T / \\delta ) } { T } } \\bigg ) \\bigg ) \\bigg ] .\n$$", + "text_format": "latex", + "bbox": [ + 212, + 351, + 784, + 393 + ], + "page_idx": 34 + }, + { + "type": "text", + "text": "as long as $T = \\Omega ( d )$ and $\\cdot$ is such that $\\_$ ", + "bbox": [ + 173, + 398, + 576, + 415 + ], + "page_idx": 34 + }, + { + "type": "text", + "text": "F.1 SYNTHETIC EXPERIMENT ", + "text_level": 1, + "bbox": [ + 174, + 460, + 393, + 474 + ], + "page_idx": 34 + }, + { + "type": "text", + "text": "We verify our theoretical findings under general scalings of $d , n , T$ . We adopt the data generating model in Section 5.1 again. To compare the performance of the train-train and train-val methods, we choose the number of tasks $\\cdot$ and per-task sample size $n = 1 0 0$ . We vary $\\cdot$ from 0 to 300. Note that now $T$ is comparable to $\\cdot$ and $\\cdot$ and much smaller than $T = 1 0 0 0$ used in previous experiments. Figure 4 shows the close fit of reference curves to the simulated $\\cdot$ errors. ", + "bbox": [ + 173, + 486, + 826, + 556 + ], + "page_idx": 34 + }, + { + "type": "image", + "img_path": "images/884f48f2f05610e81ad493ff8e7d6acb8f08491991b24912cf3460342ab3e75b.jpg", + "image_caption": [ + "Figure 4: The scaled (by $T$ ) $\\cdot$ -error of $\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }$ as the ratio $\\cdot$ varies from 0 to 3 in the general and are fixed). The regularization coefficient the train-train method and $\\lambda = 2 0 0 0$ for the train-val method. " + ], + "image_footnote": [], + "bbox": [ + 253, + 582, + 740, + 840 + ], + "page_idx": 34 + } +] \ No newline at end of file diff --git a/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_middle.json b/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..b3388117c68f2c547f54f3ad575ec7c9facab8fd --- /dev/null +++ b/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_middle.json @@ -0,0 +1,99454 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 104, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "HOW IMPORTANT IS THE TRAIN-VALIDATION SPLIT IN", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 248, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 248, + 117 + ], + "score": 1.0, + "content": "META-LEARNING?", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 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, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 211, + 468, + 288 + ], + "lines": [ + { + "bbox": [ + 141, + 210, + 470, + 225 + ], + "spans": [ + { + "bbox": [ + 141, + 210, + 470, + 225 + ], + "score": 1.0, + "content": "Meta-learning aims to perform fast adaptation on a new task through learning a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 142, + 222, + 470, + 235 + ], + "spans": [ + { + "bbox": [ + 142, + 222, + 470, + 235 + ], + "score": 1.0, + "content": "“prior” from multiple existing tasks. A common practice in meta-learning is to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "perform a train-validation split where the prior adapts to the task on one split of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "score": 1.0, + "content": "the data, and the resulting predictor is evaluated on another split. Despite its preva-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "score": 1.0, + "content": "lence, the importance of the train-validation split is not well understood either in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 279 + ], + "score": 1.0, + "content": "theory or in practice, particularly in comparison to the more direct non-splitting", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 277, + 434, + 289 + ], + "spans": [ + { + "bbox": [ + 142, + 277, + 434, + 289 + ], + "score": 1.0, + "content": "method, which uses all the per-task data for both training and evaluation.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 143, + 290, + 468, + 443 + ], + "lines": [ + { + "bbox": [ + 142, + 290, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 142, + 290, + 469, + 302 + ], + "score": 1.0, + "content": "We provide a detailed theoretical study on whether and when the train-validation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "score": 1.0, + "content": "split is helpful on the linear centroid meta-learning problem, in the asymptotic set-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 470, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 470, + 324 + ], + "score": 1.0, + "content": "ting where the number of tasks goes to infinity. We show that the splitting method", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 324, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 469, + 335 + ], + "score": 1.0, + "content": "converges to the optimal prior as expected, whereas the non-splitting method does", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 335, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 470, + 345 + ], + "score": 1.0, + "content": "not in general without structural assumptions on the data. In contrast, if the data", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "score": 1.0, + "content": "are generated from linear models (the realizable regime), we show that both the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 356, + 469, + 368 + ], + "spans": [ + { + "bbox": [ + 142, + 356, + 469, + 368 + ], + "score": 1.0, + "content": "splitting and non-splitting methods converge to the optimal prior. Further, per-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 367, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 469, + 379 + ], + "score": 1.0, + "content": "haps surprisingly, our main result shows that the non-splitting method achieves", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 378, + 469, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 390 + ], + "score": 1.0, + "content": "a strictly better asymptotic excess risk under this data distribution, even when", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 388, + 469, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 388, + 469, + 401 + ], + "score": 1.0, + "content": "the regularization parameter and split ratio are optimally tuned for both methods.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 399, + 469, + 412 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 469, + 412 + ], + "score": 1.0, + "content": "Our results highlight that data splitting may not always be preferable, especially", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 410, + 469, + 423 + ], + "spans": [ + { + "bbox": [ + 142, + 410, + 469, + 423 + ], + "score": 1.0, + "content": "when the data is realizable by the model. We validate our theories by experimen-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 421, + 469, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 469, + 435 + ], + "score": 1.0, + "content": "tally showing that the non-splitting method can indeed outperform the splitting", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 433, + 375, + 445 + ], + "spans": [ + { + "bbox": [ + 141, + 433, + 375, + 445 + ], + "score": 1.0, + "content": "method, on both simulations and real meta-learning tasks.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 464, + 205, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 463, + 208, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 208, + 480 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "Meta-learning, also known as “learning to learn”, has recently emerged as a powerful paradigm", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "for learning to adapt to unseen tasks (Schmidhuber, 1987). The high-level methodology in meta-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "learning is akin to how human beings learn new skills, which is typically done by relating to certain", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "prior experience that makes the learning process easier. More concretely, meta-learning does not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "train one model for each individual task, but rather learns a “prior” model from multiple existing", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 544, + 504, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 504, + 557 + ], + "score": 1.0, + "content": "tasks so that it is able to quickly adapt to unseen new tasks. Meta-learning has been successfully", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "applied to many real problems, including few-shot image classification (Finn et al., 2017; Snell et al.,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "2017), hyper-parameter optimization (Franceschi et al., 2018), low-resource machine translation (Gu", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 576, + 371, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 371, + 590 + ], + "score": 1.0, + "content": "et al., 2018) and short event sequence modeling (Xie et al., 2019).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "A common practice in meta-learning algorithms is to perform a sample splitting, where the data", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "within each task is divided into a training split which the prior uses to adapt to a task-specific", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "predictor, and a validation split on which we evaluate the performance of the task-specific pre-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "dictor (Nichol et al., 2018; Rajeswaran et al., 2019; Fallah et al., 2020; Wang et al., 2020a). For", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 194, + 650 + ], + "score": 1.0, + "content": "example, in a 5-way", + "type": "text" + }, + { + "bbox": [ + 194, + 639, + 201, + 648 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "-shot image classification task, standard meta-learning algorithms such as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 235, + 660 + ], + "score": 1.0, + "content": "MAML (Finn et al., 2017) use", + "type": "text" + }, + { + "bbox": [ + 235, + 649, + 247, + 659 + ], + "score": 0.8, + "content": "5 k", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "examples within each task as training data, and use additional", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 167, + 672 + ], + "score": 1.0, + "content": "examples (e.g.", + "type": "text" + }, + { + "bbox": [ + 168, + 660, + 175, + 670 + ], + "score": 0.61, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "images, one for each class) as validation data. This sample splitting is believed to", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "be crucial as it matches the evaluation criterion at meta-test time, where we perform adaptation on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 682, + 482, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 482, + 694 + ], + "score": 1.0, + "content": "training data from a new task but evaluate its performance on unseen data from the same task.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Despite the aformentioned importance, performing the train-validation split has a potential drawback", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "from the data efficiency perspective — Because of the split, neither the training nor the evaluation", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "stage is able to use all the available per-task data. In the few-shot image classification example,", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 104, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "HOW IMPORTANT IS THE TRAIN-VALIDATION SPLIT IN", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 248, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 248, + 117 + ], + "score": 1.0, + "content": "META-LEARNING?", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 136, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 136, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 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, + 136, + 245, + 158 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 187, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 211, + 468, + 288 + ], + "lines": [ + { + "bbox": [ + 141, + 210, + 470, + 225 + ], + "spans": [ + { + "bbox": [ + 141, + 210, + 470, + 225 + ], + "score": 1.0, + "content": "Meta-learning aims to perform fast adaptation on a new task through learning a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 142, + 222, + 470, + 235 + ], + "spans": [ + { + "bbox": [ + 142, + 222, + 470, + 235 + ], + "score": 1.0, + "content": "“prior” from multiple existing tasks. A common practice in meta-learning is to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "perform a train-validation split where the prior adapts to the task on one split of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "score": 1.0, + "content": "the data, and the resulting predictor is evaluated on another split. Despite its preva-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "score": 1.0, + "content": "lence, the importance of the train-validation split is not well understood either in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 279 + ], + "score": 1.0, + "content": "theory or in practice, particularly in comparison to the more direct non-splitting", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 277, + 434, + 289 + ], + "spans": [ + { + "bbox": [ + 142, + 277, + 434, + 289 + ], + "score": 1.0, + "content": "method, which uses all the per-task data for both training and evaluation.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8, + "bbox_fs": [ + 141, + 210, + 470, + 289 + ] + }, + { + "type": "text", + "bbox": [ + 143, + 290, + 468, + 443 + ], + "lines": [ + { + "bbox": [ + 142, + 290, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 142, + 290, + 469, + 302 + ], + "score": 1.0, + "content": "We provide a detailed theoretical study on whether and when the train-validation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 469, + 314 + ], + "score": 1.0, + "content": "split is helpful on the linear centroid meta-learning problem, in the asymptotic set-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 470, + 324 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 470, + 324 + ], + "score": 1.0, + "content": "ting where the number of tasks goes to infinity. We show that the splitting method", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 324, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 469, + 335 + ], + "score": 1.0, + "content": "converges to the optimal prior as expected, whereas the non-splitting method does", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 335, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 470, + 345 + ], + "score": 1.0, + "content": "not in general without structural assumptions on the data. In contrast, if the data", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "score": 1.0, + "content": "are generated from linear models (the realizable regime), we show that both the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 356, + 469, + 368 + ], + "spans": [ + { + "bbox": [ + 142, + 356, + 469, + 368 + ], + "score": 1.0, + "content": "splitting and non-splitting methods converge to the optimal prior. Further, per-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 367, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 469, + 379 + ], + "score": 1.0, + "content": "haps surprisingly, our main result shows that the non-splitting method achieves", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 378, + 469, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 390 + ], + "score": 1.0, + "content": "a strictly better asymptotic excess risk under this data distribution, even when", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 388, + 469, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 388, + 469, + 401 + ], + "score": 1.0, + "content": "the regularization parameter and split ratio are optimally tuned for both methods.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 399, + 469, + 412 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 469, + 412 + ], + "score": 1.0, + "content": "Our results highlight that data splitting may not always be preferable, especially", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 410, + 469, + 423 + ], + "spans": [ + { + "bbox": [ + 142, + 410, + 469, + 423 + ], + "score": 1.0, + "content": "when the data is realizable by the model. We validate our theories by experimen-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 421, + 469, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 469, + 435 + ], + "score": 1.0, + "content": "tally showing that the non-splitting method can indeed outperform the splitting", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 433, + 375, + 445 + ], + "spans": [ + { + "bbox": [ + 141, + 433, + 375, + 445 + ], + "score": 1.0, + "content": "method, on both simulations and real meta-learning tasks.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5, + "bbox_fs": [ + 141, + 290, + 470, + 445 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 464, + 205, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 463, + 208, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 208, + 480 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 489, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "Meta-learning, also known as “learning to learn”, has recently emerged as a powerful paradigm", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "for learning to adapt to unseen tasks (Schmidhuber, 1987). The high-level methodology in meta-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "learning is akin to how human beings learn new skills, which is typically done by relating to certain", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "prior experience that makes the learning process easier. More concretely, meta-learning does not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "train one model for each individual task, but rather learns a “prior” model from multiple existing", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 544, + 504, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 504, + 557 + ], + "score": 1.0, + "content": "tasks so that it is able to quickly adapt to unseen new tasks. Meta-learning has been successfully", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "applied to many real problems, including few-shot image classification (Finn et al., 2017; Snell et al.,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 579 + ], + "score": 1.0, + "content": "2017), hyper-parameter optimization (Franceschi et al., 2018), low-resource machine translation (Gu", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 576, + 371, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 371, + 590 + ], + "score": 1.0, + "content": "et al., 2018) and short event sequence modeling (Xie et al., 2019).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 489, + 505, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "A common practice in meta-learning algorithms is to perform a sample splitting, where the data", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "within each task is divided into a training split which the prior uses to adapt to a task-specific", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "predictor, and a validation split on which we evaluate the performance of the task-specific pre-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "dictor (Nichol et al., 2018; Rajeswaran et al., 2019; Fallah et al., 2020; Wang et al., 2020a). For", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 194, + 650 + ], + "score": 1.0, + "content": "example, in a 5-way", + "type": "text" + }, + { + "bbox": [ + 194, + 639, + 201, + 648 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "-shot image classification task, standard meta-learning algorithms such as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 235, + 660 + ], + "score": 1.0, + "content": "MAML (Finn et al., 2017) use", + "type": "text" + }, + { + "bbox": [ + 235, + 649, + 247, + 659 + ], + "score": 0.8, + "content": "5 k", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "examples within each task as training data, and use additional", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 167, + 672 + ], + "score": 1.0, + "content": "examples (e.g.", + "type": "text" + }, + { + "bbox": [ + 168, + 660, + 175, + 670 + ], + "score": 0.61, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "images, one for each class) as validation data. This sample splitting is believed to", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "be crucial as it matches the evaluation criterion at meta-test time, where we perform adaptation on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 682, + 482, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 482, + 694 + ], + "score": 1.0, + "content": "training data from a new task but evaluate its performance on unseen data from the same task.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 594, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Despite the aformentioned importance, performing the train-validation split has a potential drawback", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "from the data efficiency perspective — Because of the split, neither the training nor the evaluation", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "stage is able to use all the available per-task data. In the few-shot image classification example,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 203, + 95 + ], + "score": 1.0, + "content": "each task has a total of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 204, + 83, + 216, + 93 + ], + "score": 0.8, + "content": "6 k", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 216, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "examples available, but the train-validation split forces us to use these", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "data separately in the two stages. Meanwhile, performing the train-validation split is also not the", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "only option in practice: there exist algorithms such as Reptile (Nichol & Schulman, 2018) and", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "Meta-MinibatchProx (Zhou et al., 2019) that can instead use all the per-task data for training the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 139 + ], + "score": 1.0, + "content": "task-specific predictor and also perform well empirically on benchmark tasks. These algorithms", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "modify the loss function in the outer loop so that the training loss no longer matches the meta-test", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "loss, but may have the advantage in terms of data efficiency for the overall problem of learning the", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "best prior. So far it is theoretically unclear how these two approaches (with/without train-validation", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 393, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 393, + 184 + ], + "score": 1.0, + "content": "split) compare with each other, which motivates us to ask the following", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 203, + 95 + ], + "score": 1.0, + "content": "each task has a total of", + "type": "text" + }, + { + "bbox": [ + 204, + 83, + 216, + 93 + ], + "score": 0.8, + "content": "6 k", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "examples available, but the train-validation split forces us to use these", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "data separately in the two stages. Meanwhile, performing the train-validation split is also not the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "only option in practice: there exist algorithms such as Reptile (Nichol & Schulman, 2018) and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "Meta-MinibatchProx (Zhou et al., 2019) that can instead use all the per-task data for training the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 139 + ], + "score": 1.0, + "content": "task-specific predictor and also perform well empirically on benchmark tasks. These algorithms", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 150 + ], + "score": 1.0, + "content": "modify the loss function in the outer loop so that the training loss no longer matches the meta-test", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 161 + ], + "score": 1.0, + "content": "loss, but may have the advantage in terms of data efficiency for the overall problem of learning the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "best prior. So far it is theoretically unclear how these two approaches (with/without train-validation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 393, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 393, + 184 + ], + "score": 1.0, + "content": "split) compare with each other, which motivates us to ask the following", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 190, + 456, + 201 + ], + "lines": [ + { + "bbox": [ + 142, + 189, + 458, + 204 + ], + "spans": [ + { + "bbox": [ + 142, + 189, + 458, + 204 + ], + "score": 1.0, + "content": "Question: Is the train-validation split necessary and optimal in meta-learning?", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 222 + ], + "score": 1.0, + "content": "In this paper, we perform a detailed theoretical study on the importance of the train-validation split.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "We consider the linear centroid meta-learning problem (Denevi et al., 2018b), where for each task", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "we learn a linear predictor that is close to a common centroid in the inner loop, and find the best", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "centroid in the outer loop (see Section 2 for the detailed problem setup). This problem captures", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "the essence of meta-learning with non-linear models (such as neural networks) in practice, yet is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "score": 1.0, + "content": "sufficiently simple that allows a precise theoretical characterization. We use a biased ridge solver", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "as the inner loop with a (tunable) regularization parameter, and compare two outer-loop algorithms", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "of either performing the train-validation split (the train-val method) or using all the per-task data", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "for both training and evaluation (the train-train method). Specifically, we compare the two methods", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 214, + 322 + ], + "score": 1.0, + "content": "when the number of tasks", + "type": "text" + }, + { + "bbox": [ + 215, + 309, + 224, + 318 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 308, + 505, + 322 + ], + "score": 1.0, + "content": "is large, and examine if and how fast they converge to the (properly", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 319, + 446, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 446, + 332 + ], + "score": 1.0, + "content": "defined) best centroid at meta-test time. We summarize our contributions as follows:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 504, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 353 + ], + "score": 1.0, + "content": "• On the linear centroid meta-learning problem, we show that the train-validation split is necessary", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 351, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 246, + 362 + ], + "score": 1.0, + "content": "in the general agnostic setting: As", + "type": "text" + }, + { + "bbox": [ + 246, + 351, + 281, + 361 + ], + "score": 0.89, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 351, + 505, + 362 + ], + "score": 1.0, + "content": ", the train-val method converges to the optimal centroid", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "for test-time adaptation, whereas the train-train method does not without further assumptions on the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 386 + ], + "score": 1.0, + "content": "tasks (Section 3). The convergence of the train-val method is expected since its (population) training", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "score": 1.0, + "content": "loss is equivalent to the meta-test time loss, whereas the non-convergence of the train-train method", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 394, + 333, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 333, + 407 + ], + "score": 1.0, + "content": "is because these two losses are not equivalent in general.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 504, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 421 + ], + "score": 1.0, + "content": "• Our main theoretical contribution is to show that the train-validation split is not necessary and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "even non-optimal, in the perhaps more interesting regime when there are structural assumptions on", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 432, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 442 + ], + "score": 1.0, + "content": "the tasks: When the data are generated from noiseless linear models, both the train-val and train-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 454 + ], + "score": 1.0, + "content": "train methods converge to the common best centroid, and the train-train method achieves a strictly", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 453, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 505, + 464 + ], + "score": 1.0, + "content": "better (asymptotic) estimation error and test loss than the train-val method (Section 4). This is in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 464, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 476 + ], + "score": 1.0, + "content": "stark contrast with the agnostic case, and suggests that data efficiency may indeed be more important", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "when the tasks have a nice structure. Our results build on tools from random matrix theory in the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 486, + 366, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 366, + 498 + ], + "score": 1.0, + "content": "proportional regime, which may be of broader technical interest.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 108, + 500, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "• We perform meta-learning experiments on simulations and benchmark few-shot image classi-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "fication tasks, showing that the train-train method consistently outperforms the train-val method", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "score": 1.0, + "content": "(Section 5 & Appendix D). This validates our theories and presents empirical evidence that sample-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "splitting may not be crucial; methods that utilize the per-task data more efficiently may be preferred.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 108, + 558, + 200, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 203, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 203, + 570 + ], + "score": 1.0, + "content": "1.1 RELATED WORK", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "Meta-learning and representation learning theory Baxter (2000) provided the first theoretical", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "analysis of meta-learning via covering numbers, and Maurer et al. (2016) improved the analysis via", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "Gaussian complexity techniques. Another recent line of theoretical work analyzed gradient-based", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "meta-learning methods (Denevi et al., 2018a; Finn et al., 2019; Khodak et al., 2019; Ji et al., 2020)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "and showed guarantees for convex losses by using tools from online convex optimization. Saunshi", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "et al. (2020) proved the success of Reptile in a one-dimensional subspace setting. Wang et al.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "(2020b) compared the performance of train-train and train-val methods for learning the learning", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "rate. Denevi et al. (2018b) proposed the linear centroid model studied in this paper, and provided", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "generalization error bounds for train-val method; the bounds proved also hold for train-train method,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "so are not sharp enough to compare the two algorithms. Wang et al. (2020a) studied the convergence", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "of gradient-based meta-learning by relating to the kernelized approximation. On the representation", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "learning end, Du et al. (2020); Tripuraneni et al. (2020a;b) showed that ERM can successfully pool", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "data across tasks to learn the representation. Yet the focus is on the accurate estimation of the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "common representation, not on the fast adaptation of the learned prior. Lastly, we remark that there", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 46.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 13, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 181 + ], + "lines": [], + "index": 4, + "bbox_fs": [ + 105, + 82, + 506, + 184 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 143, + 190, + 456, + 201 + ], + "lines": [ + { + "bbox": [ + 142, + 189, + 458, + 204 + ], + "spans": [ + { + "bbox": [ + 142, + 189, + 458, + 204 + ], + "score": 1.0, + "content": "Question: Is the train-validation split necessary and optimal in meta-learning?", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 142, + 189, + 458, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 222 + ], + "score": 1.0, + "content": "In this paper, we perform a detailed theoretical study on the importance of the train-validation split.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "We consider the linear centroid meta-learning problem (Denevi et al., 2018b), where for each task", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "we learn a linear predictor that is close to a common centroid in the inner loop, and find the best", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "centroid in the outer loop (see Section 2 for the detailed problem setup). This problem captures", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "the essence of meta-learning with non-linear models (such as neural networks) in practice, yet is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 277 + ], + "score": 1.0, + "content": "sufficiently simple that allows a precise theoretical characterization. We use a biased ridge solver", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "as the inner loop with a (tunable) regularization parameter, and compare two outer-loop algorithms", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "of either performing the train-validation split (the train-val method) or using all the per-task data", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 297, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 311 + ], + "score": 1.0, + "content": "for both training and evaluation (the train-train method). Specifically, we compare the two methods", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 214, + 322 + ], + "score": 1.0, + "content": "when the number of tasks", + "type": "text" + }, + { + "bbox": [ + 215, + 309, + 224, + 318 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 308, + 505, + 322 + ], + "score": 1.0, + "content": "is large, and examine if and how fast they converge to the (properly", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 319, + 446, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 446, + 332 + ], + "score": 1.0, + "content": "defined) best centroid at meta-test time. We summarize our contributions as follows:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 210, + 505, + 332 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 504, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 353 + ], + "score": 1.0, + "content": "• On the linear centroid meta-learning problem, we show that the train-validation split is necessary", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 351, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 246, + 362 + ], + "score": 1.0, + "content": "in the general agnostic setting: As", + "type": "text" + }, + { + "bbox": [ + 246, + 351, + 281, + 361 + ], + "score": 0.89, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 351, + 505, + 362 + ], + "score": 1.0, + "content": ", the train-val method converges to the optimal centroid", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "for test-time adaptation, whereas the train-train method does not without further assumptions on the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 386 + ], + "score": 1.0, + "content": "tasks (Section 3). The convergence of the train-val method is expected since its (population) training", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 396 + ], + "score": 1.0, + "content": "loss is equivalent to the meta-test time loss, whereas the non-convergence of the train-train method", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 394, + 333, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 333, + 407 + ], + "score": 1.0, + "content": "is because these two losses are not equivalent in general.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 338, + 506, + 407 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 504, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 421 + ], + "score": 1.0, + "content": "• Our main theoretical contribution is to show that the train-validation split is not necessary and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "even non-optimal, in the perhaps more interesting regime when there are structural assumptions on", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 432, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 442 + ], + "score": 1.0, + "content": "the tasks: When the data are generated from noiseless linear models, both the train-val and train-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 454 + ], + "score": 1.0, + "content": "train methods converge to the common best centroid, and the train-train method achieves a strictly", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 453, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 505, + 464 + ], + "score": 1.0, + "content": "better (asymptotic) estimation error and test loss than the train-val method (Section 4). This is in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 464, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 476 + ], + "score": 1.0, + "content": "stark contrast with the agnostic case, and suggests that data efficiency may indeed be more important", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "when the tasks have a nice structure. Our results build on tools from random matrix theory in the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 486, + 366, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 366, + 498 + ], + "score": 1.0, + "content": "proportional regime, which may be of broader technical interest.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 408, + 506, + 498 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 500, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "• We perform meta-learning experiments on simulations and benchmark few-shot image classi-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "fication tasks, showing that the train-train method consistently outperforms the train-val method", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "score": 1.0, + "content": "(Section 5 & Appendix D). This validates our theories and presents empirical evidence that sample-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "splitting may not be crucial; methods that utilize the per-task data more efficiently may be preferred.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 500, + 505, + 545 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 558, + 200, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 203, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 203, + 570 + ], + "score": 1.0, + "content": "1.1 RELATED WORK", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 590 + ], + "score": 1.0, + "content": "Meta-learning and representation learning theory Baxter (2000) provided the first theoretical", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "analysis of meta-learning via covering numbers, and Maurer et al. (2016) improved the analysis via", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "Gaussian complexity techniques. Another recent line of theoretical work analyzed gradient-based", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "meta-learning methods (Denevi et al., 2018a; Finn et al., 2019; Khodak et al., 2019; Ji et al., 2020)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "and showed guarantees for convex losses by using tools from online convex optimization. Saunshi", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "et al. (2020) proved the success of Reptile in a one-dimensional subspace setting. Wang et al.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "(2020b) compared the performance of train-train and train-val methods for learning the learning", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "rate. Denevi et al. (2018b) proposed the linear centroid model studied in this paper, and provided", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "generalization error bounds for train-val method; the bounds proved also hold for train-train method,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "so are not sharp enough to compare the two algorithms. Wang et al. (2020a) studied the convergence", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "of gradient-based meta-learning by relating to the kernelized approximation. On the representation", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "learning end, Du et al. (2020); Tripuraneni et al. (2020a;b) showed that ERM can successfully pool", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "data across tasks to learn the representation. Yet the focus is on the accurate estimation of the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "common representation, not on the fast adaptation of the learned prior. Lastly, we remark that there", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "are analyses for other representation learning schemes (McNamara & Balcan, 2017; Galanti et al.,", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 217, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 217, + 106 + ], + "score": 1.0, + "content": "2016; Alquier et al., 2016).", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 46.5, + "bbox_fs": [ + 104, + 578, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "are analyses for other representation learning schemes (McNamara & Balcan, 2017; Galanti et al.,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 217, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 217, + 106 + ], + "score": 1.0, + "content": "2016; Alquier et al., 2016).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 117, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 106, + 116, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 129 + ], + "score": 1.0, + "content": "Empirical understandings of meta-learning Raghu et al. (2020) investigated the representation", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 141 + ], + "score": 1.0, + "content": "learning perspective of meta-learning and showed that MAML with a full finetuning inner loop", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 138, + 504, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 504, + 151 + ], + "score": 1.0, + "content": "mostly learns the top-layer linear classifier and does not change the representation layers much.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 150, + 504, + 161 + ], + "spans": [ + { + "bbox": [ + 107, + 150, + 504, + 161 + ], + "score": 1.0, + "content": "This result partly justifies the validity our linear centroid meta-learning problem in which the fea-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 504, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 504, + 172 + ], + "score": 1.0, + "content": "tures (representations) are fixed and only a linear classifier is learned. Goldblum et al. (2020) investi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 504, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 504, + 184 + ], + "score": 1.0, + "content": "gated the difference of the neural representations learned by classical training (supervised learning)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "and meta-learning, and showed that the meta-learned representation is both better for downstream", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "score": 1.0, + "content": "adaptation and makes classes more separated than the classically trained one. Although the classical", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "score": 1.0, + "content": "training method in (Goldblum et al., 2020) does not perform a train-validation split, it is not exactly", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 227 + ], + "score": 1.0, + "content": "the same as the train-train method considered in this work as it effectively performs a supervised", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 226, + 384, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 384, + 239 + ], + "score": 1.0, + "content": "learning on all tasks combined and does not do a per-task adaptation.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "Multi-task learning Multi-task learning also exploits structures and similarities across multiple", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "score": 1.0, + "content": "tasks. The earliest idea dates back to Caruana (1997); Thrun & Pratt (1998); Baxter (2000), initially", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "in connections to neural network models. They further motivated other approaches using kernel", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "methods (Evgeniou et al., 2005; Argyriou et al., 2007) and multivariate linear regression models", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "with structured sparsity (Liu et al., 2009; 2015). More recent advances on deep multi-task learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "focus on learning shared intermediate representations across tasks Ruder (2017). These multi-task", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "learning approaches usually minimize the joint empirical risk over all tasks, and the models for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "different tasks are enforced to share a large amount of parameters. In contrast, meta-learning only", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 338, + 483, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 483, + 351 + ], + "score": 1.0, + "content": "requires the models to share the same “prior”, which is more flexible than multi-task learning.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 365, + 208, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 209, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 209, + 380 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 390, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 477, + 403 + ], + "score": 1.0, + "content": "In this paper, we consider the standard meta-learning setting, in which we observe data from", + "type": "text" + }, + { + "bbox": [ + 477, + 390, + 504, + 401 + ], + "score": 0.89, + "content": "T \\geq 1", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "supervised learning tasks, and the goal is to find a prior (or “initialization”) using the combined data,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 412, + 439, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 160, + 425 + ], + "score": 1.0, + "content": "such that the", + "type": "text" + }, + { + "bbox": [ + 160, + 412, + 192, + 424 + ], + "score": 0.95, + "content": "( T + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 412, + 439, + 425 + ], + "score": 1.0, + "content": "-th new task may be solved sample-efficiently using the prior.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 104, + 434, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 104, + 434, + 505, + 449 + ], + "score": 1.0, + "content": "Linear centroid meta-learning We instantiate our study on the linear centroid meta-learning", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "problem (also known as learning to learn around a common mean, Denevi et al. (2018b)), where we", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 457, + 507, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 285, + 470 + ], + "score": 1.0, + "content": "wish to learn a task-specific linear predictor", + "type": "text" + }, + { + "bbox": [ + 286, + 457, + 324, + 469 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { t } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 457, + 449, + 470 + ], + "score": 1.0, + "content": "in the inner loop for each task", + "type": "text" + }, + { + "bbox": [ + 449, + 459, + 454, + 468 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 457, + 507, + 470 + ], + "score": 1.0, + "content": ", and learn a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 468, + 439, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 150, + 481 + ], + "score": 1.0, + "content": "“centroid”", + "type": "text" + }, + { + "bbox": [ + 150, + 470, + 164, + 480 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 468, + 354, + 481 + ], + "score": 1.0, + "content": "in the outer loop that enables fast adaptation to", + "type": "text" + }, + { + "bbox": [ + 355, + 470, + 367, + 480 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 468, + 439, + 481 + ], + "score": 1.0, + "content": "within each task:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 137, + 486, + 471, + 499 + ], + "lines": [ + { + "bbox": [ + 137, + 486, + 469, + 500 + ], + "spans": [ + { + "bbox": [ + 137, + 486, + 227, + 500 + ], + "score": 1.0, + "content": "Find the best centroid", + "type": "text" + }, + { + "bbox": [ + 228, + 486, + 266, + 498 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 486, + 398, + 500 + ], + "score": 1.0, + "content": "for adapting to a linear predictor", + "type": "text" + }, + { + "bbox": [ + 399, + 489, + 411, + 498 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 486, + 464, + 500 + ], + "score": 1.0, + "content": "on each task", + "type": "text" + }, + { + "bbox": [ + 465, + 489, + 469, + 497 + ], + "score": 0.64, + "content": "t", + "type": "inline_equation" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 336, + 523 + ], + "score": 1.0, + "content": "Formally, we assume that we observe training data from", + "type": "text" + }, + { + "bbox": [ + 336, + 511, + 365, + 522 + ], + "score": 0.91, + "content": "T \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 510, + 498, + 523 + ], + "score": 1.0, + "content": "tasks, where for each task index", + "type": "text" + }, + { + "bbox": [ + 499, + 512, + 504, + 520 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 521, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 177, + 534 + ], + "score": 1.0, + "content": "we sample a task", + "type": "text" + }, + { + "bbox": [ + 178, + 524, + 187, + 533 + ], + "score": 0.82, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 521, + 268, + 534 + ], + "score": 1.0, + "content": "(a distribution over", + "type": "text" + }, + { + "bbox": [ + 268, + 521, + 301, + 533 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { d } \\times \\mathbb { R } ^ { \\cdot }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 521, + 433, + 534 + ], + "score": 1.0, + "content": ") from some distribution of tasks", + "type": "text" + }, + { + "bbox": [ + 433, + 522, + 442, + 532 + ], + "score": 0.66, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 521, + 496, + 534 + ], + "score": 1.0, + "content": ", and observe", + "type": "text" + }, + { + "bbox": [ + 497, + 524, + 504, + 532 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 530, + 361, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 530, + 147, + 547 + ], + "score": 1.0, + "content": "examples", + "type": "text" + }, + { + "bbox": [ + 147, + 532, + 241, + 545 + ], + "score": 0.94, + "content": "( { \\bf X } _ { t } , { \\bf y } _ { t } ) \\in \\mathbb { R } ^ { n \\times d } \\times \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 530, + 345, + 547 + ], + "score": 1.0, + "content": "that are drawn i.i.d. from", + "type": "text" + }, + { + "bbox": [ + 345, + 535, + 354, + 545 + ], + "score": 0.85, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 530, + 361, + 547 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 550, + 436, + 568 + ], + "lines": [ + { + "bbox": [ + 175, + 550, + 436, + 568 + ], + "spans": [ + { + "bbox": [ + 175, + 550, + 436, + 568 + ], + "score": 0.88, + "content": "p _ { t } \\sim \\Pi , ~ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = 1 } ^ { n } ~ \\mathrm { w h e r e } ~ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\overset { \\mathrm { i i d } } { \\sim } p _ { t } .", + "type": "interline_equation", + "image_path": "301921769484b7937242d9c376e964be6dc57b8369140abb728f06ea00aeb3ad.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 175, + 550, + 436, + 568 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 506, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 270, + 585 + ], + "score": 1.0, + "content": "We do not make further assumptions on", + "type": "text" + }, + { + "bbox": [ + 270, + 572, + 294, + 584 + ], + "score": 0.92, + "content": "( n , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "; in particular, we allow the underdetermined setting", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 581, + 502, + 597 + ], + "spans": [ + { + "bbox": [ + 107, + 583, + 132, + 594 + ], + "score": 0.87, + "content": "n \\leq d", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 581, + 332, + 597 + ], + "score": 1.0, + "content": ", in which there exists (one or many) interpolators", + "type": "text" + }, + { + "bbox": [ + 332, + 583, + 345, + 594 + ], + "score": 0.9, + "content": "\\widetilde { \\mathbf { w } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 581, + 450, + 597 + ], + "score": 1.0, + "content": "that perfectly fit the data:", + "type": "text" + }, + { + "bbox": [ + 450, + 583, + 497, + 594 + ], + "score": 0.92, + "content": "\\mathbf { X } _ { t } \\widetilde { \\mathbf { w } } _ { t } = \\mathbf { y } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 581, + 502, + 597 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 506, + 618 + ], + "score": 1.0, + "content": "Inner loop: Ridge solver with biased regularization towards the centroid Our goal in the inner", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 231, + 630 + ], + "score": 1.0, + "content": "loop is to find a linear predictor", + "type": "text" + }, + { + "bbox": [ + 231, + 619, + 244, + 628 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 617, + 336, + 630 + ], + "score": 1.0, + "content": "that fits the data in task", + "type": "text" + }, + { + "bbox": [ + 337, + 619, + 342, + 627 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "while being close to the given “centroid”", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 626, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 144, + 640 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 626, + 430, + 642 + ], + "score": 1.0, + "content": ". We instantiate this through ridge regression (i.e. linear regression with", + "type": "text" + }, + { + "bbox": [ + 430, + 629, + 443, + 640 + ], + "score": 0.86, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 626, + 506, + 642 + ], + "score": 1.0, + "content": "regularization)", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 231, + 652 + ], + "score": 1.0, + "content": "where the regularization biases", + "type": "text" + }, + { + "bbox": [ + 231, + 641, + 244, + 650 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 639, + 402, + 652 + ], + "score": 1.0, + "content": "towards the centroid. Formally, for any", + "type": "text" + }, + { + "bbox": [ + 403, + 639, + 441, + 651 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 639, + 505, + 652 + ], + "score": 1.0, + "content": "and any dataset", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 650, + 245, + 664 + ], + "spans": [ + { + "bbox": [ + 107, + 650, + 134, + 662 + ], + "score": 0.9, + "content": "( \\mathbf { X } , \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 650, + 245, + 664 + ], + "score": 1.0, + "content": ", we consider the algorithm", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 666, + 514, + 692 + ], + "lines": [ + { + "bbox": [ + 111, + 666, + 514, + 692 + ], + "spans": [ + { + "bbox": [ + 111, + 666, + 514, + 692 + ], + "score": 0.88, + "content": "4 \\lambda _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) : = \\operatorname { a r g m i n } _ { \\mathbf { w } } { \\frac { 1 } { n } } \\left\\| \\mathbf { X } \\mathbf { w } - \\mathbf { y } \\right\\| ^ { 2 } + \\lambda \\left\\| \\mathbf { w } - \\mathbf { w } _ { 0 } \\right\\| ^ { 2 } = \\mathbf { w } _ { 0 } + \\left( \\mathbf { X } ^ { \\top } \\mathbf { X } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } ^ { \\top } ( \\mathbf { y } - \\mathbf { X } \\mathbf { w } _ { 0 } ) .", + "type": "interline_equation", + "image_path": "460b650cffcf39412a777e8d9b649f95c3669055692b207504f0c8af9526f56e.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 111, + 666, + 514, + 692 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 696, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 695, + 506, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 133, + 710 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 697, + 160, + 707 + ], + "score": 0.92, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 695, + 506, + 710 + ], + "score": 1.0, + "content": "is the regularization strength (typically a tunable hyper-parameter). As we regularize", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 120, + 723 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 120, + 708, + 169, + 722 + ], + "score": 0.95, + "content": "{ \\left\\| { \\bf w } - { \\bf w } _ { 0 } \\right\\} | ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 708, + 403, + 723 + ], + "score": 1.0, + "content": ", this inner solver encourages the solution to be close to", + "type": "text" + }, + { + "bbox": [ + 403, + 711, + 417, + 721 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 708, + 506, + 723 + ], + "score": 1.0, + "content": ", as we desire. Such", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "a regularizer is widely used in practical meta-learning algorithms such as MetaOptNet (Lee et al.,", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 504, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 117, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 106, + 116, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 129 + ], + "score": 1.0, + "content": "Empirical understandings of meta-learning Raghu et al. (2020) investigated the representation", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 141 + ], + "score": 1.0, + "content": "learning perspective of meta-learning and showed that MAML with a full finetuning inner loop", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 138, + 504, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 504, + 151 + ], + "score": 1.0, + "content": "mostly learns the top-layer linear classifier and does not change the representation layers much.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 150, + 504, + 161 + ], + "spans": [ + { + "bbox": [ + 107, + 150, + 504, + 161 + ], + "score": 1.0, + "content": "This result partly justifies the validity our linear centroid meta-learning problem in which the fea-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 504, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 504, + 172 + ], + "score": 1.0, + "content": "tures (representations) are fixed and only a linear classifier is learned. Goldblum et al. (2020) investi-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 504, + 184 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 504, + 184 + ], + "score": 1.0, + "content": "gated the difference of the neural representations learned by classical training (supervised learning)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "and meta-learning, and showed that the meta-learned representation is both better for downstream", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 205 + ], + "score": 1.0, + "content": "adaptation and makes classes more separated than the classically trained one. Although the classical", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 504, + 216 + ], + "score": 1.0, + "content": "training method in (Goldblum et al., 2020) does not perform a train-validation split, it is not exactly", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 227 + ], + "score": 1.0, + "content": "the same as the train-train method considered in this work as it effectively performs a supervised", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 226, + 384, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 384, + 239 + ], + "score": 1.0, + "content": "learning on all tasks combined and does not do a per-task adaptation.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 116, + 505, + 239 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "Multi-task learning Multi-task learning also exploits structures and similarities across multiple", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 274 + ], + "score": 1.0, + "content": "tasks. The earliest idea dates back to Caruana (1997); Thrun & Pratt (1998); Baxter (2000), initially", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "in connections to neural network models. They further motivated other approaches using kernel", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "methods (Evgeniou et al., 2005; Argyriou et al., 2007) and multivariate linear regression models", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "with structured sparsity (Liu et al., 2009; 2015). More recent advances on deep multi-task learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "focus on learning shared intermediate representations across tasks Ruder (2017). These multi-task", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "learning approaches usually minimize the joint empirical risk over all tasks, and the models for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "different tasks are enforced to share a large amount of parameters. In contrast, meta-learning only", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 338, + 483, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 483, + 351 + ], + "score": 1.0, + "content": "requires the models to share the same “prior”, which is more flexible than multi-task learning.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 250, + 506, + 351 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 365, + 208, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 209, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 209, + 380 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 390, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 477, + 403 + ], + "score": 1.0, + "content": "In this paper, we consider the standard meta-learning setting, in which we observe data from", + "type": "text" + }, + { + "bbox": [ + 477, + 390, + 504, + 401 + ], + "score": 0.89, + "content": "T \\geq 1", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "supervised learning tasks, and the goal is to find a prior (or “initialization”) using the combined data,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 412, + 439, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 160, + 425 + ], + "score": 1.0, + "content": "such that the", + "type": "text" + }, + { + "bbox": [ + 160, + 412, + 192, + 424 + ], + "score": 0.95, + "content": "( T + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 412, + 439, + 425 + ], + "score": 1.0, + "content": "-th new task may be solved sample-efficiently using the prior.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 389, + 506, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 104, + 434, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 104, + 434, + 505, + 449 + ], + "score": 1.0, + "content": "Linear centroid meta-learning We instantiate our study on the linear centroid meta-learning", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "problem (also known as learning to learn around a common mean, Denevi et al. (2018b)), where we", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 457, + 507, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 285, + 470 + ], + "score": 1.0, + "content": "wish to learn a task-specific linear predictor", + "type": "text" + }, + { + "bbox": [ + 286, + 457, + 324, + 469 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { t } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 457, + 449, + 470 + ], + "score": 1.0, + "content": "in the inner loop for each task", + "type": "text" + }, + { + "bbox": [ + 449, + 459, + 454, + 468 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 457, + 507, + 470 + ], + "score": 1.0, + "content": ", and learn a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 468, + 439, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 150, + 481 + ], + "score": 1.0, + "content": "“centroid”", + "type": "text" + }, + { + "bbox": [ + 150, + 470, + 164, + 480 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 468, + 354, + 481 + ], + "score": 1.0, + "content": "in the outer loop that enables fast adaptation to", + "type": "text" + }, + { + "bbox": [ + 355, + 470, + 367, + 480 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 468, + 439, + 481 + ], + "score": 1.0, + "content": "within each task:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 434, + 507, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 137, + 486, + 471, + 499 + ], + "lines": [ + { + "bbox": [ + 137, + 486, + 469, + 500 + ], + "spans": [ + { + "bbox": [ + 137, + 486, + 227, + 500 + ], + "score": 1.0, + "content": "Find the best centroid", + "type": "text" + }, + { + "bbox": [ + 228, + 486, + 266, + 498 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 486, + 398, + 500 + ], + "score": 1.0, + "content": "for adapting to a linear predictor", + "type": "text" + }, + { + "bbox": [ + 399, + 489, + 411, + 498 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 486, + 464, + 500 + ], + "score": 1.0, + "content": "on each task", + "type": "text" + }, + { + "bbox": [ + 465, + 489, + 469, + 497 + ], + "score": 0.64, + "content": "t", + "type": "inline_equation" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 137, + 486, + 469, + 500 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 510, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 336, + 523 + ], + "score": 1.0, + "content": "Formally, we assume that we observe training data from", + "type": "text" + }, + { + "bbox": [ + 336, + 511, + 365, + 522 + ], + "score": 0.91, + "content": "T \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 510, + 498, + 523 + ], + "score": 1.0, + "content": "tasks, where for each task index", + "type": "text" + }, + { + "bbox": [ + 499, + 512, + 504, + 520 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 521, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 177, + 534 + ], + "score": 1.0, + "content": "we sample a task", + "type": "text" + }, + { + "bbox": [ + 178, + 524, + 187, + 533 + ], + "score": 0.82, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 521, + 268, + 534 + ], + "score": 1.0, + "content": "(a distribution over", + "type": "text" + }, + { + "bbox": [ + 268, + 521, + 301, + 533 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { d } \\times \\mathbb { R } ^ { \\cdot }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 521, + 433, + 534 + ], + "score": 1.0, + "content": ") from some distribution of tasks", + "type": "text" + }, + { + "bbox": [ + 433, + 522, + 442, + 532 + ], + "score": 0.66, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 521, + 496, + 534 + ], + "score": 1.0, + "content": ", and observe", + "type": "text" + }, + { + "bbox": [ + 497, + 524, + 504, + 532 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 530, + 361, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 530, + 147, + 547 + ], + "score": 1.0, + "content": "examples", + "type": "text" + }, + { + "bbox": [ + 147, + 532, + 241, + 545 + ], + "score": 0.94, + "content": "( { \\bf X } _ { t } , { \\bf y } _ { t } ) \\in \\mathbb { R } ^ { n \\times d } \\times \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 530, + 345, + 547 + ], + "score": 1.0, + "content": "that are drawn i.i.d. from", + "type": "text" + }, + { + "bbox": [ + 345, + 535, + 354, + 545 + ], + "score": 0.85, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 530, + 361, + 547 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 510, + 504, + 547 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 550, + 436, + 568 + ], + "lines": [ + { + "bbox": [ + 175, + 550, + 436, + 568 + ], + "spans": [ + { + "bbox": [ + 175, + 550, + 436, + 568 + ], + "score": 0.88, + "content": "p _ { t } \\sim \\Pi , ~ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = 1 } ^ { n } ~ \\mathrm { w h e r e } ~ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\overset { \\mathrm { i i d } } { \\sim } p _ { t } .", + "type": "interline_equation", + "image_path": "301921769484b7937242d9c376e964be6dc57b8369140abb728f06ea00aeb3ad.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 175, + 550, + 436, + 568 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 572, + 506, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 270, + 585 + ], + "score": 1.0, + "content": "We do not make further assumptions on", + "type": "text" + }, + { + "bbox": [ + 270, + 572, + 294, + 584 + ], + "score": 0.92, + "content": "( n , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "; in particular, we allow the underdetermined setting", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 581, + 502, + 597 + ], + "spans": [ + { + "bbox": [ + 107, + 583, + 132, + 594 + ], + "score": 0.87, + "content": "n \\leq d", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 581, + 332, + 597 + ], + "score": 1.0, + "content": ", in which there exists (one or many) interpolators", + "type": "text" + }, + { + "bbox": [ + 332, + 583, + 345, + 594 + ], + "score": 0.9, + "content": "\\widetilde { \\mathbf { w } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 581, + 450, + 597 + ], + "score": 1.0, + "content": "that perfectly fit the data:", + "type": "text" + }, + { + "bbox": [ + 450, + 583, + 497, + 594 + ], + "score": 0.92, + "content": "\\mathbf { X } _ { t } \\widetilde { \\mathbf { w } } _ { t } = \\mathbf { y } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 581, + 502, + 597 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 571, + 505, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 506, + 618 + ], + "score": 1.0, + "content": "Inner loop: Ridge solver with biased regularization towards the centroid Our goal in the inner", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 231, + 630 + ], + "score": 1.0, + "content": "loop is to find a linear predictor", + "type": "text" + }, + { + "bbox": [ + 231, + 619, + 244, + 628 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 617, + 336, + 630 + ], + "score": 1.0, + "content": "that fits the data in task", + "type": "text" + }, + { + "bbox": [ + 337, + 619, + 342, + 627 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "while being close to the given “centroid”", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 626, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 144, + 640 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 626, + 430, + 642 + ], + "score": 1.0, + "content": ". We instantiate this through ridge regression (i.e. linear regression with", + "type": "text" + }, + { + "bbox": [ + 430, + 629, + 443, + 640 + ], + "score": 0.86, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 626, + 506, + 642 + ], + "score": 1.0, + "content": "regularization)", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 639, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 231, + 652 + ], + "score": 1.0, + "content": "where the regularization biases", + "type": "text" + }, + { + "bbox": [ + 231, + 641, + 244, + 650 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 639, + 402, + 652 + ], + "score": 1.0, + "content": "towards the centroid. Formally, for any", + "type": "text" + }, + { + "bbox": [ + 403, + 639, + 441, + 651 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 639, + 505, + 652 + ], + "score": 1.0, + "content": "and any dataset", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 650, + 245, + 664 + ], + "spans": [ + { + "bbox": [ + 107, + 650, + 134, + 662 + ], + "score": 0.9, + "content": "( \\mathbf { X } , \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 650, + 245, + 664 + ], + "score": 1.0, + "content": ", we consider the algorithm", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 606, + 506, + 664 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 666, + 514, + 692 + ], + "lines": [ + { + "bbox": [ + 111, + 666, + 514, + 692 + ], + "spans": [ + { + "bbox": [ + 111, + 666, + 514, + 692 + ], + "score": 0.88, + "content": "4 \\lambda _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) : = \\operatorname { a r g m i n } _ { \\mathbf { w } } { \\frac { 1 } { n } } \\left\\| \\mathbf { X } \\mathbf { w } - \\mathbf { y } \\right\\| ^ { 2 } + \\lambda \\left\\| \\mathbf { w } - \\mathbf { w } _ { 0 } \\right\\| ^ { 2 } = \\mathbf { w } _ { 0 } + \\left( \\mathbf { X } ^ { \\top } \\mathbf { X } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } ^ { \\top } ( \\mathbf { y } - \\mathbf { X } \\mathbf { w } _ { 0 } ) .", + "type": "interline_equation", + "image_path": "460b650cffcf39412a777e8d9b649f95c3669055692b207504f0c8af9526f56e.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 111, + 666, + 514, + 692 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 696, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 695, + 506, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 133, + 710 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 697, + 160, + 707 + ], + "score": 0.92, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 695, + 506, + 710 + ], + "score": 1.0, + "content": "is the regularization strength (typically a tunable hyper-parameter). As we regularize", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 120, + 723 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 120, + 708, + 169, + 722 + ], + "score": 0.95, + "content": "{ \\left\\| { \\bf w } - { \\bf w } _ { 0 } \\right\\} | ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 708, + 403, + 723 + ], + "score": 1.0, + "content": ", this inner solver encourages the solution to be close to", + "type": "text" + }, + { + "bbox": [ + 403, + 711, + 417, + 721 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 708, + 506, + 723 + ], + "score": 1.0, + "content": ", as we desire. Such", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "a regularizer is widely used in practical meta-learning algorithms such as MetaOptNet (Lee et al.,", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 695, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 387, + 96 + ], + "score": 1.0, + "content": "2019) and Meta-MinibatchProx (Zhou et al., 2019). In addition, as", + "type": "text" + }, + { + "bbox": [ + 387, + 83, + 418, + 93 + ], + "score": 0.91, + "content": "\\lambda 0", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 81, + 506, + 96 + ], + "score": 1.0, + "content": ", this solver recovers", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 259, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 259, + 106 + ], + "score": 1.0, + "content": "gradient descent fine-tuning: we have", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 107, + 491, + 127 + ], + "lines": [ + { + "bbox": [ + 120, + 107, + 491, + 127 + ], + "spans": [ + { + "bbox": [ + 120, + 107, + 491, + 127 + ], + "score": 0.9, + "content": "\\mathcal { A } _ { 0 } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) : = \\operatorname* { l i m } _ { \\lambda \\to 0 } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) = \\mathbf { w } _ { 0 } + \\mathbf { X } ^ { \\dagger } ( \\mathbf { y } - \\mathbf { X } \\mathbf { w } _ { 0 } ) = \\arg \\operatorname* { m i n } _ { \\mathbf { X } \\mathbf { w } = \\mathbf { y } } \\left\\| \\mathbf { w } - \\mathbf { w } _ { 0 } \\right\\| ^ { 2 }", + "type": "interline_equation", + "image_path": "84b078ec17634c44e91ed5cc3da38a7f9d42802e47b6f1e88440ce89f9b61339.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 120, + 107, + 491, + 127 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 130, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 129, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 136, + 144 + ], + "score": 1.0, + "content": "(where", + "type": "text" + }, + { + "bbox": [ + 137, + 129, + 186, + 141 + ], + "score": 0.93, + "content": "\\mathbf { X } ^ { \\dagger } \\in \\mathbb { R } ^ { d \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 129, + 308, + 144 + ], + "score": 1.0, + "content": "denotes the pseudo-inverse of", + "type": "text" + }, + { + "bbox": [ + 308, + 131, + 318, + 141 + ], + "score": 0.71, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 129, + 506, + 144 + ], + "score": 1.0, + "content": "). This is the minimum-distance interpolator of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 107, + 143, + 135, + 155 + ], + "score": 0.89, + "content": "( \\mathbf { X } , \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 142, + 342, + 156 + ], + "score": 1.0, + "content": "and also the solution found by gradient descent 1 on", + "type": "text" + }, + { + "bbox": [ + 342, + 142, + 393, + 155 + ], + "score": 0.93, + "content": "\\left\\| \\mathbf { X } \\mathbf { w } - \\mathbf { y } \\right\\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 142, + 445, + 156 + ], + "score": 1.0, + "content": "initialized at", + "type": "text" + }, + { + "bbox": [ + 445, + 144, + 459, + 155 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 142, + 505, + 156 + ], + "score": 1.0, + "content": ". Therefore", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 192, + 167 + ], + "score": 1.0, + "content": "our ridge solver with", + "type": "text" + }, + { + "bbox": [ + 192, + 155, + 218, + 165 + ], + "score": 0.9, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "can be seen as a generalized version of the gradient descent solver used", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 226, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 226, + 177 + ], + "score": 1.0, + "content": "in MAML (Finn et al., 2017).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 233 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 487, + 201 + ], + "score": 1.0, + "content": "Outer loop: Finding the best centroid In the outer loop, our goal is to find the best centroid", + "type": "text" + }, + { + "bbox": [ + 487, + 190, + 501, + 200 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 187, + 505, + 201 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "The standard approach in meta-learning is to perform a train-validation split, that is, (1) execute", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "the inner solver on a first split of the task-specific data, and (2) evaluate the loss on a second split,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 473, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 195, + 234 + ], + "score": 1.0, + "content": "yielding a function of", + "type": "text" + }, + { + "bbox": [ + 195, + 223, + 209, + 232 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 221, + 473, + 234 + ], + "score": 1.0, + "content": "that we can optimize. This two-stage procedure can be written as", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 108, + 254, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 102, + 247, + 509, + 275 + ], + "spans": [ + { + "bbox": [ + 102, + 247, + 135, + 275 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 255, + 273, + 269 + ], + "score": 0.9, + "content": "( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = 1 } ^ { n _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 247, + 294, + 275 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 294, + 255, + 436, + 270 + ], + "score": 0.91, + "content": "( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } , \\mathbf { y } _ { t } ^ { \\mathsf { v a l } } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = n _ { 1 } + 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 247, + 509, + 275 + ], + "score": 1.0, + "content": "are two disjoint", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 210, + 282 + ], + "score": 1.0, + "content": "splits of the per-task data", + "type": "text" + }, + { + "bbox": [ + 210, + 270, + 245, + 281 + ], + "score": 0.92, + "content": "\\left( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 268, + 276, + 282 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 276, + 269, + 309, + 281 + ], + "score": 0.92, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 268, + 334, + 282 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 334, + 270, + 388, + 280 + ], + "score": 0.9, + "content": "n _ { 1 } + n _ { 2 } = n", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 268, + 506, + 282 + ], + "score": 1.0, + "content": ". Written concisely, this is to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 279, + 203, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 203, + 291 + ], + "score": 1.0, + "content": "consider the “split loss”", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 293, + 422, + 319 + ], + "lines": [ + { + "bbox": [ + 189, + 293, + 422, + 319 + ], + "spans": [ + { + "bbox": [ + 189, + 293, + 422, + 319 + ], + "score": 0.92, + "content": "\\ell _ { t } ^ { { \\mathrm { t r } } - { \\mathrm { v a l } } } ( \\mathbf { w } _ { 0 } ) : = \\frac { 1 } { 2 n _ { 2 } } \\left. \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\boldsymbol { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } ) \\right. ^ { 2 } .", + "type": "interline_equation", + "image_path": "f61eefa869e8b6c1e7e7a2f667d84293b0a3f324337c94d92084f77df5e66951.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 189, + 293, + 422, + 319 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 326, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 326, + 504, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 504, + 338 + ], + "score": 1.0, + "content": "In this paper, we will also consider an alternative version, where we do not perform the train-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 337, + 504, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 504, + 348 + ], + "score": 1.0, + "content": "validation split, but instead use all the per-task data for both training and evaluation. Mathemati-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 347, + 276, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 276, + 360 + ], + "score": 1.0, + "content": "cally, this is to look at the “non-split loss”", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 361, + 400, + 385 + ], + "lines": [ + { + "bbox": [ + 210, + 361, + 400, + 385 + ], + "spans": [ + { + "bbox": [ + 210, + 361, + 400, + 385 + ], + "score": 0.94, + "content": "\\ell _ { t } ^ { { \\mathrm { t r } } \\cdot { \\mathrm { t r } } } ( \\mathbf { w } _ { 0 } ) : = { \\frac { 1 } { 2 n } } \\left\\| \\mathbf { y } _ { t } - \\mathbf { X } _ { t } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\right\\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "413a38883454527b9da125c0c3f8e310be69c118e783c04f1eae521042776071.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 210, + 361, + 400, + 385 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 387, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 457, + 400 + ], + "score": 1.0, + "content": "Our overall algorithm is to solve the empirical risk minimization (ERM) problem on the", + "type": "text" + }, + { + "bbox": [ + 457, + 388, + 466, + 397 + ], + "score": 0.84, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 386, + 505, + 400 + ], + "score": 1.0, + "content": "observed", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 398, + 295, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 295, + 410 + ], + "score": 1.0, + "content": "tasks, using either one of the two losses above:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 411, + 449, + 469 + ], + "lines": [ + { + "bbox": [ + 159, + 411, + 449, + 469 + ], + "spans": [ + { + "bbox": [ + 159, + 411, + 449, + 469 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\widehat { L } _ { T } ^ { \\mathrm { t r } \\setminus \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) : = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) \\quad \\mathrm { a n d } \\quad \\widehat { L } _ { T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 } ) : = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 } ) , } \\\\ & { \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r } \\cdot \\mathrm { v a l } , \\mathrm { t r } \\cdot \\mathrm { t r } \\} } : = \\displaystyle \\arg \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } \\widehat { L } _ { T } ^ { \\{ \\mathrm { t r } \\cdot \\mathrm { v a l } , \\mathrm { t r } \\cdot \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4a71e6f2c1f24c10e3bb1b419b90be8a2e22ecb749bc6f2250405fa670c08a69.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 159, + 411, + 449, + 430.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 159, + 430.3333333333333, + 449, + 449.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 159, + 449.66666666666663, + 449, + 468.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 471, + 448, + 493 + ], + "lines": [ + { + "bbox": [ + 100, + 468, + 454, + 495 + ], + "spans": [ + { + "bbox": [ + 100, + 468, + 121, + 495 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 472, + 352, + 493 + ], + "score": 0.76, + "content": "L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\vee \\mathsf { a l } , \\mathrm { t r } \\mathrm { - } \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) : = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( { \\mathbf { X } } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\ell _ { t } ^ { \\{ \\mathrm { t r } \\mathrm { - } \\vee \\mathsf { a l } , \\mathrm { t r } \\mathrm { - } \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 468, + 454, + 495 + ], + "score": 1.0, + "content": "be the population risks.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 503, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 505, + 514 + ], + "score": 1.0, + "content": "(Meta-)Test time The meta-test time performance of any meta-learning algorithm is a joint func-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 513, + 504, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 223, + 526 + ], + "score": 1.0, + "content": "tion of the (learned) centroid", + "type": "text" + }, + { + "bbox": [ + 223, + 515, + 237, + 524 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 513, + 333, + 526 + ], + "score": 1.0, + "content": "and the inner algorithm", + "type": "text" + }, + { + "bbox": [ + 333, + 514, + 349, + 525 + ], + "score": 0.7, + "content": "\\mathsf { A l g }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 513, + 460, + 526 + ], + "score": 1.0, + "content": ". Upon receiving a new task", + "type": "text" + }, + { + "bbox": [ + 460, + 514, + 504, + 525 + ], + "score": 0.9, + "content": "p _ { T + 1 } \\sim \\Pi", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 523, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 104, + 523, + 178, + 538 + ], + "score": 1.0, + "content": "and training data", + "type": "text" + }, + { + "bbox": [ + 179, + 524, + 303, + 537 + ], + "score": 0.9, + "content": "( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) \\in \\mathbb { R } ^ { n \\times d } \\times \\mathbb { R } ^ { \\bar { n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 523, + 399, + 538 + ], + "score": 1.0, + "content": ", we run the inner loop", + "type": "text" + }, + { + "bbox": [ + 400, + 525, + 416, + 536 + ], + "score": 0.81, + "content": "\\mathsf { A l g }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 523, + 461, + 538 + ], + "score": 1.0, + "content": "with prior", + "type": "text" + }, + { + "bbox": [ + 461, + 527, + 475, + 536 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 523, + 506, + 538 + ], + "score": 1.0, + "content": "on the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 533, + 405, + 550 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 335, + 550 + ], + "score": 1.0, + "content": "training data, and evaluate it on an (unseen) test example", + "type": "text" + }, + { + "bbox": [ + 336, + 535, + 400, + 547 + ], + "score": 0.92, + "content": "( { \\bf x } ^ { \\prime } , y ^ { \\prime } ) \\sim p _ { T + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 533, + 405, + 550 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 550, + 494, + 577 + ], + "lines": [ + { + "bbox": [ + 115, + 550, + 494, + 577 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 494, + 577 + ], + "score": 0.91, + "content": "L ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ; \\mathbb { A } | \\mathbf { g } ) : = \\mathbb { E } _ { p _ { T + 1 } \\sim \\Pi } \\mathbb { E } _ { ( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) , ( \\mathbf { x } ^ { \\prime } , \\pmb { y } ^ { \\prime } ) ^ { \\sharp \\alpha } p _ { T + 1 } } \\left[ \\frac { 1 } { 2 } \\big ( \\mathbf { x } ^ { \\prime \\top } \\mathbb { A } | \\mathbf { g } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) - \\pmb { y } ^ { \\prime } \\big ) ^ { 2 } \\right] .", + "type": "interline_equation", + "image_path": "7f69ad0a1bd0e996487cfa263c31469fc31f6cc2bb47dbc0c2f5afc03268340a.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 115, + 550, + 494, + 559.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 115, + 559.0, + 494, + 568.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 115, + 568.0, + 494, + 577.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 504, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "Additionally, for both train-val and train-train methods, we need to ensure that the inner loop used", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 590, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 506, + 601 + ], + "score": 1.0, + "content": "for meta-test is exactly the same as that used in meta-training. Therefore, the meta-test performance", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 599, + 385, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 385, + 612 + ], + "score": 1.0, + "content": "for the train-val and train-train methods above should be evaluated as", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 613, + 460, + 629 + ], + "lines": [ + { + "bbox": [ + 149, + 613, + 460, + 629 + ], + "spans": [ + { + "bbox": [ + 149, + 613, + 460, + 629 + ], + "score": 0.89, + "content": "\\begin{array} { r } { L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ) : = L ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ; \\mathcal { A } _ { \\lambda , n _ { 1 } } ) , \\quad L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) : = L ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ; \\mathcal { A } _ { \\lambda , n } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "028d6ccb87397920918f7733dfe8032d08917a586149e945679577be70cf44ca.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 149, + 613, + 460, + 629 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 630, + 503, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 629, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 134, + 643 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 631, + 158, + 642 + ], + "score": 0.91, + "content": "\\mathcal { A } _ { \\lambda , m }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 629, + 376, + 643 + ], + "score": 1.0, + "content": "denotes the ridge solver with regularization strength", + "type": "text" + }, + { + "bbox": [ + 376, + 631, + 406, + 641 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 629, + 421, + 643 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 421, + 631, + 454, + 641 + ], + "score": 0.9, + "content": "m \\leq n", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 629, + 505, + 643 + ], + "score": 1.0, + "content": "data points.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 641, + 166, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 166, + 653 + ], + "score": 1.0, + "content": "Finally, we let", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 654, + 372, + 675 + ], + "lines": [ + { + "bbox": [ + 239, + 654, + 372, + 675 + ], + "spans": [ + { + "bbox": [ + 239, + 654, + 372, + 675 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda ; n ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\end{array}", + "type": "interline_equation", + "image_path": "81ae36344c1881c133fffc5ec4eb21fbfc6209c0af206dd77dfe1b752c119428.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 239, + 654, + 372, + 675 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 677, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 298, + 690 + ], + "score": 1.0, + "content": "denote the best centroid if the inner loop uses", + "type": "text" + }, + { + "bbox": [ + 298, + 677, + 320, + 689 + ], + "score": 0.91, + "content": "\\mathcal { A } _ { \\lambda , n }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 675, + 505, + 690 + ], + "score": 1.0, + "content": ". The performance of the train-val algorithm", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 683, + 509, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 133, + 703 + ], + "score": 0.87, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 683, + 250, + 709 + ], + "score": 1.0, + "content": "should be compared against", + "type": "text" + }, + { + "bbox": [ + 250, + 689, + 299, + 702 + ], + "score": 0.93, + "content": "{ \\bf w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 683, + 438, + 709 + ], + "score": 1.0, + "content": ", whereas the train-train algorithm", + "type": "text" + }, + { + "bbox": [ + 439, + 689, + 462, + 703 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 683, + 509, + 709 + ], + "score": 1.0, + "content": "should be", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 701, + 227, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 179, + 715 + ], + "score": 1.0, + "content": "compared against", + "type": "text" + }, + { + "bbox": [ + 179, + 702, + 223, + 714 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 701, + 227, + 715 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 721, + 264, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 266, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 266, + 733 + ], + "score": 1.0, + "content": "1with a small step-size, or gradient flow.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 387, + 96 + ], + "score": 1.0, + "content": "2019) and Meta-MinibatchProx (Zhou et al., 2019). In addition, as", + "type": "text" + }, + { + "bbox": [ + 387, + 83, + 418, + 93 + ], + "score": 0.91, + "content": "\\lambda 0", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 81, + 506, + 96 + ], + "score": 1.0, + "content": ", this solver recovers", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 259, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 259, + 106 + ], + "score": 1.0, + "content": "gradient descent fine-tuning: we have", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 107, + 491, + 127 + ], + "lines": [ + { + "bbox": [ + 120, + 107, + 491, + 127 + ], + "spans": [ + { + "bbox": [ + 120, + 107, + 491, + 127 + ], + "score": 0.9, + "content": "\\mathcal { A } _ { 0 } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) : = \\operatorname* { l i m } _ { \\lambda \\to 0 } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) = \\mathbf { w } _ { 0 } + \\mathbf { X } ^ { \\dagger } ( \\mathbf { y } - \\mathbf { X } \\mathbf { w } _ { 0 } ) = \\arg \\operatorname* { m i n } _ { \\mathbf { X } \\mathbf { w } = \\mathbf { y } } \\left\\| \\mathbf { w } - \\mathbf { w } _ { 0 } \\right\\| ^ { 2 }", + "type": "interline_equation", + "image_path": "84b078ec17634c44e91ed5cc3da38a7f9d42802e47b6f1e88440ce89f9b61339.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 120, + 107, + 491, + 127 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 130, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 129, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 136, + 144 + ], + "score": 1.0, + "content": "(where", + "type": "text" + }, + { + "bbox": [ + 137, + 129, + 186, + 141 + ], + "score": 0.93, + "content": "\\mathbf { X } ^ { \\dagger } \\in \\mathbb { R } ^ { d \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 129, + 308, + 144 + ], + "score": 1.0, + "content": "denotes the pseudo-inverse of", + "type": "text" + }, + { + "bbox": [ + 308, + 131, + 318, + 141 + ], + "score": 0.71, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 129, + 506, + 144 + ], + "score": 1.0, + "content": "). This is the minimum-distance interpolator of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 107, + 143, + 135, + 155 + ], + "score": 0.89, + "content": "( \\mathbf { X } , \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 142, + 342, + 156 + ], + "score": 1.0, + "content": "and also the solution found by gradient descent 1 on", + "type": "text" + }, + { + "bbox": [ + 342, + 142, + 393, + 155 + ], + "score": 0.93, + "content": "\\left\\| \\mathbf { X } \\mathbf { w } - \\mathbf { y } \\right\\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 142, + 445, + 156 + ], + "score": 1.0, + "content": "initialized at", + "type": "text" + }, + { + "bbox": [ + 445, + 144, + 459, + 155 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 142, + 505, + 156 + ], + "score": 1.0, + "content": ". Therefore", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 192, + 167 + ], + "score": 1.0, + "content": "our ridge solver with", + "type": "text" + }, + { + "bbox": [ + 192, + 155, + 218, + 165 + ], + "score": 0.9, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "can be seen as a generalized version of the gradient descent solver used", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 226, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 226, + 177 + ], + "score": 1.0, + "content": "in MAML (Finn et al., 2017).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 129, + 506, + 177 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 233 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 487, + 201 + ], + "score": 1.0, + "content": "Outer loop: Finding the best centroid In the outer loop, our goal is to find the best centroid", + "type": "text" + }, + { + "bbox": [ + 487, + 190, + 501, + 200 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 187, + 505, + 201 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "The standard approach in meta-learning is to perform a train-validation split, that is, (1) execute", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "the inner solver on a first split of the task-specific data, and (2) evaluate the loss on a second split,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 473, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 195, + 234 + ], + "score": 1.0, + "content": "yielding a function of", + "type": "text" + }, + { + "bbox": [ + 195, + 223, + 209, + 232 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 221, + 473, + 234 + ], + "score": 1.0, + "content": "that we can optimize. This two-stage procedure can be written as", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 187, + 505, + 234 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 254, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 102, + 247, + 509, + 275 + ], + "spans": [ + { + "bbox": [ + 102, + 247, + 135, + 275 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 255, + 273, + 269 + ], + "score": 0.9, + "content": "( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = 1 } ^ { n _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 247, + 294, + 275 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 294, + 255, + 436, + 270 + ], + "score": 0.91, + "content": "( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } , \\mathbf { y } _ { t } ^ { \\mathsf { v a l } } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = n _ { 1 } + 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 247, + 509, + 275 + ], + "score": 1.0, + "content": "are two disjoint", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 210, + 282 + ], + "score": 1.0, + "content": "splits of the per-task data", + "type": "text" + }, + { + "bbox": [ + 210, + 270, + 245, + 281 + ], + "score": 0.92, + "content": "\\left( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 268, + 276, + 282 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 276, + 269, + 309, + 281 + ], + "score": 0.92, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 268, + 334, + 282 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 334, + 270, + 388, + 280 + ], + "score": 0.9, + "content": "n _ { 1 } + n _ { 2 } = n", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 268, + 506, + 282 + ], + "score": 1.0, + "content": ". Written concisely, this is to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 279, + 203, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 203, + 291 + ], + "score": 1.0, + "content": "consider the “split loss”", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 102, + 247, + 509, + 291 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 293, + 422, + 319 + ], + "lines": [ + { + "bbox": [ + 189, + 293, + 422, + 319 + ], + "spans": [ + { + "bbox": [ + 189, + 293, + 422, + 319 + ], + "score": 0.92, + "content": "\\ell _ { t } ^ { { \\mathrm { t r } } - { \\mathrm { v a l } } } ( \\mathbf { w } _ { 0 } ) : = \\frac { 1 } { 2 n _ { 2 } } \\left. \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\boldsymbol { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } ) \\right. ^ { 2 } .", + "type": "interline_equation", + "image_path": "f61eefa869e8b6c1e7e7a2f667d84293b0a3f324337c94d92084f77df5e66951.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 189, + 293, + 422, + 319 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 326, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 326, + 504, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 504, + 338 + ], + "score": 1.0, + "content": "In this paper, we will also consider an alternative version, where we do not perform the train-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 337, + 504, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 504, + 348 + ], + "score": 1.0, + "content": "validation split, but instead use all the per-task data for both training and evaluation. Mathemati-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 347, + 276, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 276, + 360 + ], + "score": 1.0, + "content": "cally, this is to look at the “non-split loss”", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 326, + 504, + 360 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 361, + 400, + 385 + ], + "lines": [ + { + "bbox": [ + 210, + 361, + 400, + 385 + ], + "spans": [ + { + "bbox": [ + 210, + 361, + 400, + 385 + ], + "score": 0.94, + "content": "\\ell _ { t } ^ { { \\mathrm { t r } } \\cdot { \\mathrm { t r } } } ( \\mathbf { w } _ { 0 } ) : = { \\frac { 1 } { 2 n } } \\left\\| \\mathbf { y } _ { t } - \\mathbf { X } _ { t } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\right\\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "413a38883454527b9da125c0c3f8e310be69c118e783c04f1eae521042776071.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 210, + 361, + 400, + 385 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 387, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 457, + 400 + ], + "score": 1.0, + "content": "Our overall algorithm is to solve the empirical risk minimization (ERM) problem on the", + "type": "text" + }, + { + "bbox": [ + 457, + 388, + 466, + 397 + ], + "score": 0.84, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 386, + 505, + 400 + ], + "score": 1.0, + "content": "observed", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 398, + 295, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 295, + 410 + ], + "score": 1.0, + "content": "tasks, using either one of the two losses above:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 386, + 505, + 410 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 411, + 449, + 469 + ], + "lines": [ + { + "bbox": [ + 159, + 411, + 449, + 469 + ], + "spans": [ + { + "bbox": [ + 159, + 411, + 449, + 469 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\widehat { L } _ { T } ^ { \\mathrm { t r } \\setminus \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) : = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) \\quad \\mathrm { a n d } \\quad \\widehat { L } _ { T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 } ) : = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 } ) , } \\\\ & { \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r } \\cdot \\mathrm { v a l } , \\mathrm { t r } \\cdot \\mathrm { t r } \\} } : = \\displaystyle \\arg \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } \\widehat { L } _ { T } ^ { \\{ \\mathrm { t r } \\cdot \\mathrm { v a l } , \\mathrm { t r } \\cdot \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4a71e6f2c1f24c10e3bb1b419b90be8a2e22ecb749bc6f2250405fa670c08a69.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 159, + 411, + 449, + 430.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 159, + 430.3333333333333, + 449, + 449.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 159, + 449.66666666666663, + 449, + 468.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 471, + 448, + 493 + ], + "lines": [ + { + "bbox": [ + 100, + 468, + 454, + 495 + ], + "spans": [ + { + "bbox": [ + 100, + 468, + 121, + 495 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 472, + 352, + 493 + ], + "score": 0.76, + "content": "L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\vee \\mathsf { a l } , \\mathrm { t r } \\mathrm { - } \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) : = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( { \\mathbf { X } } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\ell _ { t } ^ { \\{ \\mathrm { t r } \\mathrm { - } \\vee \\mathsf { a l } , \\mathrm { t r } \\mathrm { - } \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 468, + 454, + 495 + ], + "score": 1.0, + "content": "be the population risks.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 100, + 468, + 454, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 503, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 505, + 514 + ], + "score": 1.0, + "content": "(Meta-)Test time The meta-test time performance of any meta-learning algorithm is a joint func-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 513, + 504, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 223, + 526 + ], + "score": 1.0, + "content": "tion of the (learned) centroid", + "type": "text" + }, + { + "bbox": [ + 223, + 515, + 237, + 524 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 513, + 333, + 526 + ], + "score": 1.0, + "content": "and the inner algorithm", + "type": "text" + }, + { + "bbox": [ + 333, + 514, + 349, + 525 + ], + "score": 0.7, + "content": "\\mathsf { A l g }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 513, + 460, + 526 + ], + "score": 1.0, + "content": ". Upon receiving a new task", + "type": "text" + }, + { + "bbox": [ + 460, + 514, + 504, + 525 + ], + "score": 0.9, + "content": "p _ { T + 1 } \\sim \\Pi", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 523, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 104, + 523, + 178, + 538 + ], + "score": 1.0, + "content": "and training data", + "type": "text" + }, + { + "bbox": [ + 179, + 524, + 303, + 537 + ], + "score": 0.9, + "content": "( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) \\in \\mathbb { R } ^ { n \\times d } \\times \\mathbb { R } ^ { \\bar { n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 523, + 399, + 538 + ], + "score": 1.0, + "content": ", we run the inner loop", + "type": "text" + }, + { + "bbox": [ + 400, + 525, + 416, + 536 + ], + "score": 0.81, + "content": "\\mathsf { A l g }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 523, + 461, + 538 + ], + "score": 1.0, + "content": "with prior", + "type": "text" + }, + { + "bbox": [ + 461, + 527, + 475, + 536 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 523, + 506, + 538 + ], + "score": 1.0, + "content": "on the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 533, + 405, + 550 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 335, + 550 + ], + "score": 1.0, + "content": "training data, and evaluate it on an (unseen) test example", + "type": "text" + }, + { + "bbox": [ + 336, + 535, + 400, + 547 + ], + "score": 0.92, + "content": "( { \\bf x } ^ { \\prime } , y ^ { \\prime } ) \\sim p _ { T + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 533, + 405, + 550 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 104, + 503, + 506, + 550 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 550, + 494, + 577 + ], + "lines": [ + { + "bbox": [ + 115, + 550, + 494, + 577 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 494, + 577 + ], + "score": 0.91, + "content": "L ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ; \\mathbb { A } | \\mathbf { g } ) : = \\mathbb { E } _ { p _ { T + 1 } \\sim \\Pi } \\mathbb { E } _ { ( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) , ( \\mathbf { x } ^ { \\prime } , \\pmb { y } ^ { \\prime } ) ^ { \\sharp \\alpha } p _ { T + 1 } } \\left[ \\frac { 1 } { 2 } \\big ( \\mathbf { x } ^ { \\prime \\top } \\mathbb { A } | \\mathbf { g } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) - \\pmb { y } ^ { \\prime } \\big ) ^ { 2 } \\right] .", + "type": "interline_equation", + "image_path": "7f69ad0a1bd0e996487cfa263c31469fc31f6cc2bb47dbc0c2f5afc03268340a.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 115, + 550, + 494, + 559.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 115, + 559.0, + 494, + 568.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 115, + 568.0, + 494, + 577.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 504, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 591 + ], + "score": 1.0, + "content": "Additionally, for both train-val and train-train methods, we need to ensure that the inner loop used", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 590, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 506, + 601 + ], + "score": 1.0, + "content": "for meta-test is exactly the same as that used in meta-training. Therefore, the meta-test performance", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 599, + 385, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 385, + 612 + ], + "score": 1.0, + "content": "for the train-val and train-train methods above should be evaluated as", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 577, + 506, + 612 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 613, + 460, + 629 + ], + "lines": [ + { + "bbox": [ + 149, + 613, + 460, + 629 + ], + "spans": [ + { + "bbox": [ + 149, + 613, + 460, + 629 + ], + "score": 0.89, + "content": "\\begin{array} { r } { L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ) : = L ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ; \\mathcal { A } _ { \\lambda , n _ { 1 } } ) , \\quad L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) : = L ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ; \\mathcal { A } _ { \\lambda , n } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "028d6ccb87397920918f7733dfe8032d08917a586149e945679577be70cf44ca.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 149, + 613, + 460, + 629 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 630, + 503, + 652 + ], + "lines": [ + { + "bbox": [ + 106, + 629, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 134, + 643 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 631, + 158, + 642 + ], + "score": 0.91, + "content": "\\mathcal { A } _ { \\lambda , m }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 629, + 376, + 643 + ], + "score": 1.0, + "content": "denotes the ridge solver with regularization strength", + "type": "text" + }, + { + "bbox": [ + 376, + 631, + 406, + 641 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 629, + 421, + 643 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 421, + 631, + 454, + 641 + ], + "score": 0.9, + "content": "m \\leq n", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 629, + 505, + 643 + ], + "score": 1.0, + "content": "data points.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 641, + 166, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 166, + 653 + ], + "score": 1.0, + "content": "Finally, we let", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 629, + 505, + 653 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 654, + 372, + 675 + ], + "lines": [ + { + "bbox": [ + 239, + 654, + 372, + 675 + ], + "spans": [ + { + "bbox": [ + 239, + 654, + 372, + 675 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda ; n ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\end{array}", + "type": "interline_equation", + "image_path": "81ae36344c1881c133fffc5ec4eb21fbfc6209c0af206dd77dfe1b752c119428.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 239, + 654, + 372, + 675 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 677, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 298, + 690 + ], + "score": 1.0, + "content": "denote the best centroid if the inner loop uses", + "type": "text" + }, + { + "bbox": [ + 298, + 677, + 320, + 689 + ], + "score": 0.91, + "content": "\\mathcal { A } _ { \\lambda , n }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 675, + 505, + 690 + ], + "score": 1.0, + "content": ". The performance of the train-val algorithm", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 683, + 509, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 133, + 703 + ], + "score": 0.87, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 683, + 250, + 709 + ], + "score": 1.0, + "content": "should be compared against", + "type": "text" + }, + { + "bbox": [ + 250, + 689, + 299, + 702 + ], + "score": 0.93, + "content": "{ \\bf w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 683, + 438, + 709 + ], + "score": 1.0, + "content": ", whereas the train-train algorithm", + "type": "text" + }, + { + "bbox": [ + 439, + 689, + 462, + 703 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 683, + 509, + 709 + ], + "score": 1.0, + "content": "should be", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 701, + 227, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 179, + 715 + ], + "score": 1.0, + "content": "compared against", + "type": "text" + }, + { + "bbox": [ + 179, + 702, + 223, + 714 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 701, + 227, + 715 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 675, + 509, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 394, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 395, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 395, + 95 + ], + "score": 1.0, + "content": "2.1 TASK-ABUNDANT SETTING THROUGH ASYMPTOTIC ANALYSIS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 504, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 441, + 115 + ], + "score": 1.0, + "content": "In this paper we are interested in the task-abundant setting where we fix some finite", + "type": "text" + }, + { + "bbox": [ + 441, + 103, + 465, + 115 + ], + "score": 0.91, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 102, + 495, + 115 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 495, + 103, + 504, + 113 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "be very large. We analyze such a task-abundant setting through the asymptotic analysis framework,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 124, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 104, + 126, + 357, + 141 + ], + "score": 1.0, + "content": "that is, examine the limiting properties of the estimator (e.g.", + "type": "text" + }, + { + "bbox": [ + 362, + 124, + 506, + 140 + ], + "score": 1.0, + "content": "w {tr-val,tr-tr}) as T . Here we", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 138, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 104, + 138, + 505, + 153 + ], + "score": 1.0, + "content": "set up the basic notation of asymptotic analysis required in this paper. We emphasize that our large", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 115, + 160 + ], + "score": 0.78, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "setting captures practical meta-learning scenarios; for example, 5-way image classification on", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 443, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 311, + 176 + ], + "score": 1.0, + "content": "miniImageNet (Ravi & Larochelle, 2017) contains", + "type": "text" + }, + { + "bbox": [ + 311, + 161, + 328, + 176 + ], + "score": 0.86, + "content": "\\binom { 6 4 } { 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 160, + 443, + 176 + ], + "score": 1.0, + "content": "diverse tasks (at train time).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 318, + 199 + ], + "score": 1.0, + "content": "Asymptotic rate of estimation & excess risk Let", + "type": "text" + }, + { + "bbox": [ + 318, + 187, + 326, + 196 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 184, + 483, + 199 + ], + "score": 1.0, + "content": "be any population risk with minimizer", + "type": "text" + }, + { + "bbox": [ + 483, + 188, + 504, + 198 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 233, + 212 + ], + "score": 1.0, + "content": "(which we assume is unique),", + "type": "text" + }, + { + "bbox": [ + 234, + 197, + 248, + 210 + ], + "score": 0.89, + "content": "\\widehat { L } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 198, + 451, + 212 + ], + "score": 1.0, + "content": "be the empirical risk on the observed data from", + "type": "text" + }, + { + "bbox": [ + 451, + 200, + 460, + 209 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 198, + 506, + 212 + ], + "score": 1.0, + "content": "tasks, and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 211, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 107, + 212, + 128, + 225 + ], + "score": 0.89, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 211, + 213, + 225 + ], + "score": 1.0, + "content": "be the minimizer of", + "type": "text" + }, + { + "bbox": [ + 214, + 211, + 228, + 223 + ], + "score": 0.91, + "content": "\\widehat { L } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 211, + 346, + 225 + ], + "score": 1.0, + "content": "(i.e. the ERM). We say that", + "type": "text" + }, + { + "bbox": [ + 346, + 212, + 368, + 225 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 211, + 434, + 225 + ], + "score": 1.0, + "content": "is consistent if", + "type": "text" + }, + { + "bbox": [ + 434, + 212, + 493, + 225 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } \\to \\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 211, + 506, + 225 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 164, + 235 + ], + "score": 1.0, + "content": "probability as", + "type": "text" + }, + { + "bbox": [ + 165, + 225, + 199, + 233 + ], + "score": 0.89, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 223, + 506, + 235 + ], + "score": 1.0, + "content": ". For consistent ERMs, we define its asymptotic parameter estimation error", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 322, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 322, + 245 + ], + "score": 1.0, + "content": "(in MSE loss) and asymptotic excess risk as follows2:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 247, + 433, + 289 + ], + "lines": [ + { + "bbox": [ + 178, + 247, + 433, + 289 + ], + "spans": [ + { + "bbox": [ + 178, + 247, + 433, + 289 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\displaystyle \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\operatorname* { l i m } _ { T \\infty } T \\cdot \\mathbb { E } \\Big [ \\big \\| \\widehat { \\mathbf w } _ { 0 , T } - { \\mathbf w } _ { 0 , \\star } \\big \\| ^ { 2 } \\Big ] } \\\\ & { \\displaystyle \\mathrm { A s y m E x c e s s R i s k } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\operatorname* { l i m } _ { T \\infty } T \\cdot \\mathbb { E } [ L ( \\widehat { \\mathbf w } _ { 0 , T } ) - L ( { \\mathbf w } _ { 0 , \\star } ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "83649bb287fec750ed8618496a74ca90cfa50a1012e0c2af73d32ac5c1aa24c9.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 178, + 247, + 433, + 261.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 178, + 261.0, + 433, + 275.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 178, + 275.0, + 433, + 289.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 290, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 108, + 289, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 108, + 289, + 436, + 304 + ], + "score": 1.0, + "content": "We emphasize that asymptotic statements are more refined than non-asymptotic", + "type": "text" + }, + { + "bbox": [ + 437, + 291, + 456, + 302 + ], + "score": 0.9, + "content": "O ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 289, + 506, + 304 + ], + "score": 1.0, + "content": "style upper", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 165, + 314 + ], + "score": 1.0, + "content": "bounds in the", + "type": "text" + }, + { + "bbox": [ + 165, + 302, + 203, + 311 + ], + "score": 0.87, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 301, + 452, + 314 + ], + "score": 1.0, + "content": "limit: they already imply the {MSE, excess risk} has order", + "type": "text" + }, + { + "bbox": [ + 452, + 302, + 486, + 313 + ], + "score": 0.93, + "content": "{ \\cal O } ( 1 / T )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 301, + 505, + 314 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 313, + 229, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 229, + 325 + ], + "score": 1.0, + "content": "specifies the leading constant.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 107, + 339, + 336, + 352 + ], + "lines": [ + { + "bbox": [ + 104, + 338, + 336, + 354 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 336, + 354 + ], + "score": 1.0, + "content": "3 THE IMPORTANCE OF SAMPLE SPLITTING", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 101, + 354, + 511, + 389 + ], + "spans": [ + { + "bbox": [ + 101, + 354, + 180, + 389 + ], + "score": 1.0, + "content": "We begin by ana", + "type": "text" + }, + { + "bbox": [ + 229, + 354, + 243, + 389 + ], + "score": 1.0, + "content": "her", + "type": "text" + }, + { + "bbox": [ + 288, + 354, + 305, + 389 + ], + "score": 1.0, + "content": "hms", + "type": "text" + }, + { + "bbox": [ + 305, + 361, + 355, + 378 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - v a l , t r - t r } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 354, + 405, + 389 + ], + "score": 1.0, + "content": "defined in", + "type": "text" + }, + { + "bbox": [ + 442, + 354, + 511, + 389 + ], + "score": 1.0, + "content": "rge to the best", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 181, + 376, + 442, + 389 + ], + "spans": [ + { + "bbox": [ + 181, + 376, + 229, + 389 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 , \\star } \\big ( \\lambda ; n _ { 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 376, + 287, + 389 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ( \\lambda ; n )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 377, + 442, + 387 + ], + "score": 0.9, + "content": "T \\to \\infty", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 386, + 437, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 422, + 402 + ], + "score": 1.0, + "content": "situation where we do not make structural assumptions on the data distribution", + "type": "text" + }, + { + "bbox": [ + 422, + 389, + 432, + 399 + ], + "score": 0.86, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 386, + 437, + 402 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 400, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 425, + 414 + ], + "score": 1.0, + "content": "Proposition 1 (Consistency and asymptotics of train-val method). Suppose", + "type": "text" + }, + { + "bbox": [ + 425, + 399, + 502, + 414 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] ~ \\succ ~ \\mathbf { 0 } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 400, + 505, + 414 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 412, + 504, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 185, + 427 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\left\\| \\mathbf { x } \\right\\| ^ { 4 } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 412, + 204, + 428 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 205, + 414, + 296, + 428 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\| \\mathbf { x } y \\| ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 412, + 382, + 428 + ], + "score": 1.0, + "content": "for almost surely all", + "type": "text" + }, + { + "bbox": [ + 383, + 415, + 415, + 426 + ], + "score": 0.91, + "content": "p _ { t } \\sim \\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 412, + 476, + 428 + ], + "score": 1.0, + "content": ". Then for any", + "type": "text" + }, + { + "bbox": [ + 476, + 415, + 504, + 425 + ], + "score": 0.87, + "content": "\\lambda > 0", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 424, + 507, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 141, + 443 + ], + "score": 1.0, + "content": "and any", + "type": "text" + }, + { + "bbox": [ + 141, + 428, + 174, + 439 + ], + "score": 0.9, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 424, + 215, + 443 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 215, + 429, + 268, + 439 + ], + "score": 0.89, + "content": "n _ { 1 } + n _ { 2 } = n ,", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 424, + 355, + 443 + ], + "score": 1.0, + "content": ", the train-val method", + "type": "text" + }, + { + "bbox": [ + 355, + 427, + 382, + 441 + ], + "score": 0.89, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 424, + 507, + 443 + ], + "score": 1.0, + "content": "converges to the best test-time", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 102, + 435, + 415, + 458 + ], + "spans": [ + { + "bbox": [ + 102, + 435, + 146, + 458 + ], + "score": 1.0, + "content": "centroid:", + "type": "text" + }, + { + "bbox": [ + 146, + 440, + 236, + 455 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } \\to \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 435, + 304, + 458 + ], + "score": 1.0, + "content": "almost surely as", + "type": "text" + }, + { + "bbox": [ + 304, + 441, + 338, + 451 + ], + "score": 0.89, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 435, + 415, + 458 + ], + "score": 1.0, + "content": "b . Further, we have", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 456, + 527, + 492 + ], + "lines": [ + { + "bbox": [ + 124, + 456, + 527, + 492 + ], + "spans": [ + { + "bbox": [ + 124, + 456, + 527, + 492 + ], + "score": 0.83, + "content": "\\begin{array} { r l } & { \\mathrm { m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ) = \\mathrm { t r } \\big ( \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\cdot \\mathrm { C o v } \\big ( \\nabla \\ell _ { t } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\big ) \\cdot \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) } \\\\ & { \\mathrm { m E x c e s s R i s k } _ { L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ) = \\mathrm { t r } \\big ( \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\cdot \\mathrm { C o v } \\big ( \\nabla \\ell _ { t } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\big ) \\big ) . } \\end{array}", + "type": "interline_equation", + "image_path": "5dfb74d95d1fc63328add574a08cb3c809bf3c428cfacbeb15167eb42464df8d.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 124, + 456, + 527, + 468.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 124, + 468.0, + 527, + 480.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 124, + 480.0, + 527, + 492.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 504, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 457, + 505 + ], + "score": 1.0, + "content": "Proposition 2 (Inconsistency of train-train method). There exists a distribution of tasks", + "type": "text" + }, + { + "bbox": [ + 457, + 493, + 465, + 503 + ], + "score": 0.42, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 492, + 479, + 505 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 479, + 493, + 504, + 503 + ], + "score": 0.87, + "content": "d = 1", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 504, + 504, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 266, + 516 + ], + "score": 1.0, + "content": "satisfying the conditions in Proposition", + "type": "text" + }, + { + "bbox": [ + 267, + 505, + 273, + 514 + ], + "score": 0.31, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 504, + 504, + 516 + ], + "score": 1.0, + "content": "on which the train-train method does not converge to the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 512, + 504, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 512, + 235, + 531 + ], + "score": 1.0, + "content": "best test-time centroid: for any", + "type": "text" + }, + { + "bbox": [ + 235, + 515, + 262, + 526 + ], + "score": 0.9, + "content": "n \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 512, + 299, + 531 + ], + "score": 1.0, + "content": "and any", + "type": "text" + }, + { + "bbox": [ + 299, + 515, + 326, + 525 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 512, + 415, + 531 + ], + "score": 1.0, + "content": ", the estimation error", + "type": "text" + }, + { + "bbox": [ + 415, + 515, + 504, + 528 + ], + "score": 0.91, + "content": "\\lVert \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } - \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) \\rVert", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 103, + 523, + 507, + 545 + ], + "spans": [ + { + "bbox": [ + 103, + 523, + 183, + 545 + ], + "score": 1.0, + "content": "and the excess risk", + "type": "text" + }, + { + "bbox": [ + 183, + 527, + 314, + 541 + ], + "score": 0.9, + "content": "L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) - L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 523, + 431, + 545 + ], + "score": 1.0, + "content": "b are both bounded away from", + "type": "text" + }, + { + "bbox": [ + 431, + 529, + 438, + 537 + ], + "score": 0.34, + "content": "O", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 523, + 507, + 545 + ], + "score": 1.0, + "content": "almost surely as", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 538, + 144, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 140, + 549 + ], + "score": 0.86, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 538, + 144, + 552 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "Propositions 1 and 2 justify the importance of sample splitting: the train-val method converges to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "the best test-time centroid, whereas the train-train method does not converge to the best centroid", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 578, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 421, + 594 + ], + "score": 1.0, + "content": "in general. The reason behind Proposition 1 is simple: the population loss", + "type": "text" + }, + { + "bbox": [ + 422, + 581, + 447, + 591 + ], + "score": 0.87, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 578, + 506, + 594 + ], + "score": 1.0, + "content": "for the train-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 103, + 588, + 508, + 610 + ], + "spans": [ + { + "bbox": [ + 103, + 588, + 299, + 610 + ], + "score": 1.0, + "content": "val method is indeed equal to the test-time loss", + "type": "text" + }, + { + "bbox": [ + 299, + 592, + 323, + 605 + ], + "score": 0.92, + "content": "L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 588, + 508, + 610 + ], + "score": 1.0, + "content": ", making the train-val method a proper ERM", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "for the meta-test time we care about, and thus the consistency and asymptotic normality follow from", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 615, + 392, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 392, + 627 + ], + "score": 1.0, + "content": "classical results for the ERM (e.g. (Van der Vaart, 2000; Liang, 2016)).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 631, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 129, + 625, + 501, + 659 + ], + "spans": [ + { + "bbox": [ + 129, + 625, + 333, + 659 + ], + "score": 1.0, + "content": "ntrast, for the train-train method, its expected loss measures the in-sample prediction error of the per-", + "type": "text" + }, + { + "bbox": [ + 333, + 631, + 354, + 642 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 625, + 428, + 659 + ], + "score": 1.0, + "content": "is in general not predictor, whereas", + "type": "text" + }, + { + "bbox": [ + 449, + 625, + 480, + 659 + ], + "score": 1.0, + "content": "alent to measur", + "type": "text" + }, + { + "bbox": [ + 481, + 631, + 501, + 645 + ], + "score": 0.89, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 644, + 449, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 128, + 655 + ], + "score": 0.83, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 644, + 449, + 658 + ], + "score": 0.88, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 101, + 656, + 507, + 689 + ], + "spans": [ + { + "bbox": [ + 101, + 656, + 236, + 689 + ], + "score": 1.0, + "content": "out-of-sample prediction error. equal in general, which leads to", + "type": "text" + }, + { + "bbox": [ + 257, + 656, + 385, + 689 + ], + "score": 1.0, + "content": "equently, the population minimiconverging to the minimizer of", + "type": "text" + }, + { + "bbox": [ + 407, + 656, + 412, + 689 + ], + "score": 1.0, + "content": "f ,", + "type": "text" + }, + { + "bbox": [ + 412, + 657, + 433, + 671 + ], + "score": 0.91, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 656, + 476, + 669 + ], + "score": 1.0, + "content": "t and Ltr-tr", + "type": "text" + }, + { + "bbox": [ + 433, + 656, + 437, + 689 + ], + "score": 1.0, + "content": "f", + "type": "text" + }, + { + "bbox": [ + 474, + 656, + 507, + 689 + ], + "score": 1.0, + "content": "are note proof", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 236, + 669, + 457, + 684 + ], + "spans": [ + { + "bbox": [ + 236, + 669, + 257, + 682 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 670, + 407, + 680 + ], + "score": 0.87, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 670, + 457, + 684 + ], + "score": 0.91, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 682, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 335, + 695 + ], + "score": 1.0, + "content": "of Proposition 2 constructs a simple counter-example in", + "type": "text" + }, + { + "bbox": [ + 361, + 682, + 506, + 695 + ], + "score": 1.0, + "content": ", but we expect such a mismatch to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 693, + 451, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 451, + 705 + ], + "score": 1.0, + "content": "generally hold in any dimension. Appendix A gives the proofs of Proposition 1 and 2.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 712, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 708, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 344, + 724 + ], + "score": 1.0, + "content": "2These definitions assume that the expectation exists for finite", + "type": "text" + }, + { + "bbox": [ + 345, + 714, + 352, + 721 + ], + "score": 0.84, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 708, + 506, + 724 + ], + "score": 1.0, + "content": "; the more general definition can be found", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 171, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 171, + 732 + ], + "score": 1.0, + "content": "in Appendix A.1.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 394, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 395, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 395, + 95 + ], + "score": 1.0, + "content": "2.1 TASK-ABUNDANT SETTING THROUGH ASYMPTOTIC ANALYSIS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 504, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 441, + 115 + ], + "score": 1.0, + "content": "In this paper we are interested in the task-abundant setting where we fix some finite", + "type": "text" + }, + { + "bbox": [ + 441, + 103, + 465, + 115 + ], + "score": 0.91, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 102, + 495, + 115 + ], + "score": 1.0, + "content": "and let", + "type": "text" + }, + { + "bbox": [ + 495, + 103, + 504, + 113 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "be very large. We analyze such a task-abundant setting through the asymptotic analysis framework,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 124, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 104, + 126, + 357, + 141 + ], + "score": 1.0, + "content": "that is, examine the limiting properties of the estimator (e.g.", + "type": "text" + }, + { + "bbox": [ + 362, + 124, + 506, + 140 + ], + "score": 1.0, + "content": "w {tr-val,tr-tr}) as T . Here we", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 138, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 104, + 138, + 505, + 153 + ], + "score": 1.0, + "content": "set up the basic notation of asymptotic analysis required in this paper. We emphasize that our large", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 115, + 160 + ], + "score": 0.78, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "setting captures practical meta-learning scenarios; for example, 5-way image classification on", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 443, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 311, + 176 + ], + "score": 1.0, + "content": "miniImageNet (Ravi & Larochelle, 2017) contains", + "type": "text" + }, + { + "bbox": [ + 311, + 161, + 328, + 176 + ], + "score": 0.86, + "content": "\\binom { 6 4 } { 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 160, + 443, + 176 + ], + "score": 1.0, + "content": "diverse tasks (at train time).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 102, + 506, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 318, + 199 + ], + "score": 1.0, + "content": "Asymptotic rate of estimation & excess risk Let", + "type": "text" + }, + { + "bbox": [ + 318, + 187, + 326, + 196 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 184, + 483, + 199 + ], + "score": 1.0, + "content": "be any population risk with minimizer", + "type": "text" + }, + { + "bbox": [ + 483, + 188, + 504, + 198 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 233, + 212 + ], + "score": 1.0, + "content": "(which we assume is unique),", + "type": "text" + }, + { + "bbox": [ + 234, + 197, + 248, + 210 + ], + "score": 0.89, + "content": "\\widehat { L } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 198, + 451, + 212 + ], + "score": 1.0, + "content": "be the empirical risk on the observed data from", + "type": "text" + }, + { + "bbox": [ + 451, + 200, + 460, + 209 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 198, + 506, + 212 + ], + "score": 1.0, + "content": "tasks, and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 211, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 107, + 212, + 128, + 225 + ], + "score": 0.89, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 211, + 213, + 225 + ], + "score": 1.0, + "content": "be the minimizer of", + "type": "text" + }, + { + "bbox": [ + 214, + 211, + 228, + 223 + ], + "score": 0.91, + "content": "\\widehat { L } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 211, + 346, + 225 + ], + "score": 1.0, + "content": "(i.e. the ERM). We say that", + "type": "text" + }, + { + "bbox": [ + 346, + 212, + 368, + 225 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 211, + 434, + 225 + ], + "score": 1.0, + "content": "is consistent if", + "type": "text" + }, + { + "bbox": [ + 434, + 212, + 493, + 225 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } \\to \\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 211, + 506, + 225 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 164, + 235 + ], + "score": 1.0, + "content": "probability as", + "type": "text" + }, + { + "bbox": [ + 165, + 225, + 199, + 233 + ], + "score": 0.89, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 223, + 506, + 235 + ], + "score": 1.0, + "content": ". For consistent ERMs, we define its asymptotic parameter estimation error", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 322, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 322, + 245 + ], + "score": 1.0, + "content": "(in MSE loss) and asymptotic excess risk as follows2:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 184, + 506, + 245 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 247, + 433, + 289 + ], + "lines": [ + { + "bbox": [ + 178, + 247, + 433, + 289 + ], + "spans": [ + { + "bbox": [ + 178, + 247, + 433, + 289 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\displaystyle \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\operatorname* { l i m } _ { T \\infty } T \\cdot \\mathbb { E } \\Big [ \\big \\| \\widehat { \\mathbf w } _ { 0 , T } - { \\mathbf w } _ { 0 , \\star } \\big \\| ^ { 2 } \\Big ] } \\\\ & { \\displaystyle \\mathrm { A s y m E x c e s s R i s k } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\operatorname* { l i m } _ { T \\infty } T \\cdot \\mathbb { E } [ L ( \\widehat { \\mathbf w } _ { 0 , T } ) - L ( { \\mathbf w } _ { 0 , \\star } ) ] . } \\end{array}", + "type": "interline_equation", + "image_path": "83649bb287fec750ed8618496a74ca90cfa50a1012e0c2af73d32ac5c1aa24c9.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 178, + 247, + 433, + 261.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 178, + 261.0, + 433, + 275.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 178, + 275.0, + 433, + 289.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 290, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 108, + 289, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 108, + 289, + 436, + 304 + ], + "score": 1.0, + "content": "We emphasize that asymptotic statements are more refined than non-asymptotic", + "type": "text" + }, + { + "bbox": [ + 437, + 291, + 456, + 302 + ], + "score": 0.9, + "content": "O ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 289, + 506, + 304 + ], + "score": 1.0, + "content": "style upper", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 165, + 314 + ], + "score": 1.0, + "content": "bounds in the", + "type": "text" + }, + { + "bbox": [ + 165, + 302, + 203, + 311 + ], + "score": 0.87, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 301, + 452, + 314 + ], + "score": 1.0, + "content": "limit: they already imply the {MSE, excess risk} has order", + "type": "text" + }, + { + "bbox": [ + 452, + 302, + 486, + 313 + ], + "score": 0.93, + "content": "{ \\cal O } ( 1 / T )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 301, + 505, + 314 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 313, + 229, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 229, + 325 + ], + "score": 1.0, + "content": "specifies the leading constant.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 289, + 506, + 325 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 339, + 336, + 352 + ], + "lines": [ + { + "bbox": [ + 104, + 338, + 336, + 354 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 336, + 354 + ], + "score": 1.0, + "content": "3 THE IMPORTANCE OF SAMPLE SPLITTING", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 101, + 354, + 511, + 389 + ], + "spans": [ + { + "bbox": [ + 101, + 354, + 180, + 389 + ], + "score": 1.0, + "content": "We begin by ana", + "type": "text" + }, + { + "bbox": [ + 229, + 354, + 243, + 389 + ], + "score": 1.0, + "content": "her", + "type": "text" + }, + { + "bbox": [ + 288, + 354, + 305, + 389 + ], + "score": 1.0, + "content": "hms", + "type": "text" + }, + { + "bbox": [ + 305, + 361, + 355, + 378 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - v a l , t r - t r } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 354, + 405, + 389 + ], + "score": 1.0, + "content": "defined in", + "type": "text" + }, + { + "bbox": [ + 442, + 354, + 511, + 389 + ], + "score": 1.0, + "content": "rge to the best", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 181, + 376, + 442, + 389 + ], + "spans": [ + { + "bbox": [ + 181, + 376, + 229, + 389 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 , \\star } \\big ( \\lambda ; n _ { 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 376, + 287, + 389 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ( \\lambda ; n )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 377, + 442, + 387 + ], + "score": 0.9, + "content": "T \\to \\infty", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 386, + 437, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 422, + 402 + ], + "score": 1.0, + "content": "situation where we do not make structural assumptions on the data distribution", + "type": "text" + }, + { + "bbox": [ + 422, + 389, + 432, + 399 + ], + "score": 0.86, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 386, + 437, + 402 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 101, + 354, + 511, + 402 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 400, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 425, + 414 + ], + "score": 1.0, + "content": "Proposition 1 (Consistency and asymptotics of train-val method). Suppose", + "type": "text" + }, + { + "bbox": [ + 425, + 399, + 502, + 414 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] ~ \\succ ~ \\mathbf { 0 } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 400, + 505, + 414 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 412, + 504, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 185, + 427 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\left\\| \\mathbf { x } \\right\\| ^ { 4 } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 412, + 204, + 428 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 205, + 414, + 296, + 428 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\| \\mathbf { x } y \\| ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 412, + 382, + 428 + ], + "score": 1.0, + "content": "for almost surely all", + "type": "text" + }, + { + "bbox": [ + 383, + 415, + 415, + 426 + ], + "score": 0.91, + "content": "p _ { t } \\sim \\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 412, + 476, + 428 + ], + "score": 1.0, + "content": ". Then for any", + "type": "text" + }, + { + "bbox": [ + 476, + 415, + 504, + 425 + ], + "score": 0.87, + "content": "\\lambda > 0", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 424, + 507, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 141, + 443 + ], + "score": 1.0, + "content": "and any", + "type": "text" + }, + { + "bbox": [ + 141, + 428, + 174, + 439 + ], + "score": 0.9, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 424, + 215, + 443 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 215, + 429, + 268, + 439 + ], + "score": 0.89, + "content": "n _ { 1 } + n _ { 2 } = n ,", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 424, + 355, + 443 + ], + "score": 1.0, + "content": ", the train-val method", + "type": "text" + }, + { + "bbox": [ + 355, + 427, + 382, + 441 + ], + "score": 0.89, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 424, + 507, + 443 + ], + "score": 1.0, + "content": "converges to the best test-time", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 102, + 435, + 415, + 458 + ], + "spans": [ + { + "bbox": [ + 102, + 435, + 146, + 458 + ], + "score": 1.0, + "content": "centroid:", + "type": "text" + }, + { + "bbox": [ + 146, + 440, + 236, + 455 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } \\to \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 435, + 304, + 458 + ], + "score": 1.0, + "content": "almost surely as", + "type": "text" + }, + { + "bbox": [ + 304, + 441, + 338, + 451 + ], + "score": 0.89, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 435, + 415, + 458 + ], + "score": 1.0, + "content": "b . Further, we have", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 102, + 399, + 507, + 458 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 456, + 527, + 492 + ], + "lines": [ + { + "bbox": [ + 124, + 456, + 527, + 492 + ], + "spans": [ + { + "bbox": [ + 124, + 456, + 527, + 492 + ], + "score": 0.83, + "content": "\\begin{array} { r l } & { \\mathrm { m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ) = \\mathrm { t r } \\big ( \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\cdot \\mathrm { C o v } \\big ( \\nabla \\ell _ { t } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\big ) \\cdot \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) } \\\\ & { \\mathrm { m E x c e s s R i s k } _ { L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ) = \\mathrm { t r } \\big ( \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\cdot \\mathrm { C o v } \\big ( \\nabla \\ell _ { t } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\big ) \\big ) . } \\end{array}", + "type": "interline_equation", + "image_path": "5dfb74d95d1fc63328add574a08cb3c809bf3c428cfacbeb15167eb42464df8d.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 124, + 456, + 527, + 468.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 124, + 468.0, + 527, + 480.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 124, + 480.0, + 527, + 492.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 492, + 504, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 457, + 505 + ], + "score": 1.0, + "content": "Proposition 2 (Inconsistency of train-train method). There exists a distribution of tasks", + "type": "text" + }, + { + "bbox": [ + 457, + 493, + 465, + 503 + ], + "score": 0.42, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 492, + 479, + 505 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 479, + 493, + 504, + 503 + ], + "score": 0.87, + "content": "d = 1", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 504, + 504, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 266, + 516 + ], + "score": 1.0, + "content": "satisfying the conditions in Proposition", + "type": "text" + }, + { + "bbox": [ + 267, + 505, + 273, + 514 + ], + "score": 0.31, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 504, + 504, + 516 + ], + "score": 1.0, + "content": "on which the train-train method does not converge to the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 512, + 504, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 512, + 235, + 531 + ], + "score": 1.0, + "content": "best test-time centroid: for any", + "type": "text" + }, + { + "bbox": [ + 235, + 515, + 262, + 526 + ], + "score": 0.9, + "content": "n \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 512, + 299, + 531 + ], + "score": 1.0, + "content": "and any", + "type": "text" + }, + { + "bbox": [ + 299, + 515, + 326, + 525 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 512, + 415, + 531 + ], + "score": 1.0, + "content": ", the estimation error", + "type": "text" + }, + { + "bbox": [ + 415, + 515, + 504, + 528 + ], + "score": 0.91, + "content": "\\lVert \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } - \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) \\rVert", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 103, + 523, + 507, + 545 + ], + "spans": [ + { + "bbox": [ + 103, + 523, + 183, + 545 + ], + "score": 1.0, + "content": "and the excess risk", + "type": "text" + }, + { + "bbox": [ + 183, + 527, + 314, + 541 + ], + "score": 0.9, + "content": "L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) - L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 523, + 431, + 545 + ], + "score": 1.0, + "content": "b are both bounded away from", + "type": "text" + }, + { + "bbox": [ + 431, + 529, + 438, + 537 + ], + "score": 0.34, + "content": "O", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 523, + 507, + 545 + ], + "score": 1.0, + "content": "almost surely as", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 538, + 144, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 140, + 549 + ], + "score": 0.86, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 538, + 144, + 552 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 103, + 492, + 507, + 552 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "Propositions 1 and 2 justify the importance of sample splitting: the train-val method converges to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "the best test-time centroid, whereas the train-train method does not converge to the best centroid", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 578, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 421, + 594 + ], + "score": 1.0, + "content": "in general. The reason behind Proposition 1 is simple: the population loss", + "type": "text" + }, + { + "bbox": [ + 422, + 581, + 447, + 591 + ], + "score": 0.87, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 578, + 506, + 594 + ], + "score": 1.0, + "content": "for the train-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 103, + 588, + 508, + 610 + ], + "spans": [ + { + "bbox": [ + 103, + 588, + 299, + 610 + ], + "score": 1.0, + "content": "val method is indeed equal to the test-time loss", + "type": "text" + }, + { + "bbox": [ + 299, + 592, + 323, + 605 + ], + "score": 0.92, + "content": "L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 588, + 508, + 610 + ], + "score": 1.0, + "content": ", making the train-val method a proper ERM", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "for the meta-test time we care about, and thus the consistency and asymptotic normality follow from", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 615, + 392, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 392, + 627 + ], + "score": 1.0, + "content": "classical results for the ERM (e.g. (Van der Vaart, 2000; Liang, 2016)).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 103, + 558, + 508, + 627 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 631, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 129, + 625, + 501, + 659 + ], + "spans": [ + { + "bbox": [ + 129, + 625, + 333, + 659 + ], + "score": 1.0, + "content": "ntrast, for the train-train method, its expected loss measures the in-sample prediction error of the per-", + "type": "text" + }, + { + "bbox": [ + 333, + 631, + 354, + 642 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 625, + 428, + 659 + ], + "score": 1.0, + "content": "is in general not predictor, whereas", + "type": "text" + }, + { + "bbox": [ + 449, + 625, + 480, + 659 + ], + "score": 1.0, + "content": "alent to measur", + "type": "text" + }, + { + "bbox": [ + 481, + 631, + 501, + 645 + ], + "score": 0.89, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 644, + 449, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 128, + 655 + ], + "score": 0.83, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 644, + 449, + 658 + ], + "score": 0.88, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 101, + 656, + 507, + 689 + ], + "spans": [ + { + "bbox": [ + 101, + 656, + 236, + 689 + ], + "score": 1.0, + "content": "out-of-sample prediction error. equal in general, which leads to", + "type": "text" + }, + { + "bbox": [ + 257, + 656, + 385, + 689 + ], + "score": 1.0, + "content": "equently, the population minimiconverging to the minimizer of", + "type": "text" + }, + { + "bbox": [ + 407, + 656, + 412, + 689 + ], + "score": 1.0, + "content": "f ,", + "type": "text" + }, + { + "bbox": [ + 412, + 657, + 433, + 671 + ], + "score": 0.91, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 656, + 476, + 669 + ], + "score": 1.0, + "content": "t and Ltr-tr", + "type": "text" + }, + { + "bbox": [ + 433, + 656, + 437, + 689 + ], + "score": 1.0, + "content": "f", + "type": "text" + }, + { + "bbox": [ + 474, + 656, + 507, + 689 + ], + "score": 1.0, + "content": "are note proof", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 236, + 669, + 457, + 684 + ], + "spans": [ + { + "bbox": [ + 236, + 669, + 257, + 682 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 670, + 407, + 680 + ], + "score": 0.87, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 670, + 457, + 684 + ], + "score": 0.91, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 682, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 335, + 695 + ], + "score": 1.0, + "content": "of Proposition 2 constructs a simple counter-example in", + "type": "text" + }, + { + "bbox": [ + 361, + 682, + 506, + 695 + ], + "score": 1.0, + "content": ", but we expect such a mismatch to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 693, + 451, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 451, + 705 + ], + "score": 1.0, + "content": "generally hold in any dimension. Appendix A gives the proofs of Proposition 1 and 2.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5, + "bbox_fs": [ + 101, + 625, + 507, + 705 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 338, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 339, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 339, + 95 + ], + "score": 1.0, + "content": "4 IS SAMPLE SPLITTING ALWAYS OPTIMAL?", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "Proposition 2 states a negative result for the train-train method, showing that it does not converge", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 129 + ], + "score": 1.0, + "content": "to the best test-time centroid without further assumptions on the data distribution. However, such", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "a negative result is inherently worst-case, and does not preclude the possibility that there exists a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "data distribution on which the train-train method can also work well. In this section, we construct", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 161 + ], + "score": 1.0, + "content": "a simple data distribution in which we can analyze the performance of both the train-val and the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "train-train methods more explicitly, showing that sample splitting is indeed not optimal, and the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 247, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 247, + 182 + ], + "score": 1.0, + "content": "train-train method can work better.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "Realizable linear model We consider the following instantiation of the (generic) data distribution", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 295, + 217 + ], + "score": 1.0, + "content": "assumption in (1): We assume that each task", + "type": "text" + }, + { + "bbox": [ + 295, + 207, + 306, + 216 + ], + "score": 0.85, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 204, + 378, + 217 + ], + "score": 1.0, + "content": "is specified by a", + "type": "text" + }, + { + "bbox": [ + 379, + 204, + 420, + 216 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { t } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "sampled from some", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 154, + 229 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 155, + 217, + 164, + 226 + ], + "score": 0.5, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "(overloading notation), and the observed data follows the noiseless linear model with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 227, + 218, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 200, + 240 + ], + "score": 1.0, + "content": "ground truth parameter", + "type": "text" + }, + { + "bbox": [ + 201, + 229, + 214, + 238 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 227, + 218, + 240 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 279, + 237, + 331, + 250 + ], + "lines": [ + { + "bbox": [ + 279, + 237, + 331, + 250 + ], + "spans": [ + { + "bbox": [ + 279, + 237, + 331, + 250 + ], + "score": 0.92, + "content": "\\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } ,", + "type": "interline_equation", + "image_path": "ae7ad1bd8e781e160e1ef8b27cfc314e349cdb68e8212e3c5dbfc86cd2563062.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 279, + 237, + 331, + 250 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 175, + 268 + ], + "score": 1.0, + "content": "where the inputs", + "type": "text" + }, + { + "bbox": [ + 175, + 251, + 240, + 265 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { t , i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 250, + 335, + 268 + ], + "score": 1.0, + "content": "and are independent of", + "type": "text" + }, + { + "bbox": [ + 336, + 255, + 348, + 264 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 250, + 419, + 268 + ], + "score": 1.0, + "content": ". We assume that", + "type": "text" + }, + { + "bbox": [ + 419, + 254, + 428, + 263 + ], + "score": 0.53, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 250, + 507, + 268 + ], + "score": 1.0, + "content": "has a finite second", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 264, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 264, + 160, + 280 + ], + "score": 1.0, + "content": "moment (i.e.", + "type": "text" + }, + { + "bbox": [ + 161, + 266, + 248, + 279 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\left\\| \\mathbf { w } _ { t } \\right\\| ^ { 2 } ] < \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 264, + 317, + 280 + ], + "score": 1.0, + "content": ". Note that when", + "type": "text" + }, + { + "bbox": [ + 318, + 267, + 344, + 278 + ], + "score": 0.91, + "content": "n \\geq d", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 264, + 476, + 280 + ], + "score": 1.0, + "content": ", we are able to perfectly recover", + "type": "text" + }, + { + "bbox": [ + 477, + 268, + 489, + 278 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 264, + 506, + 280 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 119, + 291 + ], + "score": 1.0, + "content": "all", + "type": "text" + }, + { + "bbox": [ + 119, + 279, + 124, + 288 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 277, + 506, + 291 + ], + "score": 1.0, + "content": "(by solving linear equations), therefore the problem in the inner loop is in a sense “easy”; when", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 132, + 299 + ], + "score": 0.89, + "content": "n < d", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 288, + 487, + 303 + ], + "score": 1.0, + "content": ", we cannot hope for such perfect recoveries. Our goal in the outer loop is to find the best", + "type": "text" + }, + { + "bbox": [ + 487, + 290, + 501, + 300 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 288, + 506, + 303 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 102, + 295, + 476, + 318 + ], + "spans": [ + { + "bbox": [ + 102, + 295, + 208, + 318 + ], + "score": 1.0, + "content": "measured by the test loss", + "type": "text" + }, + { + "bbox": [ + 209, + 300, + 229, + 313 + ], + "score": 0.92, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 295, + 351, + 318 + ], + "score": 1.0, + "content": "for the train-train method and", + "type": "text" + }, + { + "bbox": [ + 351, + 300, + 375, + 313 + ], + "score": 0.92, + "content": "L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 295, + 476, + 318 + ], + "score": 1.0, + "content": "for the train-val method.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 105, + 324, + 458, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 459, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 124, + 335 + ], + "score": 1.0, + "content": "4.1", + "type": "text" + }, + { + "bbox": [ + 131, + 325, + 459, + 334 + ], + "score": 1.0, + "content": "COMPARISON OF TRAIN-TRAIN AND TRAIN-VAL ON THE REALIZABLE MODEL", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 504, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 504, + 357 + ], + "score": 1.0, + "content": "We begin by showing that on this task and data distribution, the population best centroids", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 349, + 509, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 253, + 369 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 , \\star } ( \\bar { \\lambda _ { \\lambda } } , n ) \\ \\stackrel { - } { = } \\ \\mathrm { a r g } \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 349, + 340, + 374 + ], + "score": 1.0, + "content": "is the same for any", + "type": "text" + }, + { + "bbox": [ + 340, + 356, + 365, + 367 + ], + "score": 0.94, + "content": "( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 349, + 509, + 374 + ], + "score": 1.0, + "content": ", and both the train-val and train-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 367, + 426, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 426, + 381 + ], + "score": 1.0, + "content": "train methods are asymptotically consistent and converge to same best centroid.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "Theorem 3 (Consistency of both train-val and train-train methods). On the realizable linear", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 392, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 278, + 403 + ], + "score": 1.0, + "content": "model (6), the test-time meta loss for all", + "type": "text" + }, + { + "bbox": [ + 279, + 392, + 309, + 402 + ], + "score": 0.9, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 392, + 343, + 403 + ], + "score": 1.0, + "content": "and all", + "type": "text" + }, + { + "bbox": [ + 344, + 394, + 351, + 402 + ], + "score": 0.51, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 392, + 505, + 403 + ], + "score": 1.0, + "content": "is minimized at the same point, that", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 402, + 285, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 285, + 415 + ], + "score": 1.0, + "content": "is, the mean of the ground truth parameters:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 415, + 458, + 435 + ], + "lines": [ + { + "bbox": [ + 152, + 415, + 458, + 435 + ], + "spans": [ + { + "bbox": [ + 152, + 415, + 458, + 435 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { a r g } \\mathrm { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) = \\mathbf { w } _ { 0 , \\star } : = \\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\mathbf { w } _ { t } ] , \\ : \\ : \\ : f o r \\ : a l l \\ : \\lambda > 0 , \\ : n . } \\end{array}", + "type": "interline_equation", + "image_path": "88f06094d1a11f77740196e9e76c9cb06fef56a34e407e0f664cfcf1fc68b818.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 152, + 415, + 458, + 435 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 436, + 504, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 450 + ], + "score": 1.0, + "content": "Further, both the train-val method and the train-train method are asymptotically consistent: for any", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 447, + 237, + 460 + ], + "spans": [ + { + "bbox": [ + 107, + 447, + 132, + 458 + ], + "score": 0.73, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 447, + 135, + 460 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 136, + 449, + 143, + 457 + ], + "score": 0.38, + "content": "n ,", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 447, + 164, + 460 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 165, + 447, + 198, + 459 + ], + "score": 0.92, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 447, + 237, + 460 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 461, + 466, + 476 + ], + "lines": [ + { + "bbox": [ + 138, + 461, + 466, + 476 + ], + "spans": [ + { + "bbox": [ + 138, + 461, + 466, + 476 + ], + "score": 0.78, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\to \\mathbf { w } _ { 0 , \\star } \\mathrm { a n d } \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\to \\mathbf { w } _ { 0 , \\star } a l m o s t s u r e l y a s T \\to \\infty", + "type": "interline_equation", + "image_path": "871718c43d94873bcb6c09ee713aa6b405ab88c79226fd17f39aa1cd11ac8e4c.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 138, + 461, + 466, + 476 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "See its proof in Appendix B.1. Theorem 3 shows that both train-val and train-train methods are", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 347, + 505 + ], + "score": 1.0, + "content": "consistent, and they converge to the same optimal parameter", + "type": "text" + }, + { + "bbox": [ + 347, + 494, + 367, + 505 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 492, + 452, + 505 + ], + "score": 1.0, + "content": "which is the mean of", + "type": "text" + }, + { + "bbox": [ + 452, + 494, + 465, + 504 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 492, + 506, + 505 + ], + "score": 1.0, + "content": ". This is a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 445, + 516 + ], + "score": 1.0, + "content": "consequence of the good structure in our realizable linear model (6): at a high level,", + "type": "text" + }, + { + "bbox": [ + 445, + 506, + 465, + 516 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "is indeed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 513, + 464, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 447, + 528 + ], + "score": 1.0, + "content": "the best centroid since it has (on average) the closest distance to a randomly sampled", + "type": "text" + }, + { + "bbox": [ + 447, + 516, + 459, + 525 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 513, + 464, + 528 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 531, + 504, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "Theoerem 3 suggests that we are now able to compare performance of the two methods based on their", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 322, + 555 + ], + "score": 1.0, + "content": "asymptotic parameter estimation error (for estimating", + "type": "text" + }, + { + "bbox": [ + 322, + 543, + 343, + 555 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "). Throughout the rest of this section, let", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 556, + 357, + 577 + ], + "lines": [ + { + "bbox": [ + 253, + 556, + 357, + 577 + ], + "spans": [ + { + "bbox": [ + 253, + 556, + 357, + 577 + ], + "score": 0.94, + "content": "R ^ { 2 } : = \\mathbb { E } \\Big [ \\| \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } \\Big ]", + "type": "interline_equation", + "image_path": "fff4b9983f40b12a78b5191337f2160224b357560aa1cbf29ce80afa8eccce49.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 253, + 556, + 357, + 577 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 384, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 384, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 197, + 590 + ], + "score": 1.0, + "content": "denote the variance of", + "type": "text" + }, + { + "bbox": [ + 197, + 579, + 210, + 588 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 576, + 384, + 590 + ], + "score": 1.0, + "content": ". We are now ready to state our main result.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "Theorem 4 (Comparison of asymptotic MSE of the train-val and train-train methods). In the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 601, + 504, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 244, + 614 + ], + "score": 1.0, + "content": "high-dimensional limiting regime", + "type": "text" + }, + { + "bbox": [ + 245, + 602, + 290, + 613 + ], + "score": 0.77, + "content": "d , n \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 601, + 295, + 614 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 295, + 601, + 380, + 613 + ], + "score": 0.89, + "content": "d / n \\to \\gamma \\in ( 0 , \\infty ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 601, + 504, + 614 + ], + "score": 1.0, + "content": ", the optimal rate of the train-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 612, + 392, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 311, + 624 + ], + "score": 1.0, + "content": "train method obtained by tuning the regularization", + "type": "text" + }, + { + "bbox": [ + 311, + 613, + 356, + 624 + ], + "score": 0.91, + "content": "\\lambda \\in ( 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 612, + 392, + 624 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 111, + 626, + 501, + 653 + ], + "spans": [ + { + "bbox": [ + 111, + 626, + 501, + 653 + ], + "score": 0.89, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r . t r } ( n ; \\lambda ) \\big ) = \\operatorname* { i n f } _ { \\lambda > 0 } \\rho _ { \\lambda , \\gamma } R ^ { 2 } \\overset { ( \\star ) } { \\leq } \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} \\cdot R ^ { 2 } ,", + "type": "inline_equation", + "image_path": "d4741728f6f40e120e773a35f7baeedf2ae2b486ceb4945321bb89439c74765e.jpg" + } + ], + "index": 40 + }, + { + "bbox": [ + 103, + 654, + 503, + 671 + ], + "spans": [ + { + "bbox": [ + 103, + 654, + 132, + 671 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 656, + 503, + 671 + ], + "score": 0.82, + "content": "\\rho _ { \\lambda , \\gamma } = 4 \\gamma ^ { 2 } \\big [ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\big ] / ( \\lambda + \\gamma + 1 - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\big ( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\big ) ^ { 3 / 2 }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 264, + 682 + ], + "score": 1.0, + "content": "and the inequality becomes equality at", + "type": "text" + }, + { + "bbox": [ + 264, + 671, + 289, + 680 + ], + "score": 0.87, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 668, + 506, + 682 + ], + "score": 1.0, + "content": ". In contrast, the optimal rate of the train-val method", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 680, + 378, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 219, + 692 + ], + "score": 1.0, + "content": "by tuning the regularization", + "type": "text" + }, + { + "bbox": [ + 220, + 680, + 266, + 692 + ], + "score": 0.95, + "content": "\\lambda \\in ( 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 680, + 326, + 692 + ], + "score": 1.0, + "content": "and split ratio", + "type": "text" + }, + { + "bbox": [ + 326, + 680, + 366, + 692 + ], + "score": 0.92, + "content": "s \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 680, + 378, + 692 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 694, + 473, + 708 + ], + "lines": [ + { + "bbox": [ + 136, + 694, + 473, + 708 + ], + "spans": [ + { + "bbox": [ + 136, + 694, + 473, + 708 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\operatorname* { i n f } _ { \\lambda > 0 , s \\in ( 0 , 1 ) } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r \\cdot v a l } ( n s , n ( 1 - s ) ; \\lambda ) \\big ) = ( 1 + \\gamma ) R ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "1a1af797ce829bd4902f539780125f02e2fa08ca8929b1c1e72b6ea7db9ad4a6.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 136, + 694, + 473, + 708 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 709, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 104, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 115, + 723 + ], + "score": 1.0, + "content": "A", + "type": "text" + }, + { + "bbox": [ + 116, + 709, + 307, + 722 + ], + "score": 0.68, + "content": "\\mathrm { ; \\ m a x } \\{ 1 + 5 \\gamma / 2 7 , 5 / 2 7 + \\gamma \\} < 1 + \\gamma ( \\forall \\gamma > 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 708, + 506, + 723 + ], + "score": 1.0, + "content": ", the train-train method achieves a strictly better", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 479, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 298, + 733 + ], + "score": 1.0, + "content": "asymptotic rate than the train-val method when", + "type": "text" + }, + { + "bbox": [ + 298, + 722, + 305, + 730 + ], + "score": 0.74, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 720, + 324, + 733 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 324, + 723, + 330, + 730 + ], + "score": 0.46, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 720, + 479, + 733 + ], + "score": 1.0, + "content": "are optimally tuned in both methods.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 761 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 338, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 339, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 339, + 95 + ], + "score": 1.0, + "content": "4 IS SAMPLE SPLITTING ALWAYS OPTIMAL?", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 119 + ], + "score": 1.0, + "content": "Proposition 2 states a negative result for the train-train method, showing that it does not converge", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 116, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 129 + ], + "score": 1.0, + "content": "to the best test-time centroid without further assumptions on the data distribution. However, such", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "a negative result is inherently worst-case, and does not preclude the possibility that there exists a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "data distribution on which the train-train method can also work well. In this section, we construct", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 161 + ], + "score": 1.0, + "content": "a simple data distribution in which we can analyze the performance of both the train-val and the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "train-train methods more explicitly, showing that sample splitting is indeed not optimal, and the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 247, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 247, + 182 + ], + "score": 1.0, + "content": "train-train method can work better.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 105, + 506, + 182 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "Realizable linear model We consider the following instantiation of the (generic) data distribution", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 295, + 217 + ], + "score": 1.0, + "content": "assumption in (1): We assume that each task", + "type": "text" + }, + { + "bbox": [ + 295, + 207, + 306, + 216 + ], + "score": 0.85, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 204, + 378, + 217 + ], + "score": 1.0, + "content": "is specified by a", + "type": "text" + }, + { + "bbox": [ + 379, + 204, + 420, + 216 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { t } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "sampled from some", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 154, + 229 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 155, + 217, + 164, + 226 + ], + "score": 0.5, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "(overloading notation), and the observed data follows the noiseless linear model with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 227, + 218, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 200, + 240 + ], + "score": 1.0, + "content": "ground truth parameter", + "type": "text" + }, + { + "bbox": [ + 201, + 229, + 214, + 238 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 227, + 218, + 240 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 193, + 506, + 240 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 279, + 237, + 331, + 250 + ], + "lines": [ + { + "bbox": [ + 279, + 237, + 331, + 250 + ], + "spans": [ + { + "bbox": [ + 279, + 237, + 331, + 250 + ], + "score": 0.92, + "content": "\\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } ,", + "type": "interline_equation", + "image_path": "ae7ad1bd8e781e160e1ef8b27cfc314e349cdb68e8212e3c5dbfc86cd2563062.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 279, + 237, + 331, + 250 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 507, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 175, + 268 + ], + "score": 1.0, + "content": "where the inputs", + "type": "text" + }, + { + "bbox": [ + 175, + 251, + 240, + 265 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { t , i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 250, + 335, + 268 + ], + "score": 1.0, + "content": "and are independent of", + "type": "text" + }, + { + "bbox": [ + 336, + 255, + 348, + 264 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 250, + 419, + 268 + ], + "score": 1.0, + "content": ". We assume that", + "type": "text" + }, + { + "bbox": [ + 419, + 254, + 428, + 263 + ], + "score": 0.53, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 250, + 507, + 268 + ], + "score": 1.0, + "content": "has a finite second", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 264, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 264, + 160, + 280 + ], + "score": 1.0, + "content": "moment (i.e.", + "type": "text" + }, + { + "bbox": [ + 161, + 266, + 248, + 279 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\left\\| \\mathbf { w } _ { t } \\right\\| ^ { 2 } ] < \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 264, + 317, + 280 + ], + "score": 1.0, + "content": ". Note that when", + "type": "text" + }, + { + "bbox": [ + 318, + 267, + 344, + 278 + ], + "score": 0.91, + "content": "n \\geq d", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 264, + 476, + 280 + ], + "score": 1.0, + "content": ", we are able to perfectly recover", + "type": "text" + }, + { + "bbox": [ + 477, + 268, + 489, + 278 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 264, + 506, + 280 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 119, + 291 + ], + "score": 1.0, + "content": "all", + "type": "text" + }, + { + "bbox": [ + 119, + 279, + 124, + 288 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 277, + 506, + 291 + ], + "score": 1.0, + "content": "(by solving linear equations), therefore the problem in the inner loop is in a sense “easy”; when", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 132, + 299 + ], + "score": 0.89, + "content": "n < d", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 288, + 487, + 303 + ], + "score": 1.0, + "content": ", we cannot hope for such perfect recoveries. Our goal in the outer loop is to find the best", + "type": "text" + }, + { + "bbox": [ + 487, + 290, + 501, + 300 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 288, + 506, + 303 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 102, + 295, + 476, + 318 + ], + "spans": [ + { + "bbox": [ + 102, + 295, + 208, + 318 + ], + "score": 1.0, + "content": "measured by the test loss", + "type": "text" + }, + { + "bbox": [ + 209, + 300, + 229, + 313 + ], + "score": 0.92, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 295, + 351, + 318 + ], + "score": 1.0, + "content": "for the train-train method and", + "type": "text" + }, + { + "bbox": [ + 351, + 300, + 375, + 313 + ], + "score": 0.92, + "content": "L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 295, + 476, + 318 + ], + "score": 1.0, + "content": "for the train-val method.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 102, + 250, + 507, + 318 + ] + }, + { + "type": "title", + "bbox": [ + 105, + 324, + 458, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 459, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 124, + 335 + ], + "score": 1.0, + "content": "4.1", + "type": "text" + }, + { + "bbox": [ + 131, + 325, + 459, + 334 + ], + "score": 1.0, + "content": "COMPARISON OF TRAIN-TRAIN AND TRAIN-VAL ON THE REALIZABLE MODEL", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 504, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 504, + 357 + ], + "score": 1.0, + "content": "We begin by showing that on this task and data distribution, the population best centroids", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 349, + 509, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 253, + 369 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 , \\star } ( \\bar { \\lambda _ { \\lambda } } , n ) \\ \\stackrel { - } { = } \\ \\mathrm { a r g } \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 349, + 340, + 374 + ], + "score": 1.0, + "content": "is the same for any", + "type": "text" + }, + { + "bbox": [ + 340, + 356, + 365, + 367 + ], + "score": 0.94, + "content": "( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 349, + 509, + 374 + ], + "score": 1.0, + "content": ", and both the train-val and train-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 367, + 426, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 426, + 381 + ], + "score": 1.0, + "content": "train methods are asymptotically consistent and converge to same best centroid.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 343, + 509, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "Theorem 3 (Consistency of both train-val and train-train methods). On the realizable linear", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 392, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 278, + 403 + ], + "score": 1.0, + "content": "model (6), the test-time meta loss for all", + "type": "text" + }, + { + "bbox": [ + 279, + 392, + 309, + 402 + ], + "score": 0.9, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 392, + 343, + 403 + ], + "score": 1.0, + "content": "and all", + "type": "text" + }, + { + "bbox": [ + 344, + 394, + 351, + 402 + ], + "score": 0.51, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 392, + 505, + 403 + ], + "score": 1.0, + "content": "is minimized at the same point, that", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 402, + 285, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 285, + 415 + ], + "score": 1.0, + "content": "is, the mean of the ground truth parameters:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 380, + 505, + 415 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 415, + 458, + 435 + ], + "lines": [ + { + "bbox": [ + 152, + 415, + 458, + 435 + ], + "spans": [ + { + "bbox": [ + 152, + 415, + 458, + 435 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { a r g } \\mathrm { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) = \\mathbf { w } _ { 0 , \\star } : = \\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\mathbf { w } _ { t } ] , \\ : \\ : \\ : f o r \\ : a l l \\ : \\lambda > 0 , \\ : n . } \\end{array}", + "type": "interline_equation", + "image_path": "88f06094d1a11f77740196e9e76c9cb06fef56a34e407e0f664cfcf1fc68b818.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 152, + 415, + 458, + 435 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 436, + 504, + 459 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 450 + ], + "score": 1.0, + "content": "Further, both the train-val method and the train-train method are asymptotically consistent: for any", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 447, + 237, + 460 + ], + "spans": [ + { + "bbox": [ + 107, + 447, + 132, + 458 + ], + "score": 0.73, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 447, + 135, + 460 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 136, + 449, + 143, + 457 + ], + "score": 0.38, + "content": "n ,", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 447, + 164, + 460 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 165, + 447, + 198, + 459 + ], + "score": 0.92, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 447, + 237, + 460 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 434, + 506, + 460 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 461, + 466, + 476 + ], + "lines": [ + { + "bbox": [ + 138, + 461, + 466, + 476 + ], + "spans": [ + { + "bbox": [ + 138, + 461, + 466, + 476 + ], + "score": 0.78, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\to \\mathbf { w } _ { 0 , \\star } \\mathrm { a n d } \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\to \\mathbf { w } _ { 0 , \\star } a l m o s t s u r e l y a s T \\to \\infty", + "type": "interline_equation", + "image_path": "871718c43d94873bcb6c09ee713aa6b405ab88c79226fd17f39aa1cd11ac8e4c.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 138, + 461, + 466, + 476 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "See its proof in Appendix B.1. Theorem 3 shows that both train-val and train-train methods are", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 347, + 505 + ], + "score": 1.0, + "content": "consistent, and they converge to the same optimal parameter", + "type": "text" + }, + { + "bbox": [ + 347, + 494, + 367, + 505 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 492, + 452, + 505 + ], + "score": 1.0, + "content": "which is the mean of", + "type": "text" + }, + { + "bbox": [ + 452, + 494, + 465, + 504 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 492, + 506, + 505 + ], + "score": 1.0, + "content": ". This is a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 445, + 516 + ], + "score": 1.0, + "content": "consequence of the good structure in our realizable linear model (6): at a high level,", + "type": "text" + }, + { + "bbox": [ + 445, + 506, + 465, + 516 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "is indeed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 513, + 464, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 447, + 528 + ], + "score": 1.0, + "content": "the best centroid since it has (on average) the closest distance to a randomly sampled", + "type": "text" + }, + { + "bbox": [ + 447, + 516, + 459, + 525 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 513, + 464, + 528 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 482, + 506, + 528 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 531, + 504, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "Theoerem 3 suggests that we are now able to compare performance of the two methods based on their", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 322, + 555 + ], + "score": 1.0, + "content": "asymptotic parameter estimation error (for estimating", + "type": "text" + }, + { + "bbox": [ + 322, + 543, + 343, + 555 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "). Throughout the rest of this section, let", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 531, + 506, + 555 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 556, + 357, + 577 + ], + "lines": [ + { + "bbox": [ + 253, + 556, + 357, + 577 + ], + "spans": [ + { + "bbox": [ + 253, + 556, + 357, + 577 + ], + "score": 0.94, + "content": "R ^ { 2 } : = \\mathbb { E } \\Big [ \\| \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } \\Big ]", + "type": "interline_equation", + "image_path": "fff4b9983f40b12a78b5191337f2160224b357560aa1cbf29ce80afa8eccce49.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 253, + 556, + 357, + 577 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 577, + 384, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 384, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 197, + 590 + ], + "score": 1.0, + "content": "denote the variance of", + "type": "text" + }, + { + "bbox": [ + 197, + 579, + 210, + 588 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 576, + 384, + 590 + ], + "score": 1.0, + "content": ". We are now ready to state our main result.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 576, + 384, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "Theorem 4 (Comparison of asymptotic MSE of the train-val and train-train methods). In the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 601, + 504, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 244, + 614 + ], + "score": 1.0, + "content": "high-dimensional limiting regime", + "type": "text" + }, + { + "bbox": [ + 245, + 602, + 290, + 613 + ], + "score": 0.77, + "content": "d , n \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 601, + 295, + 614 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 295, + 601, + 380, + 613 + ], + "score": 0.89, + "content": "d / n \\to \\gamma \\in ( 0 , \\infty ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 601, + 504, + 614 + ], + "score": 1.0, + "content": ", the optimal rate of the train-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 612, + 392, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 311, + 624 + ], + "score": 1.0, + "content": "train method obtained by tuning the regularization", + "type": "text" + }, + { + "bbox": [ + 311, + 613, + 356, + 624 + ], + "score": 0.91, + "content": "\\lambda \\in ( 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 612, + 392, + 624 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 590, + 505, + 624 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 111, + 626, + 501, + 653 + ], + "spans": [ + { + "bbox": [ + 111, + 626, + 501, + 653 + ], + "score": 0.89, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r . t r } ( n ; \\lambda ) \\big ) = \\operatorname* { i n f } _ { \\lambda > 0 } \\rho _ { \\lambda , \\gamma } R ^ { 2 } \\overset { ( \\star ) } { \\leq } \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} \\cdot R ^ { 2 } ,", + "type": "inline_equation", + "image_path": "d4741728f6f40e120e773a35f7baeedf2ae2b486ceb4945321bb89439c74765e.jpg" + } + ], + "index": 40 + }, + { + "bbox": [ + 103, + 654, + 503, + 671 + ], + "spans": [ + { + "bbox": [ + 103, + 654, + 132, + 671 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 656, + 503, + 671 + ], + "score": 0.82, + "content": "\\rho _ { \\lambda , \\gamma } = 4 \\gamma ^ { 2 } \\big [ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\big ] / ( \\lambda + \\gamma + 1 - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\big ( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\big ) ^ { 3 / 2 }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 668, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 264, + 682 + ], + "score": 1.0, + "content": "and the inequality becomes equality at", + "type": "text" + }, + { + "bbox": [ + 264, + 671, + 289, + 680 + ], + "score": 0.87, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 668, + 506, + 682 + ], + "score": 1.0, + "content": ". In contrast, the optimal rate of the train-val method", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 680, + 378, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 219, + 692 + ], + "score": 1.0, + "content": "by tuning the regularization", + "type": "text" + }, + { + "bbox": [ + 220, + 680, + 266, + 692 + ], + "score": 0.95, + "content": "\\lambda \\in ( 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 680, + 326, + 692 + ], + "score": 1.0, + "content": "and split ratio", + "type": "text" + }, + { + "bbox": [ + 326, + 680, + 366, + 692 + ], + "score": 0.92, + "content": "s \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 680, + 378, + 692 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 103, + 626, + 506, + 692 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 694, + 473, + 708 + ], + "lines": [ + { + "bbox": [ + 136, + 694, + 473, + 708 + ], + "spans": [ + { + "bbox": [ + 136, + 694, + 473, + 708 + ], + "score": 0.84, + "content": "\\begin{array} { r } { \\operatorname* { i n f } _ { \\lambda > 0 , s \\in ( 0 , 1 ) } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r \\cdot v a l } ( n s , n ( 1 - s ) ; \\lambda ) \\big ) = ( 1 + \\gamma ) R ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "1a1af797ce829bd4902f539780125f02e2fa08ca8929b1c1e72b6ea7db9ad4a6.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 136, + 694, + 473, + 708 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 709, + 507, + 732 + ], + "lines": [ + { + "bbox": [ + 104, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 115, + 723 + ], + "score": 1.0, + "content": "A", + "type": "text" + }, + { + "bbox": [ + 116, + 709, + 307, + 722 + ], + "score": 0.68, + "content": "\\mathrm { ; \\ m a x } \\{ 1 + 5 \\gamma / 2 7 , 5 / 2 7 + \\gamma \\} < 1 + \\gamma ( \\forall \\gamma > 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 708, + 506, + 723 + ], + "score": 1.0, + "content": ", the train-train method achieves a strictly better", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 479, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 298, + 733 + ], + "score": 1.0, + "content": "asymptotic rate than the train-val method when", + "type": "text" + }, + { + "bbox": [ + 298, + 722, + 305, + 730 + ], + "score": 0.74, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 720, + 324, + 733 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 324, + 723, + 330, + 730 + ], + "score": 0.46, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 720, + 479, + 733 + ], + "score": 1.0, + "content": "are optimally tuned in both methods.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 104, + 708, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 364, + 95 + ], + "score": 1.0, + "content": "Implications Comparison between the analytical upper bound", + "type": "text" + }, + { + "bbox": [ + 364, + 82, + 489, + 95 + ], + "score": 0.91, + "content": "\\operatorname* { m a x } \\{ 1 + 5 \\gamma / 2 7 , 5 / 2 7 + \\gamma \\} R ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 149, + 105 + ], + "score": 1.0, + "content": "train-train", + "type": "text" + }, + { + "bbox": [ + 149, + 93, + 192, + 105 + ], + "score": 0.92, + "content": "( 1 + \\gamma ) R ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 93, + 504, + 105 + ], + "score": 1.0, + "content": "for train-val in Theorem 4 shows that the train-train method achieves a strictly", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 332, + 117 + ], + "score": 1.0, + "content": "better asymptotic MSE than the train-val method, for any", + "type": "text" + }, + { + "bbox": [ + 333, + 104, + 361, + 116 + ], + "score": 0.92, + "content": "\\gamma > 0 ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 104, + 505, + 117 + ], + "score": 1.0, + "content": ". (See Figure 1(a) for a visualization", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 291, + 127 + ], + "score": 1.0, + "content": "of the exact optimal rates and the upper bound", + "type": "text" + }, + { + "bbox": [ + 291, + 115, + 304, + 127 + ], + "score": 0.82, + "content": "( \\star )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 115, + 505, + 127 + ], + "score": 1.0, + "content": ".) Perhaps surprisingly, this suggests that the train-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "train method is not only “correct” (converging to the best centroid), but can be even better than the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 148 + ], + "score": 1.0, + "content": "train-val method, when the data is structured. While the “correctness” of the train-train method is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 160 + ], + "score": 1.0, + "content": "a consequence of the realizable linear model, we believe its superior asymptotic MSE is due to the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 488, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 488, + 170 + ], + "score": 1.0, + "content": "fact that the train-train method is able to use the data more efficiently than the train-val method.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 189 + ], + "score": 1.0, + "content": "Also, while we reached such a conclusion on this particular problem of linear centroid meta-learning,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 504, + 199 + ], + "score": 1.0, + "content": "we suspect that this phenomenon to be not restricted to this problem, and may hold in more general-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "ity when data is structured or when the signal-to-noise ratio is high. As we are going to see, our real", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "data experiments in Section 5.2 indeed suggests that the superiority of the train-train method may", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 220, + 344, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 344, + 232 + ], + "score": 1.0, + "content": "also hold on real meta-learning tasks with neural networks.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 247, + 284, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 247, + 285, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 285, + 259 + ], + "score": 1.0, + "content": "4.2 PROOF HIGHLIGHTS OF THEOREM 4", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 268, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 282 + ], + "score": 1.0, + "content": "Here we sketch the technical highlights in proving Theorem 4. We defer the full proof to Ap-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 279, + 156, + 291 + ], + "spans": [ + { + "bbox": [ + 104, + 279, + 156, + 291 + ], + "score": 1.0, + "content": "pendix B.5.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 504, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "score": 1.0, + "content": "Exact asymptotic MSE for both methods The proof begins by calculating the exact asymptotic", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 379, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 379, + 329 + ], + "score": 1.0, + "content": "MSE for both methods, which we provide in the following theorem.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 105, + 332, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 472, + 347 + ], + "score": 1.0, + "content": "Lemma 5 (Exact asymptotic rates of the train-val and train-train methods). Suppose that", + "type": "text" + }, + { + "bbox": [ + 473, + 334, + 505, + 344 + ], + "score": 0.84, + "content": "\\rho _ { \\sf t r - t r } =", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 343, + 498, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 498, + 377 + ], + "score": 0.42, + "content": "\\begin{array} { r l r } { \\frac { \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } ( \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n ) } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } \\ \\mathrm { ~ } a n d \\rho _ { \\mathrm { t r - s i l } } } & { = } & { \\frac { \\mathbb { E } \\left[ \\left( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ^ { - 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\end{array}", + "type": "inline_equation", + "image_path": "f265136fcd6c95bb3f5d58349ecc03bc7d98be979b7adda9233ce5b0138ff73a.jpg" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 374, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 180, + 392 + ], + "score": 1.0, + "content": "where for any n,", + "type": "text" + }, + { + "bbox": [ + 181, + 376, + 265, + 391 + ], + "score": 0.84, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 374, + 426, + 392 + ], + "score": 1.0, + "content": "denotes the eigenvalues of the matrix", + "type": "text" + }, + { + "bbox": [ + 426, + 378, + 501, + 392 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 374, + 505, + 392 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 388, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 175, + 405 + ], + "score": 1.0, + "content": "where we recall", + "type": "text" + }, + { + "bbox": [ + 175, + 391, + 227, + 402 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 388, + 506, + 405 + ], + "score": 1.0, + "content": "is a random matrix with i.i.d. standard Gaussian entries. For any", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 401, + 325, + 416 + ], + "spans": [ + { + "bbox": [ + 107, + 404, + 131, + 415 + ], + "score": 0.93, + "content": "( n , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 401, + 325, + 416 + ], + "score": 1.0, + "content": ", we have on the realizable linear model (6) that", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 421, + 480, + 447 + ], + "lines": [ + { + "bbox": [ + 130, + 421, + 480, + 447 + ], + "spans": [ + { + "bbox": [ + 130, + 421, + 480, + 447 + ], + "score": 0.92, + "content": "-", + "type": "interline_equation", + "image_path": "c9e5d8ece7446d38d9ce220c8a2d09dd3d6c04518109cf7ea78b1d75acdc9fd1.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 130, + 421, + 480, + 447 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "See its proof in Appendix B.2. Lemma 5 follows straightforwardly from the classical asymptotic", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "result for empirical risk minimization (Van der Vaart, 2000) and simplifications of certain matrix", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 480, + 439, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 372, + 495 + ], + "score": 1.0, + "content": "traces in terms of the spectrum of the empirical covariance matri", + "type": "text" + }, + { + "bbox": [ + 366, + 480, + 439, + 497 + ], + "score": 1.0, + "content": "x 1n Pnt=1 XtX>t .", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 508, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "Simplifying and optimizing the asymptotic MSEs The asymptotic MSEs of the train-train and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 517, + 504, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 439, + 533 + ], + "score": 1.0, + "content": "train-val method in Lemma 5 are not yet directly comparable, as the quantities", + "type": "text" + }, + { + "bbox": [ + 439, + 520, + 460, + 531 + ], + "score": 0.84, + "content": "\\rho _ { \\tt t r - \\tt t r }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 517, + 480, + 533 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 480, + 521, + 504, + 531 + ], + "score": 0.71, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "depend on the spectrum of the empirical covariance matrix as well as additional tunable parameters", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 138, + 554 + ], + "score": 1.0, + "content": "such as", + "type": "text" + }, + { + "bbox": [ + 139, + 543, + 145, + 551 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 540, + 164, + 554 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 164, + 543, + 198, + 553 + ], + "score": 0.93, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "(for the train-val method). Towards proving Theorem 4, we further simplify", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "the rates and analyze the optimal tunable parameters, using separate strategies for the two methods:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 575, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 430, + 587 + ], + "score": 1.0, + "content": "For the train-val method, we show that the optimal tunable parameters for any", + "type": "text" + }, + { + "bbox": [ + 430, + 577, + 453, + 587 + ], + "score": 0.89, + "content": "( n , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "is taken at a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 585, + 504, + 600 + ], + "spans": [ + { + "bbox": [ + 114, + 585, + 167, + 600 + ], + "score": 1.0, + "content": "special case", + "type": "text" + }, + { + "bbox": [ + 168, + 588, + 199, + 596 + ], + "score": 0.89, + "content": "\\lambda = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 585, + 218, + 600 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 588, + 290, + 599 + ], + "score": 0.94, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 585, + 438, + 600 + ], + "score": 1.0, + "content": ", at which the rates only depends on", + "type": "text" + }, + { + "bbox": [ + 439, + 586, + 504, + 600 + ], + "score": 0.71, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 116, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "through its rank (and thus has a simple closed-form). We state this result in Corollary 8. The", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 609, + 337, + 622 + ], + "score": 1.0, + "content": "proof builds on algebraic manipulations of the quantity", + "type": "text" + }, + { + "bbox": [ + 337, + 611, + 360, + 622 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 609, + 505, + 622 + ], + "score": 1.0, + "content": ", and can be found in Appendix B.3.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 110, + 624, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 110, + 624, + 468, + 639 + ], + "score": 1.0, + "content": "• For the train-train method, we apply random matrix theory to simplify the spectrum of", + "type": "text" + }, + { + "bbox": [ + 469, + 627, + 504, + 639 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 246, + 649 + ], + "score": 1.0, + "content": "in the proportional limit where", + "type": "text" + }, + { + "bbox": [ + 246, + 639, + 291, + 649 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 636, + 311, + 649 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 311, + 638, + 328, + 649 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "stays a constant (Bai & Silverstein, 2010;", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 476, + 660 + ], + "score": 1.0, + "content": "Anderson et al., 2010), and obtain a closed-form expression of the asymptotic MSE for any", + "type": "text" + }, + { + "bbox": [ + 477, + 651, + 501, + 659 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 648, + 505, + 660 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 117, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 117, + 659, + 282, + 671 + ], + "score": 1.0, + "content": "which we can analytically optimize over", + "type": "text" + }, + { + "bbox": [ + 283, + 662, + 289, + 669 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 659, + 505, + 671 + ], + "score": 1.0, + "content": ". We state this result in Theorem 9. The proof builds", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 670, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 116, + 670, + 506, + 682 + ], + "score": 1.0, + "content": "on the Steiltjes transform and its “derivative trick” (Dobriban et al., 2018), and is deferred to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 681, + 178, + 693 + ], + "spans": [ + { + "bbox": [ + 116, + 681, + 178, + 693 + ], + "score": 1.0, + "content": "Appendix B.4.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "3The same conclusion also holds for the asymptotic excess risk, as the Hessian of the excess risk is a rescaled", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 207, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 207, + 732 + ], + "score": 1.0, + "content": "identity, see Appendix B.2.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 364, + 95 + ], + "score": 1.0, + "content": "Implications Comparison between the analytical upper bound", + "type": "text" + }, + { + "bbox": [ + 364, + 82, + 489, + 95 + ], + "score": 0.91, + "content": "\\operatorname* { m a x } \\{ 1 + 5 \\gamma / 2 7 , 5 / 2 7 + \\gamma \\} R ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 149, + 105 + ], + "score": 1.0, + "content": "train-train", + "type": "text" + }, + { + "bbox": [ + 149, + 93, + 192, + 105 + ], + "score": 0.92, + "content": "( 1 + \\gamma ) R ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 93, + 504, + 105 + ], + "score": 1.0, + "content": "for train-val in Theorem 4 shows that the train-train method achieves a strictly", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 332, + 117 + ], + "score": 1.0, + "content": "better asymptotic MSE than the train-val method, for any", + "type": "text" + }, + { + "bbox": [ + 333, + 104, + 361, + 116 + ], + "score": 0.92, + "content": "\\gamma > 0 ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 104, + 505, + 117 + ], + "score": 1.0, + "content": ". (See Figure 1(a) for a visualization", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 291, + 127 + ], + "score": 1.0, + "content": "of the exact optimal rates and the upper bound", + "type": "text" + }, + { + "bbox": [ + 291, + 115, + 304, + 127 + ], + "score": 0.82, + "content": "( \\star )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 115, + 505, + 127 + ], + "score": 1.0, + "content": ".) Perhaps surprisingly, this suggests that the train-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "train method is not only “correct” (converging to the best centroid), but can be even better than the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 148 + ], + "score": 1.0, + "content": "train-val method, when the data is structured. While the “correctness” of the train-train method is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 160 + ], + "score": 1.0, + "content": "a consequence of the realizable linear model, we believe its superior asymptotic MSE is due to the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 488, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 488, + 170 + ], + "score": 1.0, + "content": "fact that the train-train method is able to use the data more efficiently than the train-val method.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 81, + 505, + 170 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 189 + ], + "score": 1.0, + "content": "Also, while we reached such a conclusion on this particular problem of linear centroid meta-learning,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 504, + 199 + ], + "score": 1.0, + "content": "we suspect that this phenomenon to be not restricted to this problem, and may hold in more general-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "ity when data is structured or when the signal-to-noise ratio is high. As we are going to see, our real", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "data experiments in Section 5.2 indeed suggests that the superiority of the train-train method may", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 220, + 344, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 344, + 232 + ], + "score": 1.0, + "content": "also hold on real meta-learning tasks with neural networks.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 174, + 505, + 232 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 247, + 284, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 247, + 285, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 285, + 259 + ], + "score": 1.0, + "content": "4.2 PROOF HIGHLIGHTS OF THEOREM 4", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 268, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 282 + ], + "score": 1.0, + "content": "Here we sketch the technical highlights in proving Theorem 4. We defer the full proof to Ap-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 279, + 156, + 291 + ], + "spans": [ + { + "bbox": [ + 104, + 279, + 156, + 291 + ], + "score": 1.0, + "content": "pendix B.5.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 104, + 266, + 505, + 291 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 504, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "score": 1.0, + "content": "Exact asymptotic MSE for both methods The proof begins by calculating the exact asymptotic", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 379, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 379, + 329 + ], + "score": 1.0, + "content": "MSE for both methods, which we provide in the following theorem.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 303, + 506, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 332, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 472, + 347 + ], + "score": 1.0, + "content": "Lemma 5 (Exact asymptotic rates of the train-val and train-train methods). Suppose that", + "type": "text" + }, + { + "bbox": [ + 473, + 334, + 505, + 344 + ], + "score": 0.84, + "content": "\\rho _ { \\sf t r - t r } =", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 343, + 498, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 498, + 377 + ], + "score": 0.42, + "content": "\\begin{array} { r l r } { \\frac { \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } ( \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n ) } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } \\ \\mathrm { ~ } a n d \\rho _ { \\mathrm { t r - s i l } } } & { = } & { \\frac { \\mathbb { E } \\left[ \\left( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ^ { - 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\end{array}", + "type": "inline_equation", + "image_path": "f265136fcd6c95bb3f5d58349ecc03bc7d98be979b7adda9233ce5b0138ff73a.jpg" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 374, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 180, + 392 + ], + "score": 1.0, + "content": "where for any n,", + "type": "text" + }, + { + "bbox": [ + 181, + 376, + 265, + 391 + ], + "score": 0.84, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 374, + 426, + 392 + ], + "score": 1.0, + "content": "denotes the eigenvalues of the matrix", + "type": "text" + }, + { + "bbox": [ + 426, + 378, + 501, + 392 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 374, + 505, + 392 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 388, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 175, + 405 + ], + "score": 1.0, + "content": "where we recall", + "type": "text" + }, + { + "bbox": [ + 175, + 391, + 227, + 402 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 388, + 506, + 405 + ], + "score": 1.0, + "content": "is a random matrix with i.i.d. standard Gaussian entries. For any", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 401, + 325, + 416 + ], + "spans": [ + { + "bbox": [ + 107, + 404, + 131, + 415 + ], + "score": 0.93, + "content": "( n , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 401, + 325, + 416 + ], + "score": 1.0, + "content": ", we have on the realizable linear model (6) that", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 329, + 506, + 416 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 421, + 480, + 447 + ], + "lines": [ + { + "bbox": [ + 130, + 421, + 480, + 447 + ], + "spans": [ + { + "bbox": [ + 130, + 421, + 480, + 447 + ], + "score": 0.92, + "content": "-", + "type": "interline_equation", + "image_path": "c9e5d8ece7446d38d9ce220c8a2d09dd3d6c04518109cf7ea78b1d75acdc9fd1.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 130, + 421, + 480, + 447 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "See its proof in Appendix B.2. Lemma 5 follows straightforwardly from the classical asymptotic", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "result for empirical risk minimization (Van der Vaart, 2000) and simplifications of certain matrix", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 480, + 439, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 372, + 495 + ], + "score": 1.0, + "content": "traces in terms of the spectrum of the empirical covariance matri", + "type": "text" + }, + { + "bbox": [ + 366, + 480, + 439, + 497 + ], + "score": 1.0, + "content": "x 1n Pnt=1 XtX>t .", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 460, + 506, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 508, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "Simplifying and optimizing the asymptotic MSEs The asymptotic MSEs of the train-train and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 517, + 504, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 439, + 533 + ], + "score": 1.0, + "content": "train-val method in Lemma 5 are not yet directly comparable, as the quantities", + "type": "text" + }, + { + "bbox": [ + 439, + 520, + 460, + 531 + ], + "score": 0.84, + "content": "\\rho _ { \\tt t r - \\tt t r }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 517, + 480, + 533 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 480, + 521, + 504, + 531 + ], + "score": 0.71, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "depend on the spectrum of the empirical covariance matrix as well as additional tunable parameters", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 540, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 138, + 554 + ], + "score": 1.0, + "content": "such as", + "type": "text" + }, + { + "bbox": [ + 139, + 543, + 145, + 551 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 540, + 164, + 554 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 164, + 543, + 198, + 553 + ], + "score": 0.93, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 540, + 505, + 554 + ], + "score": 1.0, + "content": "(for the train-val method). Towards proving Theorem 4, we further simplify", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "the rates and analyze the optimal tunable parameters, using separate strategies for the two methods:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 507, + 505, + 565 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 575, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 430, + 587 + ], + "score": 1.0, + "content": "For the train-val method, we show that the optimal tunable parameters for any", + "type": "text" + }, + { + "bbox": [ + 430, + 577, + 453, + 587 + ], + "score": 0.89, + "content": "( n , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "is taken at a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 585, + 504, + 600 + ], + "spans": [ + { + "bbox": [ + 114, + 585, + 167, + 600 + ], + "score": 1.0, + "content": "special case", + "type": "text" + }, + { + "bbox": [ + 168, + 588, + 199, + 596 + ], + "score": 0.89, + "content": "\\lambda = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 585, + 218, + 600 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 588, + 290, + 599 + ], + "score": 0.94, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 585, + 438, + 600 + ], + "score": 1.0, + "content": ", at which the rates only depends on", + "type": "text" + }, + { + "bbox": [ + 439, + 586, + 504, + 600 + ], + "score": 0.71, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 116, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "through its rank (and thus has a simple closed-form). We state this result in Corollary 8. The", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 609, + 337, + 622 + ], + "score": 1.0, + "content": "proof builds on algebraic manipulations of the quantity", + "type": "text" + }, + { + "bbox": [ + 337, + 611, + 360, + 622 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 609, + 505, + 622 + ], + "score": 1.0, + "content": ", and can be found in Appendix B.3.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 574, + 506, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 110, + 624, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 110, + 624, + 468, + 639 + ], + "score": 1.0, + "content": "• For the train-train method, we apply random matrix theory to simplify the spectrum of", + "type": "text" + }, + { + "bbox": [ + 469, + 627, + 504, + 639 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 246, + 649 + ], + "score": 1.0, + "content": "in the proportional limit where", + "type": "text" + }, + { + "bbox": [ + 246, + 639, + 291, + 649 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 636, + 311, + 649 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 311, + 638, + 328, + 649 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "stays a constant (Bai & Silverstein, 2010;", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 476, + 660 + ], + "score": 1.0, + "content": "Anderson et al., 2010), and obtain a closed-form expression of the asymptotic MSE for any", + "type": "text" + }, + { + "bbox": [ + 477, + 651, + 501, + 659 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 648, + 505, + 660 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 117, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 117, + 659, + 282, + 671 + ], + "score": 1.0, + "content": "which we can analytically optimize over", + "type": "text" + }, + { + "bbox": [ + 283, + 662, + 289, + 669 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 659, + 505, + 671 + ], + "score": 1.0, + "content": ". We state this result in Theorem 9. The proof builds", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 670, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 116, + 670, + 506, + 682 + ], + "score": 1.0, + "content": "on the Steiltjes transform and its “derivative trick” (Dobriban et al., 2018), and is deferred to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 681, + 178, + 693 + ], + "spans": [ + { + "bbox": [ + 116, + 681, + 178, + 693 + ], + "score": 1.0, + "content": "Appendix B.4.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 110, + 624, + 506, + 693 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 201, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 202, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 202, + 96 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 107, + 106, + 192, + 118 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 192, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 192, + 119 + ], + "score": 1.0, + "content": "5.1 SIMULATIONS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 127, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 107, + 128, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 107, + 128, + 505, + 139 + ], + "score": 1.0, + "content": "We experiment on the realizable linear model studied in Section 4. Recall that the observed data of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 138, + 224, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 121, + 151 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 140, + 126, + 149 + ], + "score": 0.79, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 138, + 224, + 151 + ], + "score": 1.0, + "content": "-th task are generated as", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 157, + 384, + 174 + ], + "lines": [ + { + "bbox": [ + 226, + 157, + 384, + 174 + ], + "spans": [ + { + "bbox": [ + 226, + 157, + 384, + 174 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } , \\quad \\mathrm { w i t h } \\quad \\mathbf { x } _ { t , i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( 0 , \\mathbf { I } _ { d } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "6922c0dda557eb20eff27d709c6b68919692b7ea968138a6b0f71d892983dfb4.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 226, + 157, + 384, + 174 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 104, + 181, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 218, + 199 + ], + "score": 1.0, + "content": "We independently generate", + "type": "text" + }, + { + "bbox": [ + 219, + 182, + 314, + 197 + ], + "score": 0.8, + "content": "\\mathbf { w } _ { t } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { w } _ { 0 , \\star } , \\mathbf { I } _ { d } / \\sqrt { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 181, + 345, + 199 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 345, + 186, + 366, + 197 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 181, + 506, + 199 + ], + "score": 1.0, + "content": "is the linear centroid and the cor-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 195, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 153, + 210 + ], + "score": 1.0, + "content": "responding", + "type": "text" + }, + { + "bbox": [ + 154, + 196, + 186, + 207 + ], + "score": 0.91, + "content": "R ^ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 195, + 368, + 210 + ], + "score": 1.0, + "content": "here. The goal is to learn the linear centroid", + "type": "text" + }, + { + "bbox": [ + 369, + 198, + 389, + 209 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 195, + 506, + 210 + ], + "score": 1.0, + "content": "using the train-train method", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 101, + 207, + 507, + 244 + ], + "spans": [ + { + "bbox": [ + 101, + 207, + 172, + 244 + ], + "score": 1.0, + "content": "and train-val meare quadratic in", + "type": "text" + }, + { + "bbox": [ + 186, + 207, + 259, + 244 + ], + "score": 1.0, + "content": "d, i.e., minimizing , therefore, we ca", + "type": "text" + }, + { + "bbox": [ + 259, + 208, + 281, + 223 + ], + "score": 0.92, + "content": "\\widehat { L } _ { T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 207, + 298, + 244 + ], + "score": 1.0, + "content": "and the", + "type": "text" + }, + { + "bbox": [ + 299, + 208, + 324, + 223 + ], + "score": 0.92, + "content": "\\widehat { L } _ { T } ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 207, + 382, + 244 + ], + "score": 1.0, + "content": ", respectively. orm solutions", + "type": "text" + }, + { + "bbox": [ + 432, + 207, + 439, + 244 + ], + "score": 1.0, + "content": "h .", + "type": "text" + }, + { + "bbox": [ + 439, + 208, + 461, + 223 + ], + "score": 0.92, + "content": "\\widehat { L } _ { T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 207, + 478, + 244 + ], + "score": 1.0, + "content": "and eas", + "type": "text" + }, + { + "bbox": [ + 479, + 208, + 493, + 223 + ], + "score": 0.88, + "content": "\\widehat { L } _ { T } ^ { \\mathrm { t r } . }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 207, + 507, + 244 + ], + "score": 1.0, + "content": "-valthe", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 172, + 220, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 172, + 226, + 186, + 236 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 220, + 506, + 237 + ], + "score": 1.0, + "content": "w {tr-tr,tr-val} We m ure", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 101, + 230, + 470, + 260 + ], + "spans": [ + { + "bbox": [ + 101, + 230, + 340, + 260 + ], + "score": 1.0, + "content": "performance of train-train and train-val methods using the", + "type": "text" + }, + { + "bbox": [ + 340, + 240, + 350, + 251 + ], + "score": 0.86, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 230, + 374, + 260 + ], + "score": 1.0, + "content": "-error", + "type": "text" + }, + { + "bbox": [ + 375, + 238, + 470, + 254 + ], + "score": 0.86, + "content": "\\lVert \\mathbf { w } _ { 0 , \\star } - \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} } \\rVert ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "score": 1.0, + "content": "We present the comparison among train-train and train-val methods in Figure 1 with scatter plots", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "representing the simulation outputs under different settings. Across all the simulations, we well-tune", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 280, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 221, + 291 + ], + "score": 1.0, + "content": "the regularization coefficient", + "type": "text" + }, + { + "bbox": [ + 222, + 281, + 228, + 290 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 280, + 435, + 291 + ], + "score": 1.0, + "content": "in the train-train method, and use a sufficiently large", + "type": "text" + }, + { + "bbox": [ + 435, + 280, + 480, + 290 + ], + "score": 0.89, + "content": "\\lambda = 1 0 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 280, + 505, + 291 + ], + "score": 1.0, + "content": "in the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 291, + 504, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 504, + 303 + ], + "score": 1.0, + "content": "train-val method according to Corollary 8. The simulated results concentrate around the reference", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 302, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 314 + ], + "score": 1.0, + "content": "curves corresponding to our theoretical findings. This corroborates our analyses and demonstrates", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 312, + 408, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 408, + 325 + ], + "score": 1.0, + "content": "the better performance of train-train method on the realizable linear model.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 328, + 504, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 504, + 342 + ], + "score": 1.0, + "content": "We additionally investigate the effect of averaging the loss over multiple splits in the train-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "val method (a “cross-validation” type loss) rather than the vanilla single split. We show that such", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "cross-validation can indeed improve over the vanilla single-split train-val method. We also experi-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 363, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 374 + ], + "score": 1.0, + "content": "ment with the stronger “leave-one-out” style cross-validation and show that it achieves better MSEs", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 373, + 321, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 321, + 386 + ], + "score": 1.0, + "content": "than the constant-fold cross-validation (Appendix E).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "image", + "bbox": [ + 110, + 401, + 494, + 512 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 401, + 494, + 512 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 401, + 494, + 512 + ], + "spans": [ + { + "bbox": [ + 110, + 401, + 494, + 512 + ], + "score": 0.971, + "type": "image", + "image_path": "8f9f3cbc3586094e8344e1fc3ef4c0539ad59faad6af8ba3292317a176303ce0.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 110, + 401, + 494, + 438.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 110, + 438.0, + 494, + 475.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 110, + 475.0, + 494, + 512.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 520, + 506, + 603 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 518, + 507, + 536 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 277, + 536 + ], + "score": 1.0, + "content": "Figure 1: Panel (a) presents the optimal As", + "type": "text" + }, + { + "bbox": [ + 277, + 520, + 334, + 533 + ], + "score": 0.34, + "content": "\\mathrm { \\prime m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 518, + 507, + 536 + ], + "score": 1.0, + "content": "(blue) in Theorem 9 via grid search, and the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 529, + 507, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 138, + 547 + ], + "score": 1.0, + "content": "optimal", + "type": "text" + }, + { + "bbox": [ + 139, + 532, + 211, + 545 + ], + "score": 0.54, + "content": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 529, + 285, + 547 + ], + "score": 1.0, + "content": "in Corollary 8 with", + "type": "text" + }, + { + "bbox": [ + 286, + 533, + 316, + 543 + ], + "score": 0.9, + "content": "n _ { 1 } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 529, + 366, + 547 + ], + "score": 1.0, + "content": "(orange) and", + "type": "text" + }, + { + "bbox": [ + 366, + 533, + 397, + 543 + ], + "score": 0.89, + "content": "n _ { 1 } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 529, + 507, + 547 + ], + "score": 1.0, + "content": "(green), as well as the upper", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 101, + 538, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 101, + 538, + 143, + 564 + ], + "score": 1.0, + "content": "bound of", + "type": "text" + }, + { + "bbox": [ + 144, + 546, + 214, + 558 + ], + "score": 0.77, + "content": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 538, + 409, + 564 + ], + "score": 1.0, + "content": "(magenta) in Corollary 4. The optimal AsymMSE", + "type": "text" + }, + { + "bbox": [ + 410, + 543, + 459, + 558 + ], + "score": 0.62, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} } )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 538, + 505, + 564 + ], + "score": 1.0, + "content": "are used as", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 101, + 551, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 101, + 551, + 313, + 579 + ], + "score": 1.0, + "content": "b reference curves in plots (b) and (c). Panel (b) plots the", + "type": "text" + }, + { + "bbox": [ + 313, + 560, + 322, + 569 + ], + "score": 0.85, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 551, + 354, + 579 + ], + "score": 1.0, + "content": "-error of", + "type": "text" + }, + { + "bbox": [ + 355, + 557, + 400, + 572 + ], + "score": 0.89, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 551, + 506, + 579 + ], + "score": 1.0, + "content": "b the total number of tasks", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 568, + 412, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 383, + 581 + ], + "score": 1.0, + "content": "b increases from 20 to 1000 with an increment of 20. We fix data dimension", + "type": "text" + }, + { + "bbox": [ + 383, + 570, + 412, + 579 + ], + "score": 0.87, + "content": "d = 6 0", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 579, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 107, + 580, + 136, + 589 + ], + "score": 0.89, + "content": "n = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 579, + 147, + 611 + ], + "score": 1.0, + "content": ". F of", + "type": "text" + }, + { + "bbox": [ + 192, + 579, + 235, + 611 + ], + "score": 1.0, + "content": "val method, as the ratio", + "type": "text" + }, + { + "bbox": [ + 252, + 579, + 300, + 611 + ], + "score": 1.0, + "content": "xperiment on varies from 0", + "type": "text" + }, + { + "bbox": [ + 301, + 580, + 330, + 589 + ], + "score": 0.91, + "content": "n _ { 1 } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 580, + 375, + 589 + ], + "score": 0.91, + "content": "{ n } _ { 1 } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 579, + 493, + 611 + ], + "score": 1.0, + "content": "(c) shows the scaled (by are fixed).", + "type": "text" + }, + { + "bbox": [ + 493, + 580, + 501, + 588 + ], + "score": 0.72, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 579, + 505, + 611 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 589, + 405, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 115, + 601 + ], + "score": 0.87, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 589, + 192, + 604 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 591, + 251, + 603 + ], + "score": 0.89, + "content": "d / n", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 592, + 349, + 601 + ], + "score": 0.86, + "content": "n = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 592, + 405, + 601 + ], + "score": 0.89, + "content": "T = 1 0 0 0", + "type": "inline_equation" + } + ], + "index": 30 + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 108, + 631, + 280, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 631, + 281, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 281, + 642 + ], + "score": 1.0, + "content": "5.2 FEW-SHOT IMAGE CLASSIFICATION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 652, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 106, + 651, + 504, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 504, + 664 + ], + "score": 1.0, + "content": "We further investigate the comparison between the train-train and train-val type methods in few-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 663, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 505, + 675 + ], + "score": 1.0, + "content": "shot image classification on miniImageNet (Ravi & Larochelle, 2017) and tieredImageNet (Ren", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 672, + 159, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 159, + 686 + ], + "score": 1.0, + "content": "et al., 2018).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 711 + ], + "score": 1.0, + "content": "Methods We instantiate the train-train and train-val method in the centroid meta-learning setting", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "with a ridge solver. The methods are almost exactly the same as in our theoretical setting in (2)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 347, + 733 + ], + "score": 1.0, + "content": "and (3), with the only differences being that the parameters", + "type": "text" + }, + { + "bbox": [ + 347, + 722, + 360, + 732 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 720, + 407, + 733 + ], + "score": 1.0, + "content": "(and hence", + "type": "text" + }, + { + "bbox": [ + 408, + 722, + 422, + 732 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 720, + 505, + 733 + ], + "score": 1.0, + "content": ") parametrize a deep", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 201, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 202, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 202, + 96 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 107, + 106, + 192, + 118 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 192, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 192, + 119 + ], + "score": 1.0, + "content": "5.1 SIMULATIONS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 127, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 107, + 128, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 107, + 128, + 505, + 139 + ], + "score": 1.0, + "content": "We experiment on the realizable linear model studied in Section 4. Recall that the observed data of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 138, + 224, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 121, + 151 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 140, + 126, + 149 + ], + "score": 0.79, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 138, + 224, + 151 + ], + "score": 1.0, + "content": "-th task are generated as", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 128, + 505, + 151 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 157, + 384, + 174 + ], + "lines": [ + { + "bbox": [ + 226, + 157, + 384, + 174 + ], + "spans": [ + { + "bbox": [ + 226, + 157, + 384, + 174 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } , \\quad \\mathrm { w i t h } \\quad \\mathbf { x } _ { t , i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( 0 , \\mathbf { I } _ { d } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "6922c0dda557eb20eff27d709c6b68919692b7ea968138a6b0f71d892983dfb4.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 226, + 157, + 384, + 174 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 104, + 181, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 104, + 181, + 218, + 199 + ], + "score": 1.0, + "content": "We independently generate", + "type": "text" + }, + { + "bbox": [ + 219, + 182, + 314, + 197 + ], + "score": 0.8, + "content": "\\mathbf { w } _ { t } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { w } _ { 0 , \\star } , \\mathbf { I } _ { d } / \\sqrt { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 181, + 345, + 199 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 345, + 186, + 366, + 197 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 181, + 506, + 199 + ], + "score": 1.0, + "content": "is the linear centroid and the cor-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 195, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 153, + 210 + ], + "score": 1.0, + "content": "responding", + "type": "text" + }, + { + "bbox": [ + 154, + 196, + 186, + 207 + ], + "score": 0.91, + "content": "R ^ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 195, + 368, + 210 + ], + "score": 1.0, + "content": "here. The goal is to learn the linear centroid", + "type": "text" + }, + { + "bbox": [ + 369, + 198, + 389, + 209 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 195, + 506, + 210 + ], + "score": 1.0, + "content": "using the train-train method", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 101, + 207, + 507, + 244 + ], + "spans": [ + { + "bbox": [ + 101, + 207, + 172, + 244 + ], + "score": 1.0, + "content": "and train-val meare quadratic in", + "type": "text" + }, + { + "bbox": [ + 186, + 207, + 259, + 244 + ], + "score": 1.0, + "content": "d, i.e., minimizing , therefore, we ca", + "type": "text" + }, + { + "bbox": [ + 259, + 208, + 281, + 223 + ], + "score": 0.92, + "content": "\\widehat { L } _ { T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 207, + 298, + 244 + ], + "score": 1.0, + "content": "and the", + "type": "text" + }, + { + "bbox": [ + 299, + 208, + 324, + 223 + ], + "score": 0.92, + "content": "\\widehat { L } _ { T } ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 207, + 382, + 244 + ], + "score": 1.0, + "content": ", respectively. orm solutions", + "type": "text" + }, + { + "bbox": [ + 432, + 207, + 439, + 244 + ], + "score": 1.0, + "content": "h .", + "type": "text" + }, + { + "bbox": [ + 439, + 208, + 461, + 223 + ], + "score": 0.92, + "content": "\\widehat { L } _ { T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 207, + 478, + 244 + ], + "score": 1.0, + "content": "and eas", + "type": "text" + }, + { + "bbox": [ + 479, + 208, + 493, + 223 + ], + "score": 0.88, + "content": "\\widehat { L } _ { T } ^ { \\mathrm { t r } . }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 207, + 507, + 244 + ], + "score": 1.0, + "content": "-valthe", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 172, + 220, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 172, + 226, + 186, + 236 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 220, + 506, + 237 + ], + "score": 1.0, + "content": "w {tr-tr,tr-val} We m ure", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 101, + 230, + 470, + 260 + ], + "spans": [ + { + "bbox": [ + 101, + 230, + 340, + 260 + ], + "score": 1.0, + "content": "performance of train-train and train-val methods using the", + "type": "text" + }, + { + "bbox": [ + 340, + 240, + 350, + 251 + ], + "score": 0.86, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 230, + 374, + 260 + ], + "score": 1.0, + "content": "-error", + "type": "text" + }, + { + "bbox": [ + 375, + 238, + 470, + 254 + ], + "score": 0.86, + "content": "\\lVert \\mathbf { w } _ { 0 , \\star } - \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} } \\rVert ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 101, + 181, + 507, + 260 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "score": 1.0, + "content": "We present the comparison among train-train and train-val methods in Figure 1 with scatter plots", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "representing the simulation outputs under different settings. Across all the simulations, we well-tune", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 280, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 221, + 291 + ], + "score": 1.0, + "content": "the regularization coefficient", + "type": "text" + }, + { + "bbox": [ + 222, + 281, + 228, + 290 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 280, + 435, + 291 + ], + "score": 1.0, + "content": "in the train-train method, and use a sufficiently large", + "type": "text" + }, + { + "bbox": [ + 435, + 280, + 480, + 290 + ], + "score": 0.89, + "content": "\\lambda = 1 0 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 280, + 505, + 291 + ], + "score": 1.0, + "content": "in the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 291, + 504, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 504, + 303 + ], + "score": 1.0, + "content": "train-val method according to Corollary 8. The simulated results concentrate around the reference", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 302, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 314 + ], + "score": 1.0, + "content": "curves corresponding to our theoretical findings. This corroborates our analyses and demonstrates", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 312, + 408, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 408, + 325 + ], + "score": 1.0, + "content": "the better performance of train-train method on the realizable linear model.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 257, + 505, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 328, + 504, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 504, + 342 + ], + "score": 1.0, + "content": "We additionally investigate the effect of averaging the loss over multiple splits in the train-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "val method (a “cross-validation” type loss) rather than the vanilla single split. We show that such", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "cross-validation can indeed improve over the vanilla single-split train-val method. We also experi-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 363, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 374 + ], + "score": 1.0, + "content": "ment with the stronger “leave-one-out” style cross-validation and show that it achieves better MSEs", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 373, + 321, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 321, + 386 + ], + "score": 1.0, + "content": "than the constant-fold cross-validation (Appendix E).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 328, + 505, + 386 + ] + }, + { + "type": "image", + "bbox": [ + 110, + 401, + 494, + 512 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 401, + 494, + 512 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 401, + 494, + 512 + ], + "spans": [ + { + "bbox": [ + 110, + 401, + 494, + 512 + ], + "score": 0.971, + "type": "image", + "image_path": "8f9f3cbc3586094e8344e1fc3ef4c0539ad59faad6af8ba3292317a176303ce0.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 110, + 401, + 494, + 438.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 110, + 438.0, + 494, + 475.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 110, + 475.0, + 494, + 512.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 520, + 506, + 603 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 518, + 507, + 536 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 277, + 536 + ], + "score": 1.0, + "content": "Figure 1: Panel (a) presents the optimal As", + "type": "text" + }, + { + "bbox": [ + 277, + 520, + 334, + 533 + ], + "score": 0.34, + "content": "\\mathrm { \\prime m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 518, + 507, + 536 + ], + "score": 1.0, + "content": "(blue) in Theorem 9 via grid search, and the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 529, + 507, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 138, + 547 + ], + "score": 1.0, + "content": "optimal", + "type": "text" + }, + { + "bbox": [ + 139, + 532, + 211, + 545 + ], + "score": 0.54, + "content": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 529, + 285, + 547 + ], + "score": 1.0, + "content": "in Corollary 8 with", + "type": "text" + }, + { + "bbox": [ + 286, + 533, + 316, + 543 + ], + "score": 0.9, + "content": "n _ { 1 } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 529, + 366, + 547 + ], + "score": 1.0, + "content": "(orange) and", + "type": "text" + }, + { + "bbox": [ + 366, + 533, + 397, + 543 + ], + "score": 0.89, + "content": "n _ { 1 } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 529, + 507, + 547 + ], + "score": 1.0, + "content": "(green), as well as the upper", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 101, + 538, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 101, + 538, + 143, + 564 + ], + "score": 1.0, + "content": "bound of", + "type": "text" + }, + { + "bbox": [ + 144, + 546, + 214, + 558 + ], + "score": 0.77, + "content": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 538, + 409, + 564 + ], + "score": 1.0, + "content": "(magenta) in Corollary 4. The optimal AsymMSE", + "type": "text" + }, + { + "bbox": [ + 410, + 543, + 459, + 558 + ], + "score": 0.62, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} } )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 538, + 505, + 564 + ], + "score": 1.0, + "content": "are used as", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 101, + 551, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 101, + 551, + 313, + 579 + ], + "score": 1.0, + "content": "b reference curves in plots (b) and (c). Panel (b) plots the", + "type": "text" + }, + { + "bbox": [ + 313, + 560, + 322, + 569 + ], + "score": 0.85, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 551, + 354, + 579 + ], + "score": 1.0, + "content": "-error of", + "type": "text" + }, + { + "bbox": [ + 355, + 557, + 400, + 572 + ], + "score": 0.89, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 551, + 506, + 579 + ], + "score": 1.0, + "content": "b the total number of tasks", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 568, + 412, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 383, + 581 + ], + "score": 1.0, + "content": "b increases from 20 to 1000 with an increment of 20. We fix data dimension", + "type": "text" + }, + { + "bbox": [ + 383, + 570, + 412, + 579 + ], + "score": 0.87, + "content": "d = 6 0", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 579, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 107, + 580, + 136, + 589 + ], + "score": 0.89, + "content": "n = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 579, + 147, + 611 + ], + "score": 1.0, + "content": ". F of", + "type": "text" + }, + { + "bbox": [ + 192, + 579, + 235, + 611 + ], + "score": 1.0, + "content": "val method, as the ratio", + "type": "text" + }, + { + "bbox": [ + 252, + 579, + 300, + 611 + ], + "score": 1.0, + "content": "xperiment on varies from 0", + "type": "text" + }, + { + "bbox": [ + 301, + 580, + 330, + 589 + ], + "score": 0.91, + "content": "n _ { 1 } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 580, + 375, + 589 + ], + "score": 0.91, + "content": "{ n } _ { 1 } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 579, + 493, + 611 + ], + "score": 1.0, + "content": "(c) shows the scaled (by are fixed).", + "type": "text" + }, + { + "bbox": [ + 493, + 580, + 501, + 588 + ], + "score": 0.72, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 579, + 505, + 611 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 589, + 405, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 115, + 601 + ], + "score": 0.87, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 589, + 192, + 604 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 591, + 251, + 603 + ], + "score": 0.89, + "content": "d / n", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 592, + 349, + 601 + ], + "score": 0.86, + "content": "n = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 592, + 405, + 601 + ], + "score": 0.89, + "content": "T = 1 0 0 0", + "type": "inline_equation" + } + ], + "index": 30 + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 108, + 631, + 280, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 631, + 281, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 281, + 642 + ], + "score": 1.0, + "content": "5.2 FEW-SHOT IMAGE CLASSIFICATION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 652, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 106, + 651, + 504, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 504, + 664 + ], + "score": 1.0, + "content": "We further investigate the comparison between the train-train and train-val type methods in few-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 663, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 505, + 675 + ], + "score": 1.0, + "content": "shot image classification on miniImageNet (Ravi & Larochelle, 2017) and tieredImageNet (Ren", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 672, + 159, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 159, + 686 + ], + "score": 1.0, + "content": "et al., 2018).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 651, + 505, + 686 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 711 + ], + "score": 1.0, + "content": "Methods We instantiate the train-train and train-val method in the centroid meta-learning setting", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "with a ridge solver. The methods are almost exactly the same as in our theoretical setting in (2)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 347, + 733 + ], + "score": 1.0, + "content": "and (3), with the only differences being that the parameters", + "type": "text" + }, + { + "bbox": [ + 347, + 722, + 360, + 732 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 720, + 407, + 733 + ], + "score": 1.0, + "content": "(and hence", + "type": "text" + }, + { + "bbox": [ + 408, + 722, + 422, + 732 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 720, + 505, + 733 + ], + "score": 1.0, + "content": ") parametrize a deep", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 697, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "neural network instead of a linear classifier, and the loss function is the cross-entropy instead of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 416, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 416, + 106 + ], + "score": 1.0, + "content": "squared loss. Mathematically, we minimize the following two loss functions:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 109, + 514, + 180 + ], + "lines": [ + { + "bbox": [ + 111, + 109, + 514, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 109, + 514, + 180 + ], + "score": 0.91, + "content": "\\_", + "type": "interline_equation", + "image_path": "34f4243dc048fa0017920ac64be59c6d2f86467447f92fe82907b2820253970f.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 111, + 109, + 514, + 132.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 132.66666666666666, + 514, + 156.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 111, + 156.33333333333331, + 514, + 179.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 134, + 197 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 185, + 169, + 195 + ], + "score": 0.92, + "content": "\\left( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 180, + 249, + 197 + ], + "score": 1.0, + "content": "is the data for task", + "type": "text" + }, + { + "bbox": [ + 250, + 186, + 254, + 193 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 180, + 286, + 197 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 287, + 188, + 293, + 193 + ], + "score": 0.77, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 180, + 316, + 197 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 316, + 184, + 373, + 195 + ], + "score": 0.89, + "content": "( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 180, + 393, + 197 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 184, + 439, + 196 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 180, + 506, + 197 + ], + "score": 1.0, + "content": "is a split of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 157, + 206 + ], + "score": 1.0, + "content": "data of size", + "type": "text" + }, + { + "bbox": [ + 157, + 196, + 190, + 206 + ], + "score": 0.91, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 193, + 505, + 206 + ], + "score": 1.0, + "content": ". We note that both loss functions above have been considered in prior work", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 202, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 104, + 202, + 110, + 219 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 110, + 207, + 135, + 216 + ], + "score": 0.83, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 202, + 304, + 219 + ], + "score": 1.0, + "content": "in iMAML (Rajeswaran et al., 2019), and", + "type": "text" + }, + { + "bbox": [ + 304, + 206, + 325, + 215 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 202, + 506, + 219 + ], + "score": 1.0, + "content": "in Meta-MinibatchProx (Zhou et al., 2019)),", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "though we use slightly different implementation details from these prior work to make sure that the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "two methods here are exactly the same except for whether the split is used. Additional details about", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 238, + 304, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 304, + 250 + ], + "score": 1.0, + "content": "the implementation can be found in Appendix D.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 261, + 504, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 504, + 273 + ], + "score": 1.0, + "content": "Experimental settings We adopt the episodic training procedure (Finn et al., 2017; Zhou et al.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 360, + 285 + ], + "score": 1.0, + "content": "2019; Rajeswaran et al., 2019). In meta-test, we sample a set of", + "type": "text" + }, + { + "bbox": [ + 360, + 275, + 370, + 282 + ], + "score": 0.89, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 271, + 391, + 285 + ], + "score": 1.0, + "content": "-way", + "type": "text" + }, + { + "bbox": [ + 392, + 275, + 424, + 285 + ], + "score": 0.93, + "content": "( K + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "-shot test tasks. The", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 125, + 296 + ], + "score": 1.0, + "content": "first", + "type": "text" + }, + { + "bbox": [ + 125, + 286, + 135, + 293 + ], + "score": 0.87, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "instances are for training and the remaining one is for testing. In meta-training, we use the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "“higher way” training strategy. We set the default choice of the train-validation split ratio to be an", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 147, + 317 + ], + "score": 1.0, + "content": "even split", + "type": "text" + }, + { + "bbox": [ + 147, + 307, + 212, + 317 + ], + "score": 0.9, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "following Zhou et al. (2019); Rajeswaran et al. (2019). For example, for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 332, + 329 + ], + "score": 1.0, + "content": "a 5-way 5-shot classification setting, each task contains", + "type": "text" + }, + { + "bbox": [ + 332, + 318, + 404, + 329 + ], + "score": 0.92, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "total images, and we set", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 107, + 328, + 167, + 339 + ], + "score": 0.85, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 327, + 505, + 339 + ], + "score": 1.0, + "content": ". (We additionally investigate the optimality of this split ratio in Appendix D.1.) We", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 339, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 504, + 349 + ], + "score": 1.0, + "content": "evaluate both methods under the transduction setting where the information is shared between the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 392, + 362 + ], + "score": 1.0, + "content": "test data via batch normalization. We report the average accuracy over", + "type": "text" + }, + { + "bbox": [ + 392, + 349, + 417, + 361 + ], + "score": 0.41, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "random test episodes", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 360, + 227, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 127, + 372 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 360, + 146, + 371 + ], + "score": 0.86, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 360, + 227, + 372 + ], + "score": 1.0, + "content": "confidence interval.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 505, + 396 + ], + "score": 1.0, + "content": "Results Table 1 presents the percent classification accuracy on miniImagenet and tieredImageNet.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 393, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 407 + ], + "score": 1.0, + "content": "We find that the train-train method consistently outperforms the train-val method. Specifically, on", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 346, + 418 + ], + "score": 1.0, + "content": "miniImageNet, train-train method outperforms train-val by", + "type": "text" + }, + { + "bbox": [ + 347, + 405, + 374, + 416 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 405, + 392, + 418 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 405, + 420, + 416 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "on the 1-shot 5-way", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "score": 1.0, + "content": "and 5-shot 5-way tasks respectively; On tieredImageNet, train-train on average improves by about", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 134, + 438 + ], + "score": 0.88, + "content": "6 . 4 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 426, + 505, + 440 + ], + "score": 1.0, + "content": "on the four testing cases. These results show the advantages of train-train method over train-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 438, + 325, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 325, + 450 + ], + "score": 1.0, + "content": "val and support our theoretical findings in Theorem 4.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "table", + "bbox": [ + 107, + 475, + 505, + 566 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 461, + 496, + 473 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 459, + 498, + 473 + ], + "spans": [ + { + "bbox": [ + 109, + 459, + 276, + 473 + ], + "score": 1.0, + "content": "Table 1: Few-shot classification accuracy", + "type": "text" + }, + { + "bbox": [ + 277, + 461, + 292, + 472 + ], + "score": 0.73, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 459, + 498, + 473 + ], + "score": 1.0, + "content": "on the miniImageNet and tieredImageNet datasets.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 107, + 475, + 505, + 566 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 475, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 107, + 475, + 505, + 566 + ], + "score": 0.979, + "html": "
miriiiiiimethod1-shot 5-way 5-shot 5-way1-shot 20-way 5-shot 20-way
train-val48.76 ± 0.8763.56 ± 0.9517.52 ± 0.4921.32 ± 0.54
rrrrareraetrain-train50.77 ± 0.9067.43 ± 0.8921.17 ± 0.3834.30 ± 0.41
method train-val1-shot 5-way 5-shot 5-way1-shot 10-way 5-shot 10-way
50.61 ± 1.1267.30 ± 0.9829.18 ± 0.5743.15 ± 0.72
train-train54.37 ± 0.9371.45 ± 0.9435.56 ± 0.6054.50 ± 0.71
", + "type": "table", + "image_path": "438a2c462da1a65db2107cba786f4939ea954790b8eaeaea46eea1cbe6525cc6.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 107, + 475, + 505, + 505.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 107, + 505.3333333333333, + 505, + 535.6666666666666 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 107, + 535.6666666666666, + 505, + 566.0 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 28.0 + }, + { + "type": "title", + "bbox": [ + 107, + 583, + 196, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 198, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 198, + 600 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 621 + ], + "score": 1.0, + "content": "We study the importance of train-validation split on the linear-centroid meta-learning problem, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "score": 1.0, + "content": "show that the necessity and optimality of train-validation split depends greatly on whether the tasks", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 631, + 504, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 504, + 643 + ], + "score": 1.0, + "content": "are structured: the sample splitting is necessary in general situations, and not necessary and non-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 642, + 504, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 504, + 654 + ], + "score": 1.0, + "content": "optimal when the tasks are nicely structured. It would be of interest to study whether a similar", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "conclusion holds on other meta-learning problems such as learning a representation, or whether our", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 663, + 502, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 502, + 677 + ], + "score": 1.0, + "content": "insights can be used towards designing meta-learning algorithms with better empirical performance.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 108, + 691, + 175, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 176, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 176, + 704 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Pierre Alquier, The Tien Mai, and Massimiliano Pontil. Regret bounds for lifelong learning. arXiv", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 721, + 254, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 254, + 732 + ], + "score": 1.0, + "content": "preprint arXiv:1610.08628, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "neural network instead of a linear classifier, and the loss function is the cross-entropy instead of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 416, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 416, + 106 + ], + "score": 1.0, + "content": "squared loss. Mathematically, we minimize the following two loss functions:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 506, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 109, + 514, + 180 + ], + "lines": [ + { + "bbox": [ + 111, + 109, + 514, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 109, + 514, + 180 + ], + "score": 0.91, + "content": "\\_", + "type": "interline_equation", + "image_path": "34f4243dc048fa0017920ac64be59c6d2f86467447f92fe82907b2820253970f.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 111, + 109, + 514, + 132.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 132.66666666666666, + 514, + 156.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 111, + 156.33333333333331, + 514, + 179.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 505, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 134, + 197 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 185, + 169, + 195 + ], + "score": 0.92, + "content": "\\left( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 180, + 249, + 197 + ], + "score": 1.0, + "content": "is the data for task", + "type": "text" + }, + { + "bbox": [ + 250, + 186, + 254, + 193 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 180, + 286, + 197 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 287, + 188, + 293, + 193 + ], + "score": 0.77, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 180, + 316, + 197 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 316, + 184, + 373, + 195 + ], + "score": 0.89, + "content": "( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 180, + 393, + 197 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 184, + 439, + 196 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 180, + 506, + 197 + ], + "score": 1.0, + "content": "is a split of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 157, + 206 + ], + "score": 1.0, + "content": "data of size", + "type": "text" + }, + { + "bbox": [ + 157, + 196, + 190, + 206 + ], + "score": 0.91, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 193, + 505, + 206 + ], + "score": 1.0, + "content": ". We note that both loss functions above have been considered in prior work", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 202, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 104, + 202, + 110, + 219 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 110, + 207, + 135, + 216 + ], + "score": 0.83, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 202, + 304, + 219 + ], + "score": 1.0, + "content": "in iMAML (Rajeswaran et al., 2019), and", + "type": "text" + }, + { + "bbox": [ + 304, + 206, + 325, + 215 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 202, + 506, + 219 + ], + "score": 1.0, + "content": "in Meta-MinibatchProx (Zhou et al., 2019)),", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "though we use slightly different implementation details from these prior work to make sure that the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "two methods here are exactly the same except for whether the split is used. Additional details about", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 238, + 304, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 304, + 250 + ], + "score": 1.0, + "content": "the implementation can be found in Appendix D.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 180, + 506, + 250 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 371 + ], + "lines": [ + { + "bbox": [ + 106, + 261, + 504, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 504, + 273 + ], + "score": 1.0, + "content": "Experimental settings We adopt the episodic training procedure (Finn et al., 2017; Zhou et al.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 360, + 285 + ], + "score": 1.0, + "content": "2019; Rajeswaran et al., 2019). In meta-test, we sample a set of", + "type": "text" + }, + { + "bbox": [ + 360, + 275, + 370, + 282 + ], + "score": 0.89, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 271, + 391, + 285 + ], + "score": 1.0, + "content": "-way", + "type": "text" + }, + { + "bbox": [ + 392, + 275, + 424, + 285 + ], + "score": 0.93, + "content": "( K + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "-shot test tasks. The", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 125, + 296 + ], + "score": 1.0, + "content": "first", + "type": "text" + }, + { + "bbox": [ + 125, + 286, + 135, + 293 + ], + "score": 0.87, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "instances are for training and the remaining one is for testing. In meta-training, we use the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "“higher way” training strategy. We set the default choice of the train-validation split ratio to be an", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 147, + 317 + ], + "score": 1.0, + "content": "even split", + "type": "text" + }, + { + "bbox": [ + 147, + 307, + 212, + 317 + ], + "score": 0.9, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "following Zhou et al. (2019); Rajeswaran et al. (2019). For example, for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 332, + 329 + ], + "score": 1.0, + "content": "a 5-way 5-shot classification setting, each task contains", + "type": "text" + }, + { + "bbox": [ + 332, + 318, + 404, + 329 + ], + "score": 0.92, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "total images, and we set", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 107, + 328, + 167, + 339 + ], + "score": 0.85, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 327, + 505, + 339 + ], + "score": 1.0, + "content": ". (We additionally investigate the optimality of this split ratio in Appendix D.1.) We", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 339, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 504, + 349 + ], + "score": 1.0, + "content": "evaluate both methods under the transduction setting where the information is shared between the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 392, + 362 + ], + "score": 1.0, + "content": "test data via batch normalization. We report the average accuracy over", + "type": "text" + }, + { + "bbox": [ + 392, + 349, + 417, + 361 + ], + "score": 0.41, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "random test episodes", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 360, + 227, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 127, + 372 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 127, + 360, + 146, + 371 + ], + "score": 0.86, + "content": "9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 360, + 227, + 372 + ], + "score": 1.0, + "content": "confidence interval.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 261, + 506, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 505, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 505, + 396 + ], + "score": 1.0, + "content": "Results Table 1 presents the percent classification accuracy on miniImagenet and tieredImageNet.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 393, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 505, + 407 + ], + "score": 1.0, + "content": "We find that the train-train method consistently outperforms the train-val method. Specifically, on", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 346, + 418 + ], + "score": 1.0, + "content": "miniImageNet, train-train method outperforms train-val by", + "type": "text" + }, + { + "bbox": [ + 347, + 405, + 374, + 416 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 405, + 392, + 418 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 393, + 405, + 420, + 416 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "on the 1-shot 5-way", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "score": 1.0, + "content": "and 5-shot 5-way tasks respectively; On tieredImageNet, train-train on average improves by about", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 134, + 438 + ], + "score": 0.88, + "content": "6 . 4 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 426, + 505, + 440 + ], + "score": 1.0, + "content": "on the four testing cases. These results show the advantages of train-train method over train-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 438, + 325, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 325, + 450 + ], + "score": 1.0, + "content": "val and support our theoretical findings in Theorem 4.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 382, + 505, + 450 + ] + }, + { + "type": "table", + "bbox": [ + 107, + 475, + 505, + 566 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 461, + 496, + 473 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 459, + 498, + 473 + ], + "spans": [ + { + "bbox": [ + 109, + 459, + 276, + 473 + ], + "score": 1.0, + "content": "Table 1: Few-shot classification accuracy", + "type": "text" + }, + { + "bbox": [ + 277, + 461, + 292, + 472 + ], + "score": 0.73, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 459, + 498, + 473 + ], + "score": 1.0, + "content": "on the miniImageNet and tieredImageNet datasets.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 107, + 475, + 505, + 566 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 475, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 107, + 475, + 505, + 566 + ], + "score": 0.979, + "html": "
miriiiiiimethod1-shot 5-way 5-shot 5-way1-shot 20-way 5-shot 20-way
train-val48.76 ± 0.8763.56 ± 0.9517.52 ± 0.4921.32 ± 0.54
rrrrareraetrain-train50.77 ± 0.9067.43 ± 0.8921.17 ± 0.3834.30 ± 0.41
method train-val1-shot 5-way 5-shot 5-way1-shot 10-way 5-shot 10-way
50.61 ± 1.1267.30 ± 0.9829.18 ± 0.5743.15 ± 0.72
train-train54.37 ± 0.9371.45 ± 0.9435.56 ± 0.6054.50 ± 0.71
", + "type": "table", + "image_path": "438a2c462da1a65db2107cba786f4939ea954790b8eaeaea46eea1cbe6525cc6.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 107, + 475, + 505, + 505.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 107, + 505.3333333333333, + 505, + 535.6666666666666 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 107, + 535.6666666666666, + 505, + 566.0 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 28.0 + }, + { + "type": "title", + "bbox": [ + 107, + 583, + 196, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 198, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 198, + 600 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 621 + ], + "score": 1.0, + "content": "We study the importance of train-validation split on the linear-centroid meta-learning problem, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "score": 1.0, + "content": "show that the necessity and optimality of train-validation split depends greatly on whether the tasks", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 631, + 504, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 504, + 643 + ], + "score": 1.0, + "content": "are structured: the sample splitting is necessary in general situations, and not necessary and non-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 642, + 504, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 504, + 654 + ], + "score": 1.0, + "content": "optimal when the tasks are nicely structured. It would be of interest to study whether a similar", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "conclusion holds on other meta-learning problems such as learning a representation, or whether our", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 663, + 502, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 502, + 677 + ], + "score": 1.0, + "content": "insights can be used towards designing meta-learning algorithms with better empirical performance.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 609, + 505, + 677 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 691, + 175, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 176, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 176, + 704 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Pierre Alquier, The Tien Mai, and Massimiliano Pontil. Regret bounds for lifelong learning. arXiv", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 721, + 254, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 254, + 732 + ], + "score": 1.0, + "content": "preprint arXiv:1610.08628, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Greg W Anderson, Alice Guionnet, and Ofer Zeitouni. An introduction to random matrices, volume", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 276, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 276, + 106 + ], + "score": 1.0, + "content": "118. Cambridge university press, 2010.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 505, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "Andreas Argyriou, Theodoros Evgeniou, and Massimiliano Pontil. Multi-task feature learning. In", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 396, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 396, + 136 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pp. 41–48, 2007.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 158 + ], + "score": 1.0, + "content": "Zhidong Bai and Jack W Silverstein. Spectral analysis of large dimensional random matrices,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 229, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 229, + 167 + ], + "score": 1.0, + "content": "volume 20. Springer, 2010.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 416, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 415, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 415, + 187 + ], + "score": 1.0, + "content": "Jonathan Baxter. A model of inductive bias learning. J. Artif. Int. Res., 2000.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 194, + 502, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 207 + ], + "score": 1.0, + "content": "Rich Caruana. Multitask learning. Machine Learning, 28(1):41–75, Jul 1997. ISSN 1573-0565. doi:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 205, + 493, + 217 + ], + "spans": [ + { + "bbox": [ + 117, + 205, + 493, + 217 + ], + "score": 1.0, + "content": "10.1023/A:1007379606734. URL https://doi.org/10.1023/A:1007379606734.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 108, + 224, + 503, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 504, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 504, + 238 + ], + "score": 1.0, + "content": "Giulia Denevi, Carlo Ciliberto, Dimitris Stamos, and Massimiliano Pontil. Incremental learning-to-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 235, + 414, + 248 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 414, + 248 + ], + "score": 1.0, + "content": "learn with statistical guarantees. arXiv preprint arXiv:1803.08089, 2018a.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 504, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "Giulia Denevi, Carlo Ciliberto, Dimitris Stamos, and Massimiliano Pontil. Learning to learn around", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 115, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "a common mean. In Advances in Neural Information Processing Systems, pp. 10169–10179,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 276, + 147, + 290 + ], + "spans": [ + { + "bbox": [ + 115, + 276, + 147, + 290 + ], + "score": 1.0, + "content": "2018b.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 297, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "Edgar Dobriban, Stefan Wager, et al. High-dimensional asymptotics of prediction: Ridge regression", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 308, + 379, + 320 + ], + "spans": [ + { + "bbox": [ + 116, + 308, + 379, + 320 + ], + "score": 1.0, + "content": "and classification. The Annals of Statistics, 46(1):247–279, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "score": 1.0, + "content": "Simon S Du, Wei Hu, Sham M Kakade, Jason D Lee, and Qi Lei. Few-shot learning via learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 339, + 395, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 339, + 395, + 351 + ], + "score": 1.0, + "content": "the representation, provably. arXiv preprint arXiv:2002.09434, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 504, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "Theodoros Evgeniou, Charles A Micchelli, and Massimiliano Pontil. Learning multiple tasks with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 369, + 433, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 433, + 383 + ], + "score": 1.0, + "content": "kernel methods. Journal of machine learning research, 6(Apr):615–637, 2005.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 504, + 402 + ], + "score": 1.0, + "content": "Alireza Fallah, Aryan Mokhtari, and Asuman Ozdaglar. On the convergence theory of gradient-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 116, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "based model-agnostic meta-learning algorithms. In International Conference on Artificial Intelli-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 412, + 290, + 424 + ], + "spans": [ + { + "bbox": [ + 116, + 412, + 290, + 424 + ], + "score": 1.0, + "content": "gence and Statistics, pp. 1082–1092, 2020.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 504, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 116, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "of deep networks. In Proceedings of the 34th International Conference on Machine Learning-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 117, + 453, + 253, + 465 + ], + "spans": [ + { + "bbox": [ + 117, + 453, + 253, + 465 + ], + "score": 1.0, + "content": "Volume 70, pp. 1126–1135, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 503, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 486 + ], + "score": 1.0, + "content": "Chelsea Finn, Aravind Rajeswaran, Sham Kakade, and Sergey Levine. Online meta-learning. In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 483, + 433, + 496 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 433, + 496 + ], + "score": 1.0, + "content": "Proceedings of the 36th International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 504, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 504, + 514 + ], + "score": 1.0, + "content": "Luca Franceschi, Paolo Frasconi, Saverio Salzo, Riccardo Grazzi, and Massimilano Pontil.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 115, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "Bilevel programming for hyperparameter optimization and meta-learning. arXiv preprint", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 525, + 220, + 536 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 220, + 536 + ], + "score": 1.0, + "content": "arXiv:1806.04910, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 105, + 544, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "score": 1.0, + "content": "Tomer Galanti, Lior Wolf, and Tamir Hazan. A theoretical framework for deep transfer learning.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 556, + 401, + 568 + ], + "spans": [ + { + "bbox": [ + 117, + 556, + 401, + 568 + ], + "score": 1.0, + "content": "Information and Inference: A Journal of the IMA, 5(2):159–209, 2016.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 575, + 504, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 504, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 504, + 587 + ], + "score": 1.0, + "content": "Micah Goldblum, Steven Reich, Liam Fowl, Renkun Ni, Valeriia Cherepanova, and Tom Gold-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 116, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "stein. Unraveling meta-learning: Understanding feature representations for few-shot tasks. arXiv", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 598, + 253, + 609 + ], + "spans": [ + { + "bbox": [ + 115, + 598, + 253, + 609 + ], + "score": 1.0, + "content": "preprint arXiv:2002.06753, 2020.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 103, + 617, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Jiatao Gu, Yong Wang, Yun Chen, Kyunghyun Cho, and Victor OK Li. Meta-learning for low-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 629, + 426, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 426, + 641 + ], + "score": 1.0, + "content": "resource neural machine translation. arXiv preprint arXiv:1808.08437, 2018.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 104, + 647, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "Kaiyi Ji, Jason D Lee, Yingbin Liang, and H Vincent Poor. Convergence of meta-learning with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 659, + 472, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 472, + 671 + ], + "score": 1.0, + "content": "task-specific adaptation over partial parameters. arXiv preprint arXiv:2006.09486, 2020.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 502, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 693 + ], + "score": 1.0, + "content": "Mikhail Khodak, Maria-Florina Balcan, and Ameet Talwalkar. Adaptive gradient-based meta-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 354, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 354, + 702 + ], + "score": 1.0, + "content": "learning methods. arXiv preprint arXiv:1906.02717, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "A. Krizhevsky, I. Sutskever, and G. Hinton. Imagenet classification with deep convolutional neural", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 249, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 249, + 732 + ], + "score": 1.0, + "content": "networks. pp. 1097–1105, 2012.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Greg W Anderson, Alice Guionnet, and Ofer Zeitouni. An introduction to random matrices, volume", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 276, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 276, + 106 + ], + "score": 1.0, + "content": "118. Cambridge university press, 2010.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 505, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "Andreas Argyriou, Theodoros Evgeniou, and Massimiliano Pontil. Multi-task feature learning. In", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 396, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 396, + 136 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pp. 41–48, 2007.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 113, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 158 + ], + "score": 1.0, + "content": "Zhidong Bai and Jack W Silverstein. Spectral analysis of large dimensional random matrices,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 229, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 229, + 167 + ], + "score": 1.0, + "content": "volume 20. Springer, 2010.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 142, + 505, + 167 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 416, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 415, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 415, + 187 + ], + "score": 1.0, + "content": "Jonathan Baxter. A model of inductive bias learning. J. Artif. Int. Res., 2000.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 173, + 415, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 194, + 502, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 207 + ], + "score": 1.0, + "content": "Rich Caruana. Multitask learning. Machine Learning, 28(1):41–75, Jul 1997. ISSN 1573-0565. doi:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 205, + 493, + 217 + ], + "spans": [ + { + "bbox": [ + 117, + 205, + 493, + 217 + ], + "score": 1.0, + "content": "10.1023/A:1007379606734. URL https://doi.org/10.1023/A:1007379606734.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 194, + 505, + 217 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 224, + 503, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 504, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 504, + 238 + ], + "score": 1.0, + "content": "Giulia Denevi, Carlo Ciliberto, Dimitris Stamos, and Massimiliano Pontil. Incremental learning-to-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 235, + 414, + 248 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 414, + 248 + ], + "score": 1.0, + "content": "learn with statistical guarantees. arXiv preprint arXiv:1803.08089, 2018a.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 224, + 504, + 248 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 504, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "Giulia Denevi, Carlo Ciliberto, Dimitris Stamos, and Massimiliano Pontil. Learning to learn around", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 115, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "a common mean. In Advances in Neural Information Processing Systems, pp. 10169–10179,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 276, + 147, + 290 + ], + "spans": [ + { + "bbox": [ + 115, + 276, + 147, + 290 + ], + "score": 1.0, + "content": "2018b.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 255, + 505, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 297, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "Edgar Dobriban, Stefan Wager, et al. High-dimensional asymptotics of prediction: Ridge regression", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 308, + 379, + 320 + ], + "spans": [ + { + "bbox": [ + 116, + 308, + 379, + 320 + ], + "score": 1.0, + "content": "and classification. The Annals of Statistics, 46(1):247–279, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 297, + 505, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "score": 1.0, + "content": "Simon S Du, Wei Hu, Sham M Kakade, Jason D Lee, and Qi Lei. Few-shot learning via learning", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 339, + 395, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 339, + 395, + 351 + ], + "score": 1.0, + "content": "the representation, provably. arXiv preprint arXiv:2002.09434, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 326, + 505, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 504, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 371 + ], + "score": 1.0, + "content": "Theodoros Evgeniou, Charles A Micchelli, and Massimiliano Pontil. Learning multiple tasks with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 369, + 433, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 433, + 383 + ], + "score": 1.0, + "content": "kernel methods. Journal of machine learning research, 6(Apr):615–637, 2005.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 358, + 505, + 383 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 504, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 504, + 402 + ], + "score": 1.0, + "content": "Alireza Fallah, Aryan Mokhtari, and Asuman Ozdaglar. On the convergence theory of gradient-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 116, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "based model-agnostic meta-learning algorithms. In International Conference on Artificial Intelli-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 412, + 290, + 424 + ], + "spans": [ + { + "bbox": [ + 116, + 412, + 290, + 424 + ], + "score": 1.0, + "content": "gence and Statistics, pp. 1082–1092, 2020.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 388, + 505, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 504, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 444 + ], + "score": 1.0, + "content": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 116, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "of deep networks. In Proceedings of the 34th International Conference on Machine Learning-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 117, + 453, + 253, + 465 + ], + "spans": [ + { + "bbox": [ + 117, + 453, + 253, + 465 + ], + "score": 1.0, + "content": "Volume 70, pp. 1126–1135, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 429, + 505, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 503, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 486 + ], + "score": 1.0, + "content": "Chelsea Finn, Aravind Rajeswaran, Sham Kakade, and Sergey Levine. Online meta-learning. In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 483, + 433, + 496 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 433, + 496 + ], + "score": 1.0, + "content": "Proceedings of the 36th International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 471, + 505, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 504, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 504, + 514 + ], + "score": 1.0, + "content": "Luca Franceschi, Paolo Frasconi, Saverio Salzo, Riccardo Grazzi, and Massimilano Pontil.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 115, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "Bilevel programming for hyperparameter optimization and meta-learning. arXiv preprint", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 525, + 220, + 536 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 220, + 536 + ], + "score": 1.0, + "content": "arXiv:1806.04910, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 504, + 505, + 536 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 544, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "score": 1.0, + "content": "Tomer Galanti, Lior Wolf, and Tamir Hazan. A theoretical framework for deep transfer learning.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 556, + 401, + 568 + ], + "spans": [ + { + "bbox": [ + 117, + 556, + 401, + 568 + ], + "score": 1.0, + "content": "Information and Inference: A Journal of the IMA, 5(2):159–209, 2016.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 543, + 505, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 575, + 504, + 609 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 504, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 504, + 587 + ], + "score": 1.0, + "content": "Micah Goldblum, Steven Reich, Liam Fowl, Renkun Ni, Valeriia Cherepanova, and Tom Gold-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 116, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "stein. Unraveling meta-learning: Understanding feature representations for few-shot tasks. arXiv", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 598, + 253, + 609 + ], + "spans": [ + { + "bbox": [ + 115, + 598, + 253, + 609 + ], + "score": 1.0, + "content": "preprint arXiv:2002.06753, 2020.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 575, + 505, + 609 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 617, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Jiatao Gu, Yong Wang, Yun Chen, Kyunghyun Cho, and Victor OK Li. Meta-learning for low-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 629, + 426, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 426, + 641 + ], + "score": 1.0, + "content": "resource neural machine translation. arXiv preprint arXiv:1808.08437, 2018.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 617, + 505, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 647, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "Kaiyi Ji, Jason D Lee, Yingbin Liang, and H Vincent Poor. Convergence of meta-learning with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 659, + 472, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 472, + 671 + ], + "score": 1.0, + "content": "task-specific adaptation over partial parameters. arXiv preprint arXiv:2006.09486, 2020.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 648, + 505, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 502, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 504, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 693 + ], + "score": 1.0, + "content": "Mikhail Khodak, Maria-Florina Balcan, and Ameet Talwalkar. Adaptive gradient-based meta-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 354, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 354, + 702 + ], + "score": 1.0, + "content": "learning methods. arXiv preprint arXiv:1906.02717, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 677, + 504, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "A. Krizhevsky, I. Sutskever, and G. Hinton. Imagenet classification with deep convolutional neural", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 249, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 249, + 732 + ], + "score": 1.0, + "content": "networks. pp. 1097–1105, 2012.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Kwonjoon Lee, Subhransu Maji, Avinash Ravichandran, and Stefano Soatto. Meta-learning with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "differentiable convex optimization. In Proceedings of the IEEE Conference on Computer Vision", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 319, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 319, + 117 + ], + "score": 1.0, + "content": "and Pattern Recognition, pp. 10657–10665, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 415, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 416, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 416, + 137 + ], + "score": 1.0, + "content": "Percy Liang. Cs229t/stat231: Statistical learning theory (winter 2016), 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 109, + 141, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 107, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 107, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "Han Liu, Mark Palatucci, and Jian Zhang. Blockwise coordinate descent procedures for the multi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "task lasso, with applications to neural semantic basis discovery. In Proceedings of the 26th Annual", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 389, + 176 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 389, + 176 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pp. 649–656, 2009.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 505, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Han Liu, Lie Wang, and Tuo Zhao. Calibrated multivariate regression with application to neural", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 469, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 469, + 206 + ], + "score": 1.0, + "content": "semantic basis discovery. Journal of machine learning research: JMLR, 16:1579, 2015.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 503, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "Andreas Maurer, Massimiliano Pontil, and Bernardino Romera-Paredes. The benefit of multitask", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 491, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 491, + 236 + ], + "score": 1.0, + "content": "representation learning. The Journal of Machine Learning Research, 17(1):2853–2884, 2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 108, + 241, + 504, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "Daniel McNamara and Maria-Florina Balcan. Risk bounds for transferring representations with and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 116, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "without fine-tuning. In Proceedings of the 34th International Conference on Machine Learning-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 264, + 302, + 276 + ], + "spans": [ + { + "bbox": [ + 117, + 264, + 302, + 276 + ], + "score": 1.0, + "content": "Volume 70, pp. 2373–2381. JMLR. org, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 104, + 282, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 296 + ], + "score": 1.0, + "content": "A. Nichol and J. Schulman. Reptile: a scalable metalearning algorithm. arXiv preprint", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 294, + 230, + 306 + ], + "spans": [ + { + "bbox": [ + 116, + 294, + 230, + 306 + ], + "score": 1.0, + "content": "arXiv:1803.02999, 2, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 104, + 312, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "Alex Nichol, Joshua Achiam, and John Schulman. On first-order meta-learning algorithms. arXiv", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 324, + 254, + 334 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 254, + 334 + ], + "score": 1.0, + "content": "preprint arXiv:1803.02999, 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 503, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "score": 1.0, + "content": "Aniruddh Raghu, Maithra Raghu, Samy Bengio, and Oriol Vinyals. Rapid learning or feature reuse?", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 352, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 115, + 352, + 505, + 367 + ], + "score": 1.0, + "content": "towards understanding the effectiveness of maml. In International Conference on Learning Rep-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 364, + 474, + 376 + ], + "spans": [ + { + "bbox": [ + 116, + 364, + 474, + 376 + ], + "score": 1.0, + "content": "resentations, 2020. URL https://openreview.net/forum?id=rkgMkCEtPB.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 382, + 502, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 382, + 504, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 504, + 395 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Chelsea Finn, Sham M Kakade, and Sergey Levine. Meta-learning with im-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 394, + 486, + 406 + ], + "spans": [ + { + "bbox": [ + 115, + 394, + 486, + 406 + ], + "score": 1.0, + "content": "plicit gradients. In Advances in Neural Information Processing Systems, pp. 113–124, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 105, + 412, + 432, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 432, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 432, + 426 + ], + "score": 1.0, + "content": "S. Ravi and H. Larochelle. Optimization as a model for few-shot learning. 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 431, + 504, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "M. Ren, E. Triantafillou, S. Ravi, J. Snell, K. Swersky, J. Tenenbaum, H. Larochelle, and R. Zemel.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 505, + 454 + ], + "score": 1.0, + "content": "Meta-learning for semi-supervised few-shot classification. arXiv preprint arXiv:1803.00676,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 451, + 143, + 466 + ], + "spans": [ + { + "bbox": [ + 114, + 451, + 143, + 466 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 504, + 495 + ], + "lines": [ + { + "bbox": [ + 105, + 470, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 485 + ], + "score": 1.0, + "content": "Sebastian Ruder. An overview of multi-task learning in deep neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 483, + 219, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 219, + 493 + ], + "score": 1.0, + "content": "arXiv:1706.05098, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 501, + 504, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "O. Russakovsky, J. Deng, H. Su, J. Krause, S. Satheesh, S. Ma, Z. Huang, A. Karpathy, A. Khosla,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 512, + 488, + 525 + ], + "spans": [ + { + "bbox": [ + 116, + 512, + 488, + 525 + ], + "score": 1.0, + "content": "and M. Bernstein. Imagenet large scale visual recognition challenge. 115(3):211–252, 2015.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 504, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 544 + ], + "score": 1.0, + "content": "Nikunj Saunshi, Yi Zhang, Mikhail Khodak, and Sanjeev Arora. A sample complexity separation", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 542, + 472, + 555 + ], + "spans": [ + { + "bbox": [ + 115, + 542, + 472, + 555 + ], + "score": 1.0, + "content": "between non-convex and convex meta-learning. arXiv preprint arXiv:2002.11172, 2020.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 504, + 584 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "Jurgen Schmidhuber. ¨ Evolutionary principles in self-referential learning, or on learning how to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 572, + 448, + 584 + ], + "spans": [ + { + "bbox": [ + 117, + 572, + 448, + 584 + ], + "score": 1.0, + "content": "learn: the meta-meta-... hook. PhD thesis, Technische Universitat M¨ unchen, 1987. ¨", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 504, + 614 + ], + "lines": [ + { + "bbox": [ + 104, + 588, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 588, + 506, + 604 + ], + "score": 1.0, + "content": "J. Snell, K. Swersky, and R. Zemel. Prototypical networks for few-shot learning. pp. 4077–4087,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 600, + 143, + 614 + ], + "spans": [ + { + "bbox": [ + 114, + 600, + 143, + 614 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 504, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "Sebastian Thrun and Lorien Pratt. Learning to Learn: Introduction and Overview, pp. 3–17.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "Springer US, Boston, MA, 1998. ISBN 978-1-4615-5529-2. doi: 10.1007/978-1-4615-5529-2 1.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 641, + 403, + 655 + ], + "spans": [ + { + "bbox": [ + 115, + 641, + 403, + 655 + ], + "score": 1.0, + "content": "URL https://doi.org/10.1007/978-1-4615-5529-2_1.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 660, + 502, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 660, + 504, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 504, + 674 + ], + "score": 1.0, + "content": "Nilesh Tripuraneni, Chi Jin, and Michael I Jordan. Provable meta-learning of linear representations.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 672, + 283, + 684 + ], + "spans": [ + { + "bbox": [ + 116, + 672, + 283, + 684 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2002.11684, 2020a.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 690, + 504, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 704 + ], + "score": 1.0, + "content": "Nilesh Tripuraneni, Michael I Jordan, and Chi Jin. On the theory of transfer learning: The impor-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 702, + 376, + 714 + ], + "spans": [ + { + "bbox": [ + 116, + 702, + 376, + 714 + ], + "score": 1.0, + "content": "tance of task diversity. arXiv preprint arXiv:2006.11650, 2020b.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 103, + 720, + 466, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 719, + 466, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 466, + 734 + ], + "score": 1.0, + "content": "Aad W Van der Vaart. Asymptotic statistics, volume 3. Cambridge university press, 2000.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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": [ + 107, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Kwonjoon Lee, Subhransu Maji, Avinash Ravichandran, and Stefano Soatto. Meta-learning with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "differentiable convex optimization. In Proceedings of the IEEE Conference on Computer Vision", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 319, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 319, + 117 + ], + "score": 1.0, + "content": "and Pattern Recognition, pp. 10657–10665, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 415, + 135 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 416, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 416, + 137 + ], + "score": 1.0, + "content": "Percy Liang. Cs229t/stat231: Statistical learning theory (winter 2016), 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 121, + 416, + 137 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 141, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 107, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 107, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "Han Liu, Mark Palatucci, and Jian Zhang. Blockwise coordinate descent procedures for the multi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 505, + 166 + ], + "score": 1.0, + "content": "task lasso, with applications to neural semantic basis discovery. In Proceedings of the 26th Annual", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 389, + 176 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 389, + 176 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pp. 649–656, 2009.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 107, + 141, + 505, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 505, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Han Liu, Lie Wang, and Tuo Zhao. Calibrated multivariate regression with application to neural", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 469, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 469, + 206 + ], + "score": 1.0, + "content": "semantic basis discovery. Journal of machine learning research: JMLR, 16:1579, 2015.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 182, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 503, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "Andreas Maurer, Massimiliano Pontil, and Bernardino Romera-Paredes. The benefit of multitask", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 491, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 491, + 236 + ], + "score": 1.0, + "content": "representation learning. The Journal of Machine Learning Research, 17(1):2853–2884, 2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 213, + 505, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 241, + 504, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "Daniel McNamara and Maria-Florina Balcan. Risk bounds for transferring representations with and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 116, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "without fine-tuning. In Proceedings of the 34th International Conference on Machine Learning-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 264, + 302, + 276 + ], + "spans": [ + { + "bbox": [ + 117, + 264, + 302, + 276 + ], + "score": 1.0, + "content": "Volume 70, pp. 2373–2381. JMLR. org, 2017.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 242, + 505, + 276 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 282, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 296 + ], + "score": 1.0, + "content": "A. Nichol and J. Schulman. Reptile: a scalable metalearning algorithm. arXiv preprint", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 294, + 230, + 306 + ], + "spans": [ + { + "bbox": [ + 116, + 294, + 230, + 306 + ], + "score": 1.0, + "content": "arXiv:1803.02999, 2, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 280, + 505, + 306 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 312, + 504, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "Alex Nichol, Joshua Achiam, and John Schulman. On first-order meta-learning algorithms. arXiv", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 324, + 254, + 334 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 254, + 334 + ], + "score": 1.0, + "content": "preprint arXiv:1803.02999, 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 311, + 505, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 503, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "score": 1.0, + "content": "Aniruddh Raghu, Maithra Raghu, Samy Bengio, and Oriol Vinyals. Rapid learning or feature reuse?", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 352, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 115, + 352, + 505, + 367 + ], + "score": 1.0, + "content": "towards understanding the effectiveness of maml. In International Conference on Learning Rep-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 364, + 474, + 376 + ], + "spans": [ + { + "bbox": [ + 116, + 364, + 474, + 376 + ], + "score": 1.0, + "content": "resentations, 2020. URL https://openreview.net/forum?id=rkgMkCEtPB.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 340, + 505, + 376 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 382, + 502, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 382, + 504, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 382, + 504, + 395 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Chelsea Finn, Sham M Kakade, and Sergey Levine. Meta-learning with im-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 394, + 486, + 406 + ], + "spans": [ + { + "bbox": [ + 115, + 394, + 486, + 406 + ], + "score": 1.0, + "content": "plicit gradients. In Advances in Neural Information Processing Systems, pp. 113–124, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 382, + 504, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 412, + 432, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 432, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 432, + 426 + ], + "score": 1.0, + "content": "S. Ravi and H. Larochelle. Optimization as a model for few-shot learning. 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 412, + 432, + 426 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 431, + 504, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "M. Ren, E. Triantafillou, S. Ravi, J. Snell, K. Swersky, J. Tenenbaum, H. Larochelle, and R. Zemel.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 505, + 454 + ], + "score": 1.0, + "content": "Meta-learning for semi-supervised few-shot classification. arXiv preprint arXiv:1803.00676,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 451, + 143, + 466 + ], + "spans": [ + { + "bbox": [ + 114, + 451, + 143, + 466 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 430, + 505, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 504, + 495 + ], + "lines": [ + { + "bbox": [ + 105, + 470, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 485 + ], + "score": 1.0, + "content": "Sebastian Ruder. An overview of multi-task learning in deep neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 483, + 219, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 483, + 219, + 493 + ], + "score": 1.0, + "content": "arXiv:1706.05098, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 470, + 505, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 501, + 504, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "O. Russakovsky, J. Deng, H. Su, J. Krause, S. Satheesh, S. Ma, Z. Huang, A. Karpathy, A. Khosla,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 512, + 488, + 525 + ], + "spans": [ + { + "bbox": [ + 116, + 512, + 488, + 525 + ], + "score": 1.0, + "content": "and M. Bernstein. Imagenet large scale visual recognition challenge. 115(3):211–252, 2015.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 501, + 505, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 504, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 544 + ], + "score": 1.0, + "content": "Nikunj Saunshi, Yi Zhang, Mikhail Khodak, and Sanjeev Arora. A sample complexity separation", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 542, + 472, + 555 + ], + "spans": [ + { + "bbox": [ + 115, + 542, + 472, + 555 + ], + "score": 1.0, + "content": "between non-convex and convex meta-learning. arXiv preprint arXiv:2002.11172, 2020.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 530, + 505, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 560, + 504, + 584 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "Jurgen Schmidhuber. ¨ Evolutionary principles in self-referential learning, or on learning how to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 572, + 448, + 584 + ], + "spans": [ + { + "bbox": [ + 117, + 572, + 448, + 584 + ], + "score": 1.0, + "content": "learn: the meta-meta-... hook. PhD thesis, Technische Universitat M¨ unchen, 1987. ¨", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 560, + 505, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 504, + 614 + ], + "lines": [ + { + "bbox": [ + 104, + 588, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 588, + 506, + 604 + ], + "score": 1.0, + "content": "J. Snell, K. Swersky, and R. Zemel. Prototypical networks for few-shot learning. pp. 4077–4087,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 600, + 143, + 614 + ], + "spans": [ + { + "bbox": [ + 114, + 600, + 143, + 614 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 588, + 506, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 504, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "Sebastian Thrun and Lorien Pratt. Learning to Learn: Introduction and Overview, pp. 3–17.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "Springer US, Boston, MA, 1998. ISBN 978-1-4615-5529-2. doi: 10.1007/978-1-4615-5529-2 1.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 641, + 403, + 655 + ], + "spans": [ + { + "bbox": [ + 115, + 641, + 403, + 655 + ], + "score": 1.0, + "content": "URL https://doi.org/10.1007/978-1-4615-5529-2_1.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 619, + 506, + 655 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 660, + 502, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 660, + 504, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 504, + 674 + ], + "score": 1.0, + "content": "Nilesh Tripuraneni, Chi Jin, and Michael I Jordan. Provable meta-learning of linear representations.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 672, + 283, + 684 + ], + "spans": [ + { + "bbox": [ + 116, + 672, + 283, + 684 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2002.11684, 2020a.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 660, + 504, + 684 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 690, + 504, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 704 + ], + "score": 1.0, + "content": "Nilesh Tripuraneni, Michael I Jordan, and Chi Jin. On the theory of transfer learning: The impor-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 702, + 376, + 714 + ], + "spans": [ + { + "bbox": [ + 116, + 702, + 376, + 714 + ], + "score": 1.0, + "content": "tance of task diversity. arXiv preprint arXiv:2006.11650, 2020b.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 689, + 505, + 714 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 720, + 466, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 719, + 466, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 466, + 734 + ], + "score": 1.0, + "content": "Aad W Van der Vaart. Asymptotic statistics, volume 3. Cambridge university press, 2000.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 719, + 466, + 734 + ] + } + ] + }, + { + "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": "Roman Vershynin. High-dimensional probability: An introduction with applications in data science,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 304, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 304, + 106 + ], + "score": 1.0, + "content": "volume 47. Cambridge university press, 2018.", + "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": "Haoxiang Wang, Ruoyu Sun, and Bo Li. Global convergence and induced kernels of gradient-based", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 411, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 411, + 136 + ], + "score": 1.0, + "content": "meta-learning with neural nets. arXiv preprint arXiv:2006.14606, 2020a.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 504, + 166 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 506, + 157 + ], + "score": 1.0, + "content": "Xiang Wang, Shuai Yuan, Chenwei Wu, and Rong Ge. Guarantees for tuning the step size using a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 395, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 395, + 167 + ], + "score": 1.0, + "content": "learning-to-learn approach. arXiv preprint arXiv:2006.16495, 2020b.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 506, + 207 + ], + "lines": [ + { + "bbox": [ + 107, + 174, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 107, + 174, + 505, + 186 + ], + "score": 1.0, + "content": "Yujia Xie, Haoming Jiang, Feng Liu, Tuo Zhao, and Hongyuan Zha. Meta learning with relational", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 505, + 199 + ], + "score": 1.0, + "content": "information for short sequences. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 196, + 191, + 207 + ], + "spans": [ + { + "bbox": [ + 116, + 196, + 191, + 207 + ], + "score": 1.0, + "content": "9904–9915, 2019.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "Pan Zhou, Xiaotong Yuan, Huan Xu, Shuicheng Yan, and Jiashi Feng. Efficient meta learning via", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "minibatch proximal update. In Advances in Neural Information Processing Systems, pp. 1534–", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 236, + 167, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 236, + 167, + 249 + ], + "score": 1.0, + "content": "1544, 2019.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 270, + 252, + 283 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 252, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 252, + 285 + ], + "score": 1.0, + "content": "A PROOFS FOR SECTION 3", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 107, + 295, + 365, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 365, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 365, + 308 + ], + "score": 1.0, + "content": "A.1 DETAILED INTRODUCTION ON ASYMPTOTIC ANALYSIS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 104, + 315, + 477, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 478, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 478, + 328 + ], + "score": 1.0, + "content": "Here we provide more details on the asymptotic analysis framework sketched in Section 2.1.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 332, + 506, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 381, + 346 + ], + "score": 1.0, + "content": "In typical scenarios, for consistent ERMs, the limiting distribution of", + "type": "text" + }, + { + "bbox": [ + 381, + 333, + 403, + 345 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 332, + 506, + 346 + ], + "score": 1.0, + "content": "is asymptotically normal", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "with a known covariance matrix, as is characterized in the following classical result (see, e.g. Van der", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 354, + 315, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 315, + 367 + ], + "score": 1.0, + "content": "Vaart (2000, Theorem 5.21) and also Liang (2016)).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "Proposition 6 (Asymptotic normality and excess risk of ERMs). Assume the population minimizer", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 381, + 504, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 127, + 393 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 381, + 221, + 394 + ], + "score": 1.0, + "content": "is unique and the ERM", + "type": "text" + }, + { + "bbox": [ + 222, + 381, + 244, + 393 + ], + "score": 0.9, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 381, + 374, + 394 + ], + "score": 1.0, + "content": "is consistent (i.e. it converges to", + "type": "text" + }, + { + "bbox": [ + 375, + 383, + 395, + 393 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 381, + 464, + 394 + ], + "score": 1.0, + "content": "in probability as", + "type": "text" + }, + { + "bbox": [ + 464, + 381, + 498, + 391 + ], + "score": 0.88, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 381, + 504, + 394 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 392, + 315, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 315, + 405 + ], + "score": 1.0, + "content": "Further assume the following regularity conditions:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 105, + 412, + 455, + 425 + ], + "lines": [ + { + "bbox": [ + 108, + 412, + 455, + 426 + ], + "spans": [ + { + "bbox": [ + 108, + 412, + 267, + 426 + ], + "score": 1.0, + "content": "(a) There exists some random variable", + "type": "text" + }, + { + "bbox": [ + 267, + 413, + 347, + 425 + ], + "score": 0.91, + "content": "A _ { t } = A ( p _ { t } , \\mathbf { X } _ { t } , \\mathbf { y } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 412, + 387, + 426 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 387, + 412, + 435, + 425 + ], + "score": 0.93, + "content": "\\mathbb { E } [ A _ { t } ^ { 2 } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 412, + 455, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 430, + 401, + 444 + ], + "lines": [ + { + "bbox": [ + 228, + 430, + 401, + 444 + ], + "spans": [ + { + "bbox": [ + 228, + 430, + 401, + 444 + ], + "score": 0.88, + "content": "\\| \\nabla \\ell _ { t } ( \\mathbf { w } _ { 1 } ) - \\nabla \\ell _ { t } ( \\mathbf { w } _ { 2 } ) \\| \\leq A _ { t } \\| \\mathbf { w } _ { 1 } - \\mathbf { w } _ { 2 } \\|", + "type": "interline_equation", + "image_path": "876c938a19ee62d4d112a89e706f569cfeb4ca84ddb39e6fc71d505b1efd1425.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 228, + 430, + 401, + 444 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 123, + 450, + 212, + 463 + ], + "lines": [ + { + "bbox": [ + 122, + 449, + 213, + 464 + ], + "spans": [ + { + "bbox": [ + 122, + 449, + 152, + 464 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 153, + 450, + 208, + 462 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 1 } , \\mathbf { w } _ { 2 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 449, + 213, + 464 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 469, + 223, + 485 + ], + "lines": [ + { + "bbox": [ + 125, + 469, + 223, + 485 + ], + "spans": [ + { + "bbox": [ + 125, + 469, + 223, + 485 + ], + "score": 0.67, + "content": "\\mathbb { E } [ \\| \\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 , \\star } ) \\| ^ { 2 } ] < \\infty ;", + "type": "interline_equation", + "image_path": "667d9a8d45903e1f0796488e4f297e481d296f906b937112b8a5fad24dafda07.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 125, + 469, + 223, + 485 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 491, + 313, + 504 + ], + "lines": [ + { + "bbox": [ + 108, + 490, + 314, + 506 + ], + "spans": [ + { + "bbox": [ + 108, + 490, + 125, + 506 + ], + "score": 1.0, + "content": "(c)", + "type": "text" + }, + { + "bbox": [ + 125, + 492, + 133, + 502 + ], + "score": 0.71, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 490, + 243, + 506 + ], + "score": 1.0, + "content": "is twice-differentiable with", + "type": "text" + }, + { + "bbox": [ + 244, + 491, + 310, + 504 + ], + "score": 0.92, + "content": "\\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\succ \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 490, + 314, + 506 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 363, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 512, + 363, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 164, + 526 + ], + "score": 1.0, + "content": "then the ERM", + "type": "text" + }, + { + "bbox": [ + 164, + 513, + 186, + 525 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 512, + 363, + 526 + ], + "score": 1.0, + "content": "is asymptotically normally distributed, with", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 531, + 476, + 568 + ], + "lines": [ + { + "bbox": [ + 133, + 531, + 476, + 568 + ], + "spans": [ + { + "bbox": [ + 133, + 531, + 476, + 568 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\sqrt { T } \\cdot ( \\widehat { \\mathbf { w } } _ { 0 , T } - \\mathbf { w } _ { 0 , \\star } ) \\stackrel { d } { } \\mathsf { N } \\big ( \\mathbf { 0 } , \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 , \\star } ) ) \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) ^ { - 1 } \\big ) = : P _ { \\mathbf { w } } , } \\\\ & { T \\cdot ( L ( \\widehat { \\mathbf { w } } _ { 0 , T } ) - L ( \\mathbf { w } _ { 0 , \\star } ) ) \\stackrel { d } { } \\Delta ^ { \\top } \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\Delta \\quad \\mathrm { w h e r e } \\Delta \\sim P _ { \\mathbf { w } } . } \\end{array}", + "type": "interline_equation", + "image_path": "5832905b83f6880c8c9649b45ec714272652f20c2bfb58f5cb2ec06398786bc6.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 133, + 531, + 476, + 543.3333333333334 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 133, + 543.3333333333334, + 476, + 555.6666666666667 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 133, + 555.6666666666667, + 476, + 568.0000000000001 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 576, + 503, + 590 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 503, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 133, + 591 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 574, + 145, + 587 + ], + "score": 0.73, + "content": "\\overset { d } { \\to }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 574, + 307, + 591 + ], + "score": 1.0, + "content": "denotes convergence in distribution and", + "type": "text" + }, + { + "bbox": [ + 307, + 577, + 359, + 588 + ], + "score": 0.92, + "content": "\\ell _ { t } : \\mathbb { R } ^ { d } \\to \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 574, + 503, + 591 + ], + "score": 1.0, + "content": "is the loss function on a single task.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 504, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 597, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 612 + ], + "score": 1.0, + "content": "When this happens, we define the asymptotic rate of estimation (in MSE loss) and asymptotic excess", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 610, + 289, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 124, + 622 + ], + "score": 1.0, + "content": "risk", + "type": "text" + }, + { + "bbox": [ + 124, + 610, + 146, + 622 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 610, + 289, + 622 + ], + "score": 1.0, + "content": "as those of its limiting distribution:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 626, + 502, + 666 + ], + "lines": [ + { + "bbox": [ + 111, + 626, + 502, + 666 + ], + "spans": [ + { + "bbox": [ + 111, + 626, + 502, + 666 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\mathbb { E } _ { \\Delta \\sim P _ { \\mathrm { w } } } \\Big [ \\big \\| \\Delta \\big \\| ^ { 2 } \\Big ] = \\mathrm { t r } \\big ( \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf w _ { 0 , \\star } ) ) \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\big ) } \\\\ & { \\mathrm { A s y m E x c e s s R i s k } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\mathbb { E } _ { \\Delta \\sim P _ { \\mathrm { w } } } \\big [ \\Delta ^ { \\top } \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) \\Delta \\big ] = \\mathrm { t r } \\big ( \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf w _ { 0 , \\star } ) ) \\big ) . } \\end{array}", + "type": "interline_equation", + "image_path": "52ab5c58ade80b07c7b0eb65eca40c63bc3582a87297f9af5c2ce952ac79fd53.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 111, + 626, + 502, + 639.3333333333334 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 111, + 639.3333333333334, + 502, + 652.6666666666667 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 111, + 652.6666666666667, + 502, + 666.0000000000001 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 676, + 245, + 688 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 246, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 246, + 689 + ], + "score": 1.0, + "content": "A.2 PROOF OF PROPOSITION 1", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 105, + 696, + 475, + 710 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 475, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 475, + 710 + ], + "score": 1.0, + "content": "Equivalence of test-time risk and training loss for train-val method We first show that", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 714, + 391, + 731 + ], + "lines": [ + { + "bbox": [ + 219, + 714, + 391, + 731 + ], + "spans": [ + { + "bbox": [ + 219, + 714, + 391, + 731 + ], + "score": 0.9, + "content": "L ^ { \\mathsf { t r } - \\mathsf { v a l } } ( \\mathbf { w } _ { 0 } ) = \\mathbb { E } [ \\ell _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ( \\mathbf { w } _ { 0 } ) ] = L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( \\mathbf { w } _ { 0 } )", + "type": "interline_equation", + "image_path": "8bb3b20da53ca474ff5c82aa7350733a61dcebdc04adc05ea304718401dc6eaa.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 219, + 714, + 391, + 731 + ], + "spans": [], + "index": 38 + } + ] + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "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": "Roman Vershynin. High-dimensional probability: An introduction with applications in data science,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 304, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 304, + 106 + ], + "score": 1.0, + "content": "volume 47. Cambridge university press, 2018.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 80, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "Haoxiang Wang, Ruoyu Sun, and Bo Li. Global convergence and induced kernels of gradient-based", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 411, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 411, + 136 + ], + "score": 1.0, + "content": "meta-learning with neural nets. arXiv preprint arXiv:2006.14606, 2020a.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 113, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 504, + 166 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 506, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 506, + 157 + ], + "score": 1.0, + "content": "Xiang Wang, Shuai Yuan, Chenwei Wu, and Rong Ge. Guarantees for tuning the step size using a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 395, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 395, + 167 + ], + "score": 1.0, + "content": "learning-to-learn approach. arXiv preprint arXiv:2006.16495, 2020b.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 142, + 506, + 167 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 506, + 207 + ], + "lines": [ + { + "bbox": [ + 107, + 174, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 107, + 174, + 505, + 186 + ], + "score": 1.0, + "content": "Yujia Xie, Haoming Jiang, Feng Liu, Tuo Zhao, and Hongyuan Zha. Meta learning with relational", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 505, + 199 + ], + "score": 1.0, + "content": "information for short sequences. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 196, + 191, + 207 + ], + "spans": [ + { + "bbox": [ + 116, + 196, + 191, + 207 + ], + "score": 1.0, + "content": "9904–9915, 2019.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 107, + 174, + 505, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "Pan Zhou, Xiaotong Yuan, Huan Xu, Shuicheng Yan, and Jiashi Feng. Efficient meta learning via", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "minibatch proximal update. In Advances in Neural Information Processing Systems, pp. 1534–", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 236, + 167, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 236, + 167, + 249 + ], + "score": 1.0, + "content": "1544, 2019.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 214, + 505, + 249 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 270, + 252, + 283 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 252, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 252, + 285 + ], + "score": 1.0, + "content": "A PROOFS FOR SECTION 3", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 107, + 295, + 365, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 365, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 365, + 308 + ], + "score": 1.0, + "content": "A.1 DETAILED INTRODUCTION ON ASYMPTOTIC ANALYSIS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 104, + 315, + 477, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 478, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 478, + 328 + ], + "score": 1.0, + "content": "Here we provide more details on the asymptotic analysis framework sketched in Section 2.1.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 316, + 478, + 328 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 332, + 506, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 381, + 346 + ], + "score": 1.0, + "content": "In typical scenarios, for consistent ERMs, the limiting distribution of", + "type": "text" + }, + { + "bbox": [ + 381, + 333, + 403, + 345 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 332, + 506, + 346 + ], + "score": 1.0, + "content": "is asymptotically normal", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "with a known covariance matrix, as is characterized in the following classical result (see, e.g. Van der", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 354, + 315, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 315, + 367 + ], + "score": 1.0, + "content": "Vaart (2000, Theorem 5.21) and also Liang (2016)).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 332, + 506, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 369, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "Proposition 6 (Asymptotic normality and excess risk of ERMs). Assume the population minimizer", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 381, + 504, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 127, + 393 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 381, + 221, + 394 + ], + "score": 1.0, + "content": "is unique and the ERM", + "type": "text" + }, + { + "bbox": [ + 222, + 381, + 244, + 393 + ], + "score": 0.9, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 381, + 374, + 394 + ], + "score": 1.0, + "content": "is consistent (i.e. it converges to", + "type": "text" + }, + { + "bbox": [ + 375, + 383, + 395, + 393 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 381, + 464, + 394 + ], + "score": 1.0, + "content": "in probability as", + "type": "text" + }, + { + "bbox": [ + 464, + 381, + 498, + 391 + ], + "score": 0.88, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 381, + 504, + 394 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 392, + 315, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 315, + 405 + ], + "score": 1.0, + "content": "Further assume the following regularity conditions:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 369, + 505, + 405 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 412, + 455, + 425 + ], + "lines": [ + { + "bbox": [ + 108, + 412, + 455, + 426 + ], + "spans": [ + { + "bbox": [ + 108, + 412, + 267, + 426 + ], + "score": 1.0, + "content": "(a) There exists some random variable", + "type": "text" + }, + { + "bbox": [ + 267, + 413, + 347, + 425 + ], + "score": 0.91, + "content": "A _ { t } = A ( p _ { t } , \\mathbf { X } _ { t } , \\mathbf { y } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 412, + 387, + 426 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 387, + 412, + 435, + 425 + ], + "score": 0.93, + "content": "\\mathbb { E } [ A _ { t } ^ { 2 } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 412, + 455, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 108, + 412, + 455, + 426 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 430, + 401, + 444 + ], + "lines": [ + { + "bbox": [ + 228, + 430, + 401, + 444 + ], + "spans": [ + { + "bbox": [ + 228, + 430, + 401, + 444 + ], + "score": 0.88, + "content": "\\| \\nabla \\ell _ { t } ( \\mathbf { w } _ { 1 } ) - \\nabla \\ell _ { t } ( \\mathbf { w } _ { 2 } ) \\| \\leq A _ { t } \\| \\mathbf { w } _ { 1 } - \\mathbf { w } _ { 2 } \\|", + "type": "interline_equation", + "image_path": "876c938a19ee62d4d112a89e706f569cfeb4ca84ddb39e6fc71d505b1efd1425.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 228, + 430, + 401, + 444 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 123, + 450, + 212, + 463 + ], + "lines": [ + { + "bbox": [ + 122, + 449, + 213, + 464 + ], + "spans": [ + { + "bbox": [ + 122, + 449, + 152, + 464 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 153, + 450, + 208, + 462 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 1 } , \\mathbf { w } _ { 2 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 449, + 213, + 464 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 122, + 449, + 213, + 464 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 125, + 469, + 223, + 485 + ], + "lines": [ + { + "bbox": [ + 125, + 469, + 223, + 485 + ], + "spans": [ + { + "bbox": [ + 125, + 469, + 223, + 485 + ], + "score": 0.67, + "content": "\\mathbb { E } [ \\| \\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 , \\star } ) \\| ^ { 2 } ] < \\infty ;", + "type": "interline_equation", + "image_path": "667d9a8d45903e1f0796488e4f297e481d296f906b937112b8a5fad24dafda07.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 125, + 469, + 223, + 485 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 491, + 313, + 504 + ], + "lines": [ + { + "bbox": [ + 108, + 490, + 314, + 506 + ], + "spans": [ + { + "bbox": [ + 108, + 490, + 125, + 506 + ], + "score": 1.0, + "content": "(c)", + "type": "text" + }, + { + "bbox": [ + 125, + 492, + 133, + 502 + ], + "score": 0.71, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 490, + 243, + 506 + ], + "score": 1.0, + "content": "is twice-differentiable with", + "type": "text" + }, + { + "bbox": [ + 244, + 491, + 310, + 504 + ], + "score": 0.92, + "content": "\\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\succ \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 490, + 314, + 506 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 108, + 490, + 314, + 506 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 363, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 512, + 363, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 164, + 526 + ], + "score": 1.0, + "content": "then the ERM", + "type": "text" + }, + { + "bbox": [ + 164, + 513, + 186, + 525 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 512, + 363, + 526 + ], + "score": 1.0, + "content": "is asymptotically normally distributed, with", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 512, + 363, + 526 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 531, + 476, + 568 + ], + "lines": [ + { + "bbox": [ + 133, + 531, + 476, + 568 + ], + "spans": [ + { + "bbox": [ + 133, + 531, + 476, + 568 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\sqrt { T } \\cdot ( \\widehat { \\mathbf { w } } _ { 0 , T } - \\mathbf { w } _ { 0 , \\star } ) \\stackrel { d } { } \\mathsf { N } \\big ( \\mathbf { 0 } , \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 , \\star } ) ) \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) ^ { - 1 } \\big ) = : P _ { \\mathbf { w } } , } \\\\ & { T \\cdot ( L ( \\widehat { \\mathbf { w } } _ { 0 , T } ) - L ( \\mathbf { w } _ { 0 , \\star } ) ) \\stackrel { d } { } \\Delta ^ { \\top } \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\Delta \\quad \\mathrm { w h e r e } \\Delta \\sim P _ { \\mathbf { w } } . } \\end{array}", + "type": "interline_equation", + "image_path": "5832905b83f6880c8c9649b45ec714272652f20c2bfb58f5cb2ec06398786bc6.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 133, + 531, + 476, + 543.3333333333334 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 133, + 543.3333333333334, + 476, + 555.6666666666667 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 133, + 555.6666666666667, + 476, + 568.0000000000001 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 576, + 503, + 590 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 503, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 133, + 591 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 574, + 145, + 587 + ], + "score": 0.73, + "content": "\\overset { d } { \\to }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 574, + 307, + 591 + ], + "score": 1.0, + "content": "denotes convergence in distribution and", + "type": "text" + }, + { + "bbox": [ + 307, + 577, + 359, + 588 + ], + "score": 0.92, + "content": "\\ell _ { t } : \\mathbb { R } ^ { d } \\to \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 574, + 503, + 591 + ], + "score": 1.0, + "content": "is the loss function on a single task.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 574, + 503, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 504, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 597, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 612 + ], + "score": 1.0, + "content": "When this happens, we define the asymptotic rate of estimation (in MSE loss) and asymptotic excess", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 610, + 289, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 124, + 622 + ], + "score": 1.0, + "content": "risk", + "type": "text" + }, + { + "bbox": [ + 124, + 610, + 146, + 622 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 610, + 289, + 622 + ], + "score": 1.0, + "content": "as those of its limiting distribution:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 597, + 505, + 622 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 626, + 502, + 666 + ], + "lines": [ + { + "bbox": [ + 111, + 626, + 502, + 666 + ], + "spans": [ + { + "bbox": [ + 111, + 626, + 502, + 666 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\mathbb { E } _ { \\Delta \\sim P _ { \\mathrm { w } } } \\Big [ \\big \\| \\Delta \\big \\| ^ { 2 } \\Big ] = \\mathrm { t r } \\big ( \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf w _ { 0 , \\star } ) ) \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\big ) } \\\\ & { \\mathrm { A s y m E x c e s s R i s k } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\mathbb { E } _ { \\Delta \\sim P _ { \\mathrm { w } } } \\big [ \\Delta ^ { \\top } \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) \\Delta \\big ] = \\mathrm { t r } \\big ( \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf w _ { 0 , \\star } ) ) \\big ) . } \\end{array}", + "type": "interline_equation", + "image_path": "52ab5c58ade80b07c7b0eb65eca40c63bc3582a87297f9af5c2ce952ac79fd53.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 111, + 626, + 502, + 639.3333333333334 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 111, + 639.3333333333334, + 502, + 652.6666666666667 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 111, + 652.6666666666667, + 502, + 666.0000000000001 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 676, + 245, + 688 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 246, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 246, + 689 + ], + "score": 1.0, + "content": "A.2 PROOF OF PROPOSITION 1", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 105, + 696, + 475, + 710 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 475, + 710 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 475, + 710 + ], + "score": 1.0, + "content": "Equivalence of test-time risk and training loss for train-val method We first show that", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 696, + 475, + 710 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 714, + 391, + 731 + ], + "lines": [ + { + "bbox": [ + 219, + 714, + 391, + 731 + ], + "spans": [ + { + "bbox": [ + 219, + 714, + 391, + 731 + ], + "score": 0.9, + "content": "L ^ { \\mathsf { t r } - \\mathsf { v a l } } ( \\mathbf { w } _ { 0 } ) = \\mathbb { E } [ \\ell _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ( \\mathbf { w } _ { 0 } ) ] = L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( \\mathbf { w } _ { 0 } )", + "type": "interline_equation", + "image_path": "8bb3b20da53ca474ff5c82aa7350733a61dcebdc04adc05ea304718401dc6eaa.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 219, + 714, + 391, + 731 + ], + "spans": [], + "index": 38 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 132, + 95 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 132, + 84, + 146, + 94 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ", that is, the population meta-test loss is exactly the same as the population risk of the train-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 103, + 88, + 509, + 111 + ], + "spans": [ + { + "bbox": [ + 103, + 88, + 355, + 111 + ], + "score": 1.0, + "content": "val method. This is straightforward: as the tasks are i.i.d. and", + "type": "text" + }, + { + "bbox": [ + 355, + 93, + 443, + 106 + ], + "score": 0.92, + "content": "\\mathscr { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 88, + 509, + 111 + ], + "score": 1.0, + "content": "is independent", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 102, + 99, + 328, + 121 + ], + "spans": [ + { + "bbox": [ + 102, + 99, + 176, + 121 + ], + "score": 1.0, + "content": "of the test points", + "type": "text" + }, + { + "bbox": [ + 176, + 104, + 221, + 117 + ], + "score": 0.92, + "content": "( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } , \\bar { \\mathbf { y } } _ { t } ^ { \\mathsf { v a l } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 99, + 291, + 121 + ], + "score": 1.0, + "content": ", we have for any", + "type": "text" + }, + { + "bbox": [ + 291, + 106, + 306, + 116 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 99, + 328, + 121 + ], + "score": 1.0, + "content": "that", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 144, + 120, + 469, + 220 + ], + "lines": [ + { + "bbox": [ + 144, + 120, + 469, + 220 + ], + "spans": [ + { + "bbox": [ + 144, + 120, + 469, + 220 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } [ \\ell _ { t } ^ { \\mathrm { t r } - \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) ] = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\frac { 1 } { 2 n _ { 2 } } \\left. \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathcal { A } _ { \\lambda } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } \\big ) \\right. ^ { 2 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\frac { 1 } { 2 } \\big ( y _ { t , 1 } ^ { \\mathrm { v a l } } - \\mathbf { x } _ { t , 1 } ^ { \\mathrm { v a l } } \\mathcal { A } _ { \\lambda } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } \\big ) \\big ) ^ { 2 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { T + 1 } \\sim \\Pi , ( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) , ( \\mathbf { x } ^ { \\prime } , y ^ { \\prime } ) \\overset { \\mathrm { i d } } { \\sim } p _ { t } } \\left[ \\frac { 1 } { 2 } \\big ( y ^ { \\prime } - \\mathbf { x } ^ { \\prime \\top } \\mathcal { A } _ { \\lambda , n _ { 1 } } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } \\big ) \\big ) ^ { 2 } \\right] } \\\\ & { = L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e x t } } ( \\mathbf { w } _ { 0 } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "9663f017c3ad7473cca1d52b877596a25685acbb24523e810c27010a9fba4680.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 144, + 120, + 469, + 153.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 144, + 153.33333333333334, + 469, + 186.66666666666669 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 144, + 186.66666666666669, + 469, + 220.00000000000003 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 223, + 504, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 507, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 386, + 235 + ], + "score": 1.0, + "content": "Therefore the train-val method is acutally a valid ERM for the test loss", + "type": "text" + }, + { + "bbox": [ + 386, + 220, + 507, + 238 + ], + "score": 1.0, + "content": "Ltestλ,n , and it remains to show", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 235, + 289, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 289, + 247 + ], + "score": 1.0, + "content": "that the train-val method is (itself) consistent.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 391, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 392, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 392, + 273 + ], + "score": 1.0, + "content": "Consistency We expand the empirical risk of the train-val method as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 274, + 514, + 403 + ], + "lines": [ + { + "bbox": [ + 111, + 274, + 514, + 403 + ], + "spans": [ + { + "bbox": [ + 111, + 274, + 514, + 403 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\hat { L } _ { T } ^ { \\mathrm { t r a s a l } } ( \\mathbf { w } _ { 0 } ) = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { s a l } } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } ) \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } [ \\mathbf { w } _ { 0 } + ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } ( \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } - \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { 0 } ) ] \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } n _ { 1 } \\lambda ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) \\right. } \\\\ & = \\displaystyle \\frac { 1 } { 2 } \\mathbf { w } _ { 0 } ^ { \\top } \\mathbf { M } _ { T } \\mathbf { w } _ { 0 } - \\mathbf { w } _ { 0 } ^ { \\top } \\mathbf { b } _ { T } + \\mathrm c o n \\end{array}", + "type": "interline_equation", + "image_path": "029bbd8e60def74f40c672cc8ec681f12c782211627775f45ecea272647cb43f.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 111, + 274, + 514, + 317.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 317.0, + 514, + 360.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 111, + 360.0, + 514, + 403.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 133, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 135, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 135, + 418 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 419, + 514, + 486 + ], + "lines": [ + { + "bbox": [ + 111, + 419, + 514, + 486 + ], + "spans": [ + { + "bbox": [ + 111, + 419, + 514, + 486 + ], + "score": 0.89, + "content": "\\begin{array} { r l } & { \\displaystyle \\mathbf { { d } } _ { T } : = \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { n _ { 2 } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } , } \\\\ & \\displaystyle _ { \\mathcal { N } : = \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\lambda ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\cdot \\frac { 1 } { n _ { 2 } } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\left( \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\right) ^ { - 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "337e28258706a54b059e8507a74940430b20cb8749e2a6cb8dcba9785ed80322.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 111, + 419, + 514, + 441.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 111, + 441.3333333333333, + 514, + 463.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 111, + 463.66666666666663, + 514, + 485.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 507, + 529 + ], + "lines": [ + { + "bbox": [ + 104, + 491, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 491, + 162, + 509 + ], + "score": 1.0, + "content": "Noticing that", + "type": "text" + }, + { + "bbox": [ + 163, + 492, + 317, + 507 + ], + "score": 0.94, + "content": "( { \\bf X } _ { t } ^ { \\sf t r a i n ^ { \\top } } { \\bf X } _ { t } ^ { \\sf t r a i n } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } \\preceq \\lambda ^ { - 1 } { \\bf I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 491, + 429, + 509 + ], + "score": 1.0, + "content": "and by the assumption that", + "type": "text" + }, + { + "bbox": [ + 429, + 494, + 505, + 507 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] ", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 505, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 107, + 508, + 118, + 517 + ], + "score": 0.44, + "content": "\\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 505, + 121, + 520 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 121, + 507, + 203, + 519 + ], + "score": 0.77, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\mathbf { x y } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 505, + 243, + 520 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 243, + 507, + 307, + 519 + ], + "score": 0.9, + "content": "\\mathbb { E } [ \\| \\mathbf { M } _ { T } \\| ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 505, + 326, + 520 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 326, + 506, + 385, + 519 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\| \\mathbf { b } _ { T } \\| ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 505, + 449, + 520 + ], + "score": 1.0, + "content": ". Since the task", + "type": "text" + }, + { + "bbox": [ + 449, + 509, + 459, + 518 + ], + "score": 0.85, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 505, + 506, + 520 + ], + "score": 1.0, + "content": "’s are i.i.d.,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 517, + 360, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 360, + 530 + ], + "score": 1.0, + "content": "by the law of large numbers, we have with probability one that", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 532, + 478, + 594 + ], + "lines": [ + { + "bbox": [ + 124, + 532, + 478, + 594 + ], + "spans": [ + { + "bbox": [ + 124, + 532, + 478, + 594 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\quad \\mathbf { M } _ { T } \\to \\mathbb { E } [ \\mathbf { M } _ { T } ] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathsf { v a l } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } } { n _ { 2 } } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\right] \\succ \\mathbf { 0 } , } \\end{array}", + "type": "interline_equation", + "image_path": "2bedcf03949b86b1cf2eada4781ed55c04455629c5c834cd48545936651cba51.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 124, + 532, + 478, + 552.6666666666666 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 124, + 552.6666666666666, + 478, + 573.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 124, + 573.3333333333333, + 478, + 593.9999999999999 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 253, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 254, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 137, + 612 + ], + "score": 1.0, + "content": "(where", + "type": "text" + }, + { + "bbox": [ + 137, + 596, + 233, + 610 + ], + "score": 0.93, + "content": "\\pmb { \\Sigma } _ { t } = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] \\succ \\mathbf { 0 } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 595, + 254, + 612 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 108, + 613, + 500, + 656 + ], + "lines": [ + { + "bbox": [ + 108, + 613, + 500, + 656 + ], + "spans": [ + { + "bbox": [ + 108, + 613, + 500, + 656 + ], + "score": 0.81, + "content": "\\begin{array} { r l } & { \\quad \\mathbf { b } _ { T } \\to \\mathbb { E } [ \\mathbf { b } _ { T } ] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\boldsymbol { \\lambda } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\boldsymbol { \\lambda } \\mathbf { I } _ { d } ) ^ { - 1 } \\cdot \\frac { 1 } { n _ { 2 } } \\mathbf { X } _ { t } ^ { \\mathrm { v a l \\top } } \\left( { \\mathbf { y } } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( { \\mathbf { X } } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\boldsymbol { \\lambda } \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } \\right. \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "a0e2f23a1ddd939088ec98f3ef942721d514a40004726f3bdfc7335dd0ff4ef8.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 108, + 613, + 500, + 627.3333333333334 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 108, + 627.3333333333334, + 500, + 641.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 108, + 641.6666666666667, + 500, + 656.0000000000001 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 327, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 328, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 117, + 693 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 680, + 151, + 689 + ], + "score": 0.9, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 678, + 328, + 693 + ], + "score": 1.0, + "content": ". Therefore, by Slutsky’s Theorem, we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 695, + 504, + 716 + ], + "lines": [ + { + "bbox": [ + 111, + 695, + 504, + 716 + ], + "spans": [ + { + "bbox": [ + 111, + 695, + 504, + 716 + ], + "score": 0.9, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } = \\mathbf { M } _ { T } ^ { - 1 } \\mathbf { b } _ { T } \\mathbb { E } [ \\mathbf { M } _ { T } ] ^ { - 1 } \\mathbb { E } [ \\mathbf { b } _ { T } ] = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( \\mathbf { w } _ { 0 } ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) = \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )", + "type": "interline_equation", + "image_path": "6a41934edf6f87ae51a7073ccfcbb8851242d6b34054d4a18f34bcbb180944d1.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 111, + 695, + 504, + 716 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 364, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 720, + 364, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 117, + 734 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 721, + 151, + 730 + ], + "score": 0.9, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 720, + 364, + 734 + ], + "score": 1.0, + "content": ". This proves the consistency of the train-val method.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 132, + 95 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 132, + 84, + 146, + 94 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ", that is, the population meta-test loss is exactly the same as the population risk of the train-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 103, + 88, + 509, + 111 + ], + "spans": [ + { + "bbox": [ + 103, + 88, + 355, + 111 + ], + "score": 1.0, + "content": "val method. This is straightforward: as the tasks are i.i.d. and", + "type": "text" + }, + { + "bbox": [ + 355, + 93, + 443, + 106 + ], + "score": 0.92, + "content": "\\mathscr { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 88, + 509, + 111 + ], + "score": 1.0, + "content": "is independent", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 102, + 99, + 328, + 121 + ], + "spans": [ + { + "bbox": [ + 102, + 99, + 176, + 121 + ], + "score": 1.0, + "content": "of the test points", + "type": "text" + }, + { + "bbox": [ + 176, + 104, + 221, + 117 + ], + "score": 0.92, + "content": "( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } , \\bar { \\mathbf { y } } _ { t } ^ { \\mathsf { v a l } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 99, + 291, + 121 + ], + "score": 1.0, + "content": ", we have for any", + "type": "text" + }, + { + "bbox": [ + 291, + 106, + 306, + 116 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 99, + 328, + 121 + ], + "score": 1.0, + "content": "that", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 102, + 82, + 509, + 121 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 144, + 120, + 469, + 220 + ], + "lines": [ + { + "bbox": [ + 144, + 120, + 469, + 220 + ], + "spans": [ + { + "bbox": [ + 144, + 120, + 469, + 220 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } [ \\ell _ { t } ^ { \\mathrm { t r } - \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) ] = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\frac { 1 } { 2 n _ { 2 } } \\left. \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathcal { A } _ { \\lambda } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } \\big ) \\right. ^ { 2 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\frac { 1 } { 2 } \\big ( y _ { t , 1 } ^ { \\mathrm { v a l } } - \\mathbf { x } _ { t , 1 } ^ { \\mathrm { v a l } } \\mathcal { A } _ { \\lambda } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } \\big ) \\big ) ^ { 2 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { T + 1 } \\sim \\Pi , ( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) , ( \\mathbf { x } ^ { \\prime } , y ^ { \\prime } ) \\overset { \\mathrm { i d } } { \\sim } p _ { t } } \\left[ \\frac { 1 } { 2 } \\big ( y ^ { \\prime } - \\mathbf { x } ^ { \\prime \\top } \\mathcal { A } _ { \\lambda , n _ { 1 } } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } \\big ) \\big ) ^ { 2 } \\right] } \\\\ & { = L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e x t } } ( \\mathbf { w } _ { 0 } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "9663f017c3ad7473cca1d52b877596a25685acbb24523e810c27010a9fba4680.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 144, + 120, + 469, + 153.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 144, + 153.33333333333334, + 469, + 186.66666666666669 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 144, + 186.66666666666669, + 469, + 220.00000000000003 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 223, + 504, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 507, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 386, + 235 + ], + "score": 1.0, + "content": "Therefore the train-val method is acutally a valid ERM for the test loss", + "type": "text" + }, + { + "bbox": [ + 386, + 220, + 507, + 238 + ], + "score": 1.0, + "content": "Ltestλ,n , and it remains to show", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 235, + 289, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 289, + 247 + ], + "score": 1.0, + "content": "that the train-val method is (itself) consistent.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 220, + 507, + 247 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 391, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 392, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 392, + 273 + ], + "score": 1.0, + "content": "Consistency We expand the empirical risk of the train-val method as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 257, + 392, + 273 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 274, + 514, + 403 + ], + "lines": [ + { + "bbox": [ + 111, + 274, + 514, + 403 + ], + "spans": [ + { + "bbox": [ + 111, + 274, + 514, + 403 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\hat { L } _ { T } ^ { \\mathrm { t r a s a l } } ( \\mathbf { w } _ { 0 } ) = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { s a l } } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } ) \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } [ \\mathbf { w } _ { 0 } + ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } ( \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } - \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { 0 } ) ] \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } n _ { 1 } \\lambda ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) \\right. } \\\\ & = \\displaystyle \\frac { 1 } { 2 } \\mathbf { w } _ { 0 } ^ { \\top } \\mathbf { M } _ { T } \\mathbf { w } _ { 0 } - \\mathbf { w } _ { 0 } ^ { \\top } \\mathbf { b } _ { T } + \\mathrm c o n \\end{array}", + "type": "interline_equation", + "image_path": "029bbd8e60def74f40c672cc8ec681f12c782211627775f45ecea272647cb43f.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 111, + 274, + 514, + 317.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 317.0, + 514, + 360.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 111, + 360.0, + 514, + 403.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 133, + 416 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 135, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 135, + 418 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 404, + 135, + 418 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 419, + 514, + 486 + ], + "lines": [ + { + "bbox": [ + 111, + 419, + 514, + 486 + ], + "spans": [ + { + "bbox": [ + 111, + 419, + 514, + 486 + ], + "score": 0.89, + "content": "\\begin{array} { r l } & { \\displaystyle \\mathbf { { d } } _ { T } : = \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { n _ { 2 } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } , } \\\\ & \\displaystyle _ { \\mathcal { N } : = \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\lambda ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\cdot \\frac { 1 } { n _ { 2 } } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\left( \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\right) ^ { - 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "337e28258706a54b059e8507a74940430b20cb8749e2a6cb8dcba9785ed80322.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 111, + 419, + 514, + 441.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 111, + 441.3333333333333, + 514, + 463.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 111, + 463.66666666666663, + 514, + 485.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 507, + 529 + ], + "lines": [ + { + "bbox": [ + 104, + 491, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 491, + 162, + 509 + ], + "score": 1.0, + "content": "Noticing that", + "type": "text" + }, + { + "bbox": [ + 163, + 492, + 317, + 507 + ], + "score": 0.94, + "content": "( { \\bf X } _ { t } ^ { \\sf t r a i n ^ { \\top } } { \\bf X } _ { t } ^ { \\sf t r a i n } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } \\preceq \\lambda ^ { - 1 } { \\bf I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 491, + 429, + 509 + ], + "score": 1.0, + "content": "and by the assumption that", + "type": "text" + }, + { + "bbox": [ + 429, + 494, + 505, + 507 + ], + "score": 0.9, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] ", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 505, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 107, + 508, + 118, + 517 + ], + "score": 0.44, + "content": "\\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 505, + 121, + 520 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 121, + 507, + 203, + 519 + ], + "score": 0.77, + "content": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\mathbf { x y } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 505, + 243, + 520 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 243, + 507, + 307, + 519 + ], + "score": 0.9, + "content": "\\mathbb { E } [ \\| \\mathbf { M } _ { T } \\| ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 505, + 326, + 520 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 326, + 506, + 385, + 519 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\| \\mathbf { b } _ { T } \\| ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 505, + 449, + 520 + ], + "score": 1.0, + "content": ". Since the task", + "type": "text" + }, + { + "bbox": [ + 449, + 509, + 459, + 518 + ], + "score": 0.85, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 505, + 506, + 520 + ], + "score": 1.0, + "content": "’s are i.i.d.,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 517, + 360, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 360, + 530 + ], + "score": 1.0, + "content": "by the law of large numbers, we have with probability one that", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 491, + 506, + 530 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 532, + 478, + 594 + ], + "lines": [ + { + "bbox": [ + 124, + 532, + 478, + 594 + ], + "spans": [ + { + "bbox": [ + 124, + 532, + 478, + 594 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\quad \\mathbf { M } _ { T } \\to \\mathbb { E } [ \\mathbf { M } _ { T } ] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathsf { v a l } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } } { n _ { 2 } } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\right] \\succ \\mathbf { 0 } , } \\end{array}", + "type": "interline_equation", + "image_path": "2bedcf03949b86b1cf2eada4781ed55c04455629c5c834cd48545936651cba51.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 124, + 532, + 478, + 552.6666666666666 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 124, + 552.6666666666666, + 478, + 573.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 124, + 573.3333333333333, + 478, + 593.9999999999999 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 253, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 254, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 137, + 612 + ], + "score": 1.0, + "content": "(where", + "type": "text" + }, + { + "bbox": [ + 137, + 596, + 233, + 610 + ], + "score": 0.93, + "content": "\\pmb { \\Sigma } _ { t } = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] \\succ \\mathbf { 0 } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 595, + 254, + 612 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 595, + 254, + 612 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 108, + 613, + 500, + 656 + ], + "lines": [ + { + "bbox": [ + 108, + 613, + 500, + 656 + ], + "spans": [ + { + "bbox": [ + 108, + 613, + 500, + 656 + ], + "score": 0.81, + "content": "\\begin{array} { r l } & { \\quad \\mathbf { b } _ { T } \\to \\mathbb { E } [ \\mathbf { b } _ { T } ] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\boldsymbol { \\lambda } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\boldsymbol { \\lambda } \\mathbf { I } _ { d } ) ^ { - 1 } \\cdot \\frac { 1 } { n _ { 2 } } \\mathbf { X } _ { t } ^ { \\mathrm { v a l \\top } } \\left( { \\mathbf { y } } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( { \\mathbf { X } } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\boldsymbol { \\lambda } \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } \\right. \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "a0e2f23a1ddd939088ec98f3ef942721d514a40004726f3bdfc7335dd0ff4ef8.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 108, + 613, + 500, + 627.3333333333334 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 108, + 627.3333333333334, + 500, + 641.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 108, + 641.6666666666667, + 500, + 656.0000000000001 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 327, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 328, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 117, + 693 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 680, + 151, + 689 + ], + "score": 0.9, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 678, + 328, + 693 + ], + "score": 1.0, + "content": ". Therefore, by Slutsky’s Theorem, we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 678, + 328, + 693 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 695, + 504, + 716 + ], + "lines": [ + { + "bbox": [ + 111, + 695, + 504, + 716 + ], + "spans": [ + { + "bbox": [ + 111, + 695, + 504, + 716 + ], + "score": 0.9, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } = \\mathbf { M } _ { T } ^ { - 1 } \\mathbf { b } _ { T } \\mathbb { E } [ \\mathbf { M } _ { T } ] ^ { - 1 } \\mathbb { E } [ \\mathbf { b } _ { T } ] = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( \\mathbf { w } _ { 0 } ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) = \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )", + "type": "interline_equation", + "image_path": "6a41934edf6f87ae51a7073ccfcbb8851242d6b34054d4a18f34bcbb180944d1.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 111, + 695, + 504, + 716 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 364, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 720, + 364, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 117, + 734 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 117, + 721, + 151, + 730 + ], + "score": 0.9, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 720, + 364, + 734 + ], + "score": 1.0, + "content": ". This proves the consistency of the train-val method.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 720, + 364, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 411, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 414, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 414, + 97 + ], + "score": 1.0, + "content": "Asymptotic normality Similar as above, we can write the per-task loss as", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 100, + 363, + 124 + ], + "lines": [ + { + "bbox": [ + 246, + 100, + 363, + 124 + ], + "spans": [ + { + "bbox": [ + 246, + 100, + 363, + 124 + ], + "score": 0.94, + "content": "\\ell _ { t } ( { \\mathbf { w } } _ { 0 } ) = \\frac { 1 } { 2 } \\left\\| { \\mathbf { A } } _ { t } { \\mathbf { w } } _ { 0 } - { \\mathbf { c } } _ { t } \\right\\| ^ { 2 } ,", + "type": "interline_equation", + "image_path": "74d3a86b5dc12573ea271734fb564d861b43bc4024c8420cc48b712cd58cec1d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 246, + 100, + 363, + 124 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 130, + 133, + 141 + ], + "lines": [ + { + "bbox": [ + 106, + 128, + 135, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 135, + 142 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 145, + 450, + 202 + ], + "lines": [ + { + "bbox": [ + 162, + 145, + 450, + 202 + ], + "spans": [ + { + "bbox": [ + 162, + 145, + 450, + 202 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { \\displaystyle { \\bf A } _ { t } = \\frac { \\lambda } { \\sqrt { n _ { 2 } } } { \\bf X } _ { t } ^ { \\mathrm { v a l } } ( { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } } , } \\\\ { { \\displaystyle { \\bf c } _ { t } = \\frac { 1 } { \\sqrt { n _ { 2 } } } \\bigg ( { \\bf y } _ { t } ^ { \\mathrm { v a l } } - { \\bf X } _ { t } ^ { \\mathrm { v a l } } ( { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } \\frac { 1 } { n _ { 1 } } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf y } _ { t } ^ { \\mathrm { t r a i n } } \\bigg ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "da5bf25a47dc3fe2ddabc89c8fd32863a9a17f6ab533f8c04106711d2ed57c65.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 162, + 145, + 450, + 164.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 162, + 164.0, + 450, + 183.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 162, + 183.0, + 450, + 202.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 504, + 229 + ], + "lines": [ + { + "bbox": [ + 104, + 205, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 104, + 205, + 505, + 220 + ], + "score": 1.0, + "content": "In order to show the desired asymptotic normality result, it suffices to check the conditions in Propo-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 217, + 200, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 200, + 230 + ], + "score": 1.0, + "content": "sition 6. First, we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 234, + 367, + 249 + ], + "lines": [ + { + "bbox": [ + 243, + 234, + 367, + 249 + ], + "spans": [ + { + "bbox": [ + 243, + 234, + 367, + 249 + ], + "score": 0.91, + "content": "\\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 } ) = \\mathbf { A } _ { t } ^ { \\top } ( \\mathbf { A } _ { t } \\mathbf { w } _ { 0 } - \\mathbf { c } _ { t } ) .", + "type": "interline_equation", + "image_path": "c73bf06c84369b6ca08c7c3e3ea5313ce7edf277e5b8194cca45f10f29b5e027.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 243, + 234, + 367, + 249 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 295, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 297, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 185, + 269 + ], + "score": 1.0, + "content": "This is Lipschitz in", + "type": "text" + }, + { + "bbox": [ + 186, + 257, + 199, + 267 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 253, + 297, + 269 + ], + "score": 1.0, + "content": "with Lipschitz constant", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 272, + 386, + 298 + ], + "lines": [ + { + "bbox": [ + 224, + 272, + 386, + 298 + ], + "spans": [ + { + "bbox": [ + 224, + 272, + 386, + 298 + ], + "score": 0.94, + "content": "\\left. \\mathbf { A } _ { t } ^ { \\intercal } \\mathbf { A } _ { t } \\right. _ { \\mathrm { o p } } \\leq \\left. \\mathbf { A } _ { t } \\right. _ { \\mathsf { F r } } ^ { 2 } < \\frac { 1 } { n _ { 2 } } \\left. \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\right. _ { \\mathsf { F r } } ^ { 2 } .", + "type": "interline_equation", + "image_path": "af67d5d6ddee3dbd375b6025d1d3e2ab2f1ac79b5ab512085a07528b29b5db4b.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 224, + 272, + 386, + 298 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 506, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 120, + 320 + ], + "score": 1.0, + "content": "As", + "type": "text" + }, + { + "bbox": [ + 120, + 305, + 199, + 318 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\left\\| \\mathbf { x } \\right\\| ^ { 4 } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 305, + 506, + 320 + ], + "score": 1.0, + "content": ", the above quantity is clearly square integrable, therefore verifying (a). As", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 107, + 319, + 188, + 330 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 , \\star } = \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "is finite, we can use similar arguments as above to show (b) holds. Finally, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 179, + 342 + ], + "score": 1.0, + "content": "have already seen", + "type": "text" + }, + { + "bbox": [ + 180, + 330, + 188, + 339 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 329, + 372, + 342 + ], + "score": 1.0, + "content": "is twice-differentiable (since it is quadratic in", + "type": "text" + }, + { + "bbox": [ + 372, + 330, + 386, + 341 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 329, + 408, + 342 + ], + "score": 1.0, + "content": ") and", + "type": "text" + }, + { + "bbox": [ + 408, + 329, + 474, + 342 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\succ \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 329, + 506, + 342 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "verifies (c). Therefore the conditions of Proposition 6 hold, which yields the desired asymptotic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 174, + 364 + ], + "score": 1.0, + "content": "normality result.", + "type": "text" + }, + { + "bbox": [ + 494, + 352, + 505, + 363 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 377, + 245, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 246, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 246, + 390 + ], + "score": 1.0, + "content": "A.3 PROOF OF PROPOSITION 2", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 506, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "High-level idea At a high level, this proof proceeds by showing that the train-train method is also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 101, + 407, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 101, + 407, + 206, + 441 + ], + "score": 1.0, + "content": "consistent to the (populwhich the minimizers of", + "type": "text" + }, + { + "bbox": [ + 228, + 407, + 286, + 441 + ], + "score": 1.0, + "content": "minimizer of is not equal to", + "type": "text" + }, + { + "bbox": [ + 286, + 410, + 308, + 420 + ], + "score": 0.9, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 407, + 316, + 441 + ], + "score": 1.0, + "content": ", of", + "type": "text" + }, + { + "bbox": [ + 337, + 407, + 506, + 441 + ], + "score": 1.0, + "content": "onstructing a simple counter-example on.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 207, + 421, + 336, + 434 + ], + "spans": [ + { + "bbox": [ + 207, + 421, + 228, + 430 + ], + "score": 0.9, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 421, + 336, + 434 + ], + "score": 0.92, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 104, + 447, + 505, + 472 + ], + "lines": [ + { + "bbox": [ + 104, + 443, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 218, + 463 + ], + "score": 1.0, + "content": "Population minimizers of", + "type": "text" + }, + { + "bbox": [ + 218, + 448, + 240, + 459 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 443, + 261, + 463 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 261, + 448, + 286, + 459 + ], + "score": 0.49, + "content": "L ^ { \\mathsf { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 443, + 506, + 463 + ], + "score": 1.0, + "content": "We begin by simplifying the non-splitting risk. We", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 457, + 129, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 129, + 472 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 474, + 438, + 547 + ], + "lines": [ + { + "bbox": [ + 176, + 474, + 438, + 547 + ], + "spans": [ + { + "bbox": [ + 176, + 474, + 438, + 547 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\displaystyle \\ell _ { t } ^ { \\mathrm { t r } + \\mathrm { r } } ( \\mathbf w _ { 0 } ) = \\frac { 1 } { 2 n } \\left\\| \\mathbf y _ { t } - \\mathbf X _ { t } A _ { \\lambda } ( \\mathbf w _ { 0 } ; \\mathbf X _ { t } , \\mathbf y _ { t } ) \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n } \\left\\| \\mathbf y _ { t } - \\mathbf X _ { t } \\big [ \\mathbf w _ { 0 } + ( \\mathbf X _ { t } ^ { \\top } \\mathbf X _ { t } + n \\lambda \\mathbf I _ { d } ) ^ { - 1 } \\mathbf X _ { t } ^ { \\top } ( \\mathbf y _ { t } - \\mathbf X _ { t } \\mathbf w _ { 0 } ) \\big ] \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac 1 2 \\left\\| \\mathbf A _ { t } \\mathbf w _ { 0 } - \\mathbf c _ { t } \\right\\| ^ { 2 } , } \\end{array}", + "type": "interline_equation", + "image_path": "b1d34f4c7b53074ac36a9e55e9b6536049f430f10820b86efa2e41ebca641417.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 176, + 474, + 438, + 498.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 176, + 498.3333333333333, + 438, + 522.6666666666666 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 176, + 522.6666666666666, + 438, + 547.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 133, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 135, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 135, + 564 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 121, + 567, + 489, + 594 + ], + "lines": [ + { + "bbox": [ + 121, + 567, + 489, + 594 + ], + "spans": [ + { + "bbox": [ + 121, + 567, + 489, + 594 + ], + "score": 0.93, + "content": "\\mathbf { A } _ { t } = \\frac { 1 } { \\sqrt { n } } n \\lambda \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\quad \\mathrm { a n d } \\quad \\mathbf { c } _ { t } = \\frac { 1 } { \\sqrt { n } } \\big ( \\mathbf { I } _ { n } - \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\big ) \\mathbf { y } _ { t } .", + "type": "interline_equation", + "image_path": "b6d8b75d40fbe771d6ab185cadae599b4ac7327871b42bd0ea4edb2dc096e7a8.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 121, + 567, + 489, + 594 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 599, + 504, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "Using similar arguments as in the proof of Proposition 1 (Appendix A.2), we see that the train-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 102, + 605, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 102, + 605, + 161, + 628 + ], + "score": 1.0, + "content": "train method", + "type": "text" + }, + { + "bbox": [ + 162, + 610, + 185, + 624 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - t r }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 605, + 479, + 628 + ], + "score": 1.0, + "content": "converges with probability one to the minimizer of the pouplation risk", + "type": "text" + }, + { + "bbox": [ + 479, + 610, + 501, + 621 + ], + "score": 0.87, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 605, + 505, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 621, + 144, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 144, + 633 + ], + "score": 1.0, + "content": "which is", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 635, + 514, + 724 + ], + "lines": [ + { + "bbox": [ + 111, + 635, + 514, + 724 + ], + "spans": [ + { + "bbox": [ + 111, + 635, + 514, + 724 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbf { v } _ { 0 , \\star } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } = \\underset { \\mathbf { w } _ { 0 } } { \\operatorname { a r g m i n } } L ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } ( \\mathbf { w } _ { 0 } ) = \\big ( \\mathbb { E } [ \\mathbf { A } _ { t } ^ { \\top } \\mathbf { A } _ { t } ] \\big ) ^ { - 1 } \\mathbb { E } [ \\mathbf { A } _ { t } ^ { \\top } \\mathbf { c } _ { t } ] } \\\\ & { = \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } \\bigg ] ^ { - 1 } \\cdot \\mathbb { E } \\bigg [ \\frac { 1 } { n } \\lambda \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } ( \\mathbf { I } _ { n } - \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ) } \\\\ & { = \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } \\bigg ] ^ { - 1 } \\cdot \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { 1 } { n } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } \\bigg ] . } \\end{array}", + "type": "interline_equation", + "image_path": "d8b91d0f4b3481c192671bdb00897fd626ddf0a0f22d39b0eb7079d892ed99d6.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 111, + 635, + 514, + 664.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 664.6666666666666, + 514, + 694.3333333333333 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 694.3333333333333, + 514, + 723.9999999999999 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 411, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 414, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 414, + 97 + ], + "score": 1.0, + "content": "Asymptotic normality Similar as above, we can write the per-task loss as", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 414, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 100, + 363, + 124 + ], + "lines": [ + { + "bbox": [ + 246, + 100, + 363, + 124 + ], + "spans": [ + { + "bbox": [ + 246, + 100, + 363, + 124 + ], + "score": 0.94, + "content": "\\ell _ { t } ( { \\mathbf { w } } _ { 0 } ) = \\frac { 1 } { 2 } \\left\\| { \\mathbf { A } } _ { t } { \\mathbf { w } } _ { 0 } - { \\mathbf { c } } _ { t } \\right\\| ^ { 2 } ,", + "type": "interline_equation", + "image_path": "74d3a86b5dc12573ea271734fb564d861b43bc4024c8420cc48b712cd58cec1d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 246, + 100, + 363, + 124 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 130, + 133, + 141 + ], + "lines": [ + { + "bbox": [ + 106, + 128, + 135, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 135, + 142 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 128, + 135, + 142 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 145, + 450, + 202 + ], + "lines": [ + { + "bbox": [ + 162, + 145, + 450, + 202 + ], + "spans": [ + { + "bbox": [ + 162, + 145, + 450, + 202 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { \\displaystyle { \\bf A } _ { t } = \\frac { \\lambda } { \\sqrt { n _ { 2 } } } { \\bf X } _ { t } ^ { \\mathrm { v a l } } ( { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } } , } \\\\ { { \\displaystyle { \\bf c } _ { t } = \\frac { 1 } { \\sqrt { n _ { 2 } } } \\bigg ( { \\bf y } _ { t } ^ { \\mathrm { v a l } } - { \\bf X } _ { t } ^ { \\mathrm { v a l } } ( { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } \\frac { 1 } { n _ { 1 } } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf y } _ { t } ^ { \\mathrm { t r a i n } } \\bigg ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "da5bf25a47dc3fe2ddabc89c8fd32863a9a17f6ab533f8c04106711d2ed57c65.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 162, + 145, + 450, + 164.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 162, + 164.0, + 450, + 183.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 162, + 183.0, + 450, + 202.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 504, + 229 + ], + "lines": [ + { + "bbox": [ + 104, + 205, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 104, + 205, + 505, + 220 + ], + "score": 1.0, + "content": "In order to show the desired asymptotic normality result, it suffices to check the conditions in Propo-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 217, + 200, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 200, + 230 + ], + "score": 1.0, + "content": "sition 6. First, we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 205, + 505, + 230 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 234, + 367, + 249 + ], + "lines": [ + { + "bbox": [ + 243, + 234, + 367, + 249 + ], + "spans": [ + { + "bbox": [ + 243, + 234, + 367, + 249 + ], + "score": 0.91, + "content": "\\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 } ) = \\mathbf { A } _ { t } ^ { \\top } ( \\mathbf { A } _ { t } \\mathbf { w } _ { 0 } - \\mathbf { c } _ { t } ) .", + "type": "interline_equation", + "image_path": "c73bf06c84369b6ca08c7c3e3ea5313ce7edf277e5b8194cca45f10f29b5e027.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 243, + 234, + 367, + 249 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 295, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 297, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 185, + 269 + ], + "score": 1.0, + "content": "This is Lipschitz in", + "type": "text" + }, + { + "bbox": [ + 186, + 257, + 199, + 267 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 253, + 297, + 269 + ], + "score": 1.0, + "content": "with Lipschitz constant", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 253, + 297, + 269 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 272, + 386, + 298 + ], + "lines": [ + { + "bbox": [ + 224, + 272, + 386, + 298 + ], + "spans": [ + { + "bbox": [ + 224, + 272, + 386, + 298 + ], + "score": 0.94, + "content": "\\left. \\mathbf { A } _ { t } ^ { \\intercal } \\mathbf { A } _ { t } \\right. _ { \\mathrm { o p } } \\leq \\left. \\mathbf { A } _ { t } \\right. _ { \\mathsf { F r } } ^ { 2 } < \\frac { 1 } { n _ { 2 } } \\left. \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\right. _ { \\mathsf { F r } } ^ { 2 } .", + "type": "interline_equation", + "image_path": "af67d5d6ddee3dbd375b6025d1d3e2ab2f1ac79b5ab512085a07528b29b5db4b.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 224, + 272, + 386, + 298 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 305, + 506, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 120, + 320 + ], + "score": 1.0, + "content": "As", + "type": "text" + }, + { + "bbox": [ + 120, + 305, + 199, + 318 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\left\\| \\mathbf { x } \\right\\| ^ { 4 } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 305, + 506, + 320 + ], + "score": 1.0, + "content": ", the above quantity is clearly square integrable, therefore verifying (a). As", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 107, + 319, + 188, + 330 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 , \\star } = \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "is finite, we can use similar arguments as above to show (b) holds. Finally, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 329, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 179, + 342 + ], + "score": 1.0, + "content": "have already seen", + "type": "text" + }, + { + "bbox": [ + 180, + 330, + 188, + 339 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 329, + 372, + 342 + ], + "score": 1.0, + "content": "is twice-differentiable (since it is quadratic in", + "type": "text" + }, + { + "bbox": [ + 372, + 330, + 386, + 341 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 329, + 408, + 342 + ], + "score": 1.0, + "content": ") and", + "type": "text" + }, + { + "bbox": [ + 408, + 329, + 474, + 342 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\succ \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 329, + 506, + 342 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "verifies (c). Therefore the conditions of Proposition 6 hold, which yields the desired asymptotic", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 174, + 364 + ], + "score": 1.0, + "content": "normality result.", + "type": "text" + }, + { + "bbox": [ + 494, + 352, + 505, + 363 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 305, + 506, + 364 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 377, + 245, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 246, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 246, + 390 + ], + "score": 1.0, + "content": "A.3 PROOF OF PROPOSITION 2", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 506, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "High-level idea At a high level, this proof proceeds by showing that the train-train method is also", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 101, + 407, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 101, + 407, + 206, + 441 + ], + "score": 1.0, + "content": "consistent to the (populwhich the minimizers of", + "type": "text" + }, + { + "bbox": [ + 228, + 407, + 286, + 441 + ], + "score": 1.0, + "content": "minimizer of is not equal to", + "type": "text" + }, + { + "bbox": [ + 286, + 410, + 308, + 420 + ], + "score": 0.9, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 407, + 316, + 441 + ], + "score": 1.0, + "content": ", of", + "type": "text" + }, + { + "bbox": [ + 337, + 407, + 506, + 441 + ], + "score": 1.0, + "content": "onstructing a simple counter-example on.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 207, + 421, + 336, + 434 + ], + "spans": [ + { + "bbox": [ + 207, + 421, + 228, + 430 + ], + "score": 0.9, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 421, + 336, + 434 + ], + "score": 0.92, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 101, + 398, + 506, + 441 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 447, + 505, + 472 + ], + "lines": [ + { + "bbox": [ + 104, + 443, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 218, + 463 + ], + "score": 1.0, + "content": "Population minimizers of", + "type": "text" + }, + { + "bbox": [ + 218, + 448, + 240, + 459 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 443, + 261, + 463 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 261, + 448, + 286, + 459 + ], + "score": 0.49, + "content": "L ^ { \\mathsf { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 443, + 506, + 463 + ], + "score": 1.0, + "content": "We begin by simplifying the non-splitting risk. We", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 457, + 129, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 129, + 472 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 104, + 443, + 506, + 472 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 474, + 438, + 547 + ], + "lines": [ + { + "bbox": [ + 176, + 474, + 438, + 547 + ], + "spans": [ + { + "bbox": [ + 176, + 474, + 438, + 547 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\displaystyle \\ell _ { t } ^ { \\mathrm { t r } + \\mathrm { r } } ( \\mathbf w _ { 0 } ) = \\frac { 1 } { 2 n } \\left\\| \\mathbf y _ { t } - \\mathbf X _ { t } A _ { \\lambda } ( \\mathbf w _ { 0 } ; \\mathbf X _ { t } , \\mathbf y _ { t } ) \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n } \\left\\| \\mathbf y _ { t } - \\mathbf X _ { t } \\big [ \\mathbf w _ { 0 } + ( \\mathbf X _ { t } ^ { \\top } \\mathbf X _ { t } + n \\lambda \\mathbf I _ { d } ) ^ { - 1 } \\mathbf X _ { t } ^ { \\top } ( \\mathbf y _ { t } - \\mathbf X _ { t } \\mathbf w _ { 0 } ) \\big ] \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac 1 2 \\left\\| \\mathbf A _ { t } \\mathbf w _ { 0 } - \\mathbf c _ { t } \\right\\| ^ { 2 } , } \\end{array}", + "type": "interline_equation", + "image_path": "b1d34f4c7b53074ac36a9e55e9b6536049f430f10820b86efa2e41ebca641417.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 176, + 474, + 438, + 498.3333333333333 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 176, + 498.3333333333333, + 438, + 522.6666666666666 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 176, + 522.6666666666666, + 438, + 547.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 133, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 135, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 135, + 564 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 550, + 135, + 564 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 121, + 567, + 489, + 594 + ], + "lines": [ + { + "bbox": [ + 121, + 567, + 489, + 594 + ], + "spans": [ + { + "bbox": [ + 121, + 567, + 489, + 594 + ], + "score": 0.93, + "content": "\\mathbf { A } _ { t } = \\frac { 1 } { \\sqrt { n } } n \\lambda \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\quad \\mathrm { a n d } \\quad \\mathbf { c } _ { t } = \\frac { 1 } { \\sqrt { n } } \\big ( \\mathbf { I } _ { n } - \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\big ) \\mathbf { y } _ { t } .", + "type": "interline_equation", + "image_path": "b6d8b75d40fbe771d6ab185cadae599b4ac7327871b42bd0ea4edb2dc096e7a8.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 121, + 567, + 489, + 594 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 599, + 504, + 633 + ], + "lines": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "Using similar arguments as in the proof of Proposition 1 (Appendix A.2), we see that the train-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 102, + 605, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 102, + 605, + 161, + 628 + ], + "score": 1.0, + "content": "train method", + "type": "text" + }, + { + "bbox": [ + 162, + 610, + 185, + 624 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - t r }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 605, + 479, + 628 + ], + "score": 1.0, + "content": "converges with probability one to the minimizer of the pouplation risk", + "type": "text" + }, + { + "bbox": [ + 479, + 610, + 501, + 621 + ], + "score": 0.87, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 605, + 505, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 621, + 144, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 144, + 633 + ], + "score": 1.0, + "content": "which is", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 102, + 599, + 505, + 633 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 635, + 514, + 724 + ], + "lines": [ + { + "bbox": [ + 111, + 635, + 514, + 724 + ], + "spans": [ + { + "bbox": [ + 111, + 635, + 514, + 724 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbf { v } _ { 0 , \\star } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } = \\underset { \\mathbf { w } _ { 0 } } { \\operatorname { a r g m i n } } L ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } ( \\mathbf { w } _ { 0 } ) = \\big ( \\mathbb { E } [ \\mathbf { A } _ { t } ^ { \\top } \\mathbf { A } _ { t } ] \\big ) ^ { - 1 } \\mathbb { E } [ \\mathbf { A } _ { t } ^ { \\top } \\mathbf { c } _ { t } ] } \\\\ & { = \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } \\bigg ] ^ { - 1 } \\cdot \\mathbb { E } \\bigg [ \\frac { 1 } { n } \\lambda \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } ( \\mathbf { I } _ { n } - \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ) } \\\\ & { = \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } \\bigg ] ^ { - 1 } \\cdot \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { 1 } { n } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } \\bigg ] . } \\end{array}", + "type": "interline_equation", + "image_path": "d8b91d0f4b3481c192671bdb00897fd626ddf0a0f22d39b0eb7079d892ed99d6.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 111, + 635, + 514, + 664.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 664.6666666666666, + 514, + 694.3333333333333 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 694.3333333333333, + 514, + 723.9999999999999 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 500, + 95 + ], + "lines": [ + { + "bbox": [ + 104, + 78, + 489, + 100 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 469, + 100 + ], + "score": 1.0, + "content": "On the other hand, recall from Proposition 1 ((8) and (9)) that the population minimizer of", + "type": "text" + }, + { + "bbox": [ + 469, + 83, + 489, + 96 + ], + "score": 0.91, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 99, + 514, + 180 + ], + "lines": [ + { + "bbox": [ + 111, + 99, + 514, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 99, + 514, + 180 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { a r g } } \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\\\ & { = \\mathbb { E } \\big [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ] ^ { - 1 } \\cdot \\Big \\{ \\lambda \\mathbb { E } \\big [ ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ] \\mathbb { E } _ { p _ { t } , ( \\mathbf { x } ^ { \\prime } , y ^ { \\prime } ) \\sim p _ { t } } [ \\Xi ] \\big \\} } \\\\ & { \\phantom { = } - \\lambda \\mathbb { E } \\bigg [ ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { 1 } { n } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } \\bigg ] \\Big \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "ad4f184d5cef4f769cfb94fe8548d50913e48f2344fc531f5274fce45559f441.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 99, + 514, + 126.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 126.0, + 514, + 153.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 153.0, + 514, + 180.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 198, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 212 + ], + "score": 1.0, + "content": "Construction of the counter-example We now construct a distribution for which (10) is not equal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 209, + 352, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 154, + 222 + ], + "score": 1.0, + "content": "to (11). Let", + "type": "text" + }, + { + "bbox": [ + 155, + 210, + 180, + 220 + ], + "score": 0.9, + "content": "d = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 209, + 222, + 222 + ], + "score": 1.0, + "content": "and let all", + "type": "text" + }, + { + "bbox": [ + 222, + 211, + 232, + 221 + ], + "score": 0.85, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 209, + 352, + 222 + ], + "score": 1.0, + "content": "be the following distribution:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 225, + 411, + 253 + ], + "lines": [ + { + "bbox": [ + 199, + 225, + 411, + 253 + ], + "spans": [ + { + "bbox": [ + 199, + 225, + 411, + 253 + ], + "score": 0.91, + "content": "p _ { t } : ( x _ { t , i } , y _ { t , i } ) = { \\left\\{ \\begin{array} { l l } { ( 1 , 3 ) { \\mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 ; } \\\\ { ( 3 , - 1 ) { \\mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 . } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "df03034e6294c6d1c51c3ed6703b23141a5306e3caace4611644c95c19ce9cbd.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 199, + 225, + 411, + 253 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 257, + 486, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 488, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 175, + 273 + ], + "score": 1.0, + "content": "Clearly, we have", + "type": "text" + }, + { + "bbox": [ + 176, + 259, + 207, + 270 + ], + "score": 0.75, + "content": "\\Sigma _ { t } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 258, + 306, + 271 + ], + "score": 0.92, + "content": "= 5 , s _ { t } : = \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n \\in [ 1 , 9 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 257, + 327, + 273 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 327, + 259, + 406, + 272 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { x ^ { \\prime } , y ^ { \\prime } \\sim p _ { t } } [ x ^ { \\prime } y ^ { \\prime } ] = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 257, + 488, + 273 + ], + "score": 1.0, + "content": ". Therefore we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 275, + 426, + 309 + ], + "lines": [ + { + "bbox": [ + 183, + 275, + 426, + 309 + ], + "spans": [ + { + "bbox": [ + 183, + 275, + 426, + 309 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ^ { \\mathrm { t r - t r } } = \\mathbb { E } \\left[ ( s _ { t } + \\lambda ) ^ { - 2 } s _ { t } \\right] ^ { - 1 } \\cdot \\mathbb { E } \\left[ ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\right] ,", + "type": "interline_equation", + "image_path": "ad7b4c88ada28aa57d82c411cfea82e10f4e316bf82f760f2d9a5e1d99956db0.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 275, + 426, + 292.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 183, + 292.0, + 426, + 309.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 124, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 124, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 124, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 326, + 454, + 395 + ], + "lines": [ + { + "bbox": [ + 159, + 326, + 454, + 395 + ], + "spans": [ + { + "bbox": [ + 159, + 326, + 454, + 395 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { \\displaystyle { \\bf w } _ { 0 , \\star } ( \\lambda , n ) = - \\mathbb { E } \\big [ 5 \\lambda ^ { 2 } ( s _ { t } + \\lambda ) ^ { - 2 } \\big ] ^ { - 1 } \\cdot \\mathbb { E } \\Bigg [ 5 \\lambda ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] } } \\\\ { { \\displaystyle = - \\mathbb { E } \\big [ \\lambda ( s _ { t } + \\lambda ) ^ { - 2 } \\big ] ^ { - 1 } \\cdot \\mathbb { E } \\Bigg [ ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] . } } \\end{array}", + "type": "interline_equation", + "image_path": "22428c7c61611144f4547e82187fdddb30a2b5d08b48680c6167c82282c18a6d.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 159, + 326, + 454, + 349.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 159, + 349.0, + 454, + 372.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 159, + 372.0, + 454, + 395.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 329, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 331, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 182, + 414 + ], + "score": 1.0, + "content": "We now show that", + "type": "text" + }, + { + "bbox": [ + 183, + 398, + 262, + 412 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ^ { \\sf t r - t r } \\neq \\mathbf { w } _ { 0 , \\star } ( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 395, + 331, + 414 + ], + "score": 1.0, + "content": "by showing that", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 415, + 410, + 450 + ], + "lines": [ + { + "bbox": [ + 200, + 415, + 410, + 450 + ], + "spans": [ + { + "bbox": [ + 200, + 415, + 410, + 450 + ], + "score": 0.93, + "content": "\\mathbb { E } \\Bigg [ \\big ( s _ { t } + \\lambda \\big ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] = \\mathbb { E } \\Bigg [ \\frac { x _ { t , 1 } y _ { t , 1 } } { \\big ( s _ { t } + \\lambda \\big ) ^ { 2 } } \\Bigg ] \\neq 0", + "type": "interline_equation", + "image_path": "25a777f2bbf528146fc3325e1f0dd3521c5336e755fa1534af8baa05e9e5703d.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 200, + 415, + 410, + 432.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 200, + 432.5, + 410, + 450.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 453, + 504, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 453, + 504, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 137, + 467 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 138, + 454, + 163, + 464 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 453, + 266, + 467 + ], + "score": 1.0, + "content": ". Indeed, conditioning on", + "type": "text" + }, + { + "bbox": [ + 266, + 453, + 345, + 466 + ], + "score": 0.92, + "content": "( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 )", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 453, + 494, + 467 + ], + "score": 1.0, + "content": ", we know that the sum-of-squares in", + "type": "text" + }, + { + "bbox": [ + 494, + 456, + 504, + 465 + ], + "score": 0.81, + "content": "s _ { t }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "has one term that equals 1, and all others i.i.d. being 1 or 9 with probability one half. On the other", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 475, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 205, + 490 + ], + "score": 1.0, + "content": "hand, if we condition on", + "type": "text" + }, + { + "bbox": [ + 206, + 476, + 292, + 488 + ], + "score": 0.92, + "content": "( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 475, + 396, + 490 + ], + "score": 1.0, + "content": ", then we know the sum in", + "type": "text" + }, + { + "bbox": [ + 397, + 477, + 406, + 487 + ], + "score": 0.84, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 475, + 506, + 490 + ], + "score": 1.0, + "content": "has one term that equals", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "score": 1.0, + "content": "9 and all others i.i.d.. This means that the negative contribution in the expectation is smaller than", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 498, + 268, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 268, + 510 + ], + "score": 1.0, + "content": "the positive contribution, in other words", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 513, + 422, + 570 + ], + "lines": [ + { + "bbox": [ + 189, + 513, + 422, + 570 + ], + "spans": [ + { + "bbox": [ + 189, + 513, + 422, + 570 + ], + "score": 0.95, + "content": "\\begin{array} { r l r } & { } & { \\mathbb { E } \\bigg [ \\frac { x _ { t , 1 } y _ { t , 1 } } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg ] = \\frac { 1 } { 2 } \\cdot 3 \\mathbb { E } \\bigg [ \\frac { 1 } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 ) \\bigg ] } \\\\ & { } & { \\quad + \\frac { 1 } { 2 } \\cdot - 3 \\mathbb { E } \\bigg [ \\frac { 1 } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 ) \\bigg ] > 0 . } \\end{array}", + "type": "interline_equation", + "image_path": "26afa1b6024b71f16c2da21a9b8beedb990e4eede4ba278ab113723d73ceb9d4.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 513, + 422, + 527.25 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 189, + 527.25, + 422, + 541.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 189, + 541.5, + 422, + 555.75 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 189, + 555.75, + 422, + 570.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 504, + 596 + ], + "lines": [ + { + "bbox": [ + 103, + 568, + 508, + 591 + ], + "spans": [ + { + "bbox": [ + 103, + 568, + 153, + 591 + ], + "score": 1.0, + "content": "This shows", + "type": "text" + }, + { + "bbox": [ + 154, + 573, + 233, + 586 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 , \\star } ^ { \\sf t r - t r } \\neq \\mathbf { w } _ { 0 , \\star } ( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 568, + 320, + 591 + ], + "score": 1.0, + "content": "and consequently the", + "type": "text" + }, + { + "bbox": [ + 320, + 573, + 343, + 587 + ], + "score": 0.93, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 568, + 428, + 591 + ], + "score": 1.0, + "content": "does not converge to", + "type": "text" + }, + { + "bbox": [ + 429, + 573, + 472, + 585 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 568, + 508, + 591 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 583, + 308, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 270, + 597 + ], + "score": 1.0, + "content": "difference is bounded away from zero as", + "type": "text" + }, + { + "bbox": [ + 305, + 583, + 308, + 597 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 103, + 597, + 507, + 618 + ], + "spans": [ + { + "bbox": [ + 103, + 597, + 258, + 618 + ], + "score": 1.0, + "content": "Finally, for this distribution, the risk", + "type": "text" + }, + { + "bbox": [ + 259, + 601, + 299, + 614 + ], + "score": 0.92, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } } ( \\mathbf { w } _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 597, + 507, + 618 + ], + "score": 1.0, + "content": "is strongly convex (since it has a positive second", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 103, + 609, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 103, + 609, + 254, + 631 + ], + "score": 1.0, + "content": "derivative), this further implies that", + "type": "text" + }, + { + "bbox": [ + 254, + 613, + 388, + 628 + ], + "score": 0.93, + "content": "L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) - L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 609, + 507, + 631 + ], + "score": 1.0, + "content": "is bounded away from zero", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 624, + 212, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 173, + 639 + ], + "score": 1.0, + "content": "almost surely as", + "type": "text" + }, + { + "bbox": [ + 173, + 626, + 207, + 636 + ], + "score": 0.89, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 624, + 212, + 639 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 653, + 251, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 652, + 252, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 252, + 668 + ], + "score": 1.0, + "content": "B PROOFS FOR SECTION 4", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 230, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 231, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 231, + 690 + ], + "score": 1.0, + "content": "B.1 PROOF OF THEOREM 3", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 180, + 713 + ], + "score": 1.0, + "content": "We first show that", + "type": "text" + }, + { + "bbox": [ + 180, + 699, + 259, + 711 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 , \\star } = \\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\mathbf { w } _ { t } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 696, + 357, + 713 + ], + "score": 1.0, + "content": "is a global optimizer for", + "type": "text" + }, + { + "bbox": [ + 358, + 698, + 379, + 709 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 696, + 397, + 713 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 698, + 422, + 709 + ], + "score": 0.89, + "content": "L ^ { \\mathsf { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 696, + 506, + 713 + ], + "score": 1.0, + "content": "with any regulariza-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 168, + 722 + ], + "score": 1.0, + "content": "tion coefficient", + "type": "text" + }, + { + "bbox": [ + 169, + 710, + 194, + 720 + ], + "score": 0.9, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 709, + 214, + 722 + ], + "score": 1.0, + "content": ", any", + "type": "text" + }, + { + "bbox": [ + 214, + 712, + 221, + 720 + ], + "score": 0.8, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 709, + 279, + 722 + ], + "score": 1.0, + "content": ", and any split", + "type": "text" + }, + { + "bbox": [ + 279, + 710, + 312, + 722 + ], + "score": 0.94, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 709, + 505, + 722 + ], + "score": 1.0, + "content": ". To do this, it suffices to check that the gradient", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 721, + 331, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 116, + 733 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 117, + 722, + 137, + 733 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 721, + 331, + 733 + ], + "score": 1.0, + "content": "is zero and the Hessian is positive definite (PD).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 500, + 95 + ], + "lines": [ + { + "bbox": [ + 104, + 78, + 489, + 100 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 469, + 100 + ], + "score": 1.0, + "content": "On the other hand, recall from Proposition 1 ((8) and (9)) that the population minimizer of", + "type": "text" + }, + { + "bbox": [ + 469, + 83, + 489, + 96 + ], + "score": 0.91, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 104, + 78, + 489, + 100 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 99, + 514, + 180 + ], + "lines": [ + { + "bbox": [ + 111, + 99, + 514, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 99, + 514, + 180 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { a r g } } \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\\\ & { = \\mathbb { E } \\big [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ] ^ { - 1 } \\cdot \\Big \\{ \\lambda \\mathbb { E } \\big [ ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ] \\mathbb { E } _ { p _ { t } , ( \\mathbf { x } ^ { \\prime } , y ^ { \\prime } ) \\sim p _ { t } } [ \\Xi ] \\big \\} } \\\\ & { \\phantom { = } - \\lambda \\mathbb { E } \\bigg [ ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { 1 } { n } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } \\bigg ] \\Big \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "ad4f184d5cef4f769cfb94fe8548d50913e48f2344fc531f5274fce45559f441.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 99, + 514, + 126.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 126.0, + 514, + 153.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 153.0, + 514, + 180.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 198, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 212 + ], + "score": 1.0, + "content": "Construction of the counter-example We now construct a distribution for which (10) is not equal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 209, + 352, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 154, + 222 + ], + "score": 1.0, + "content": "to (11). Let", + "type": "text" + }, + { + "bbox": [ + 155, + 210, + 180, + 220 + ], + "score": 0.9, + "content": "d = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 209, + 222, + 222 + ], + "score": 1.0, + "content": "and let all", + "type": "text" + }, + { + "bbox": [ + 222, + 211, + 232, + 221 + ], + "score": 0.85, + "content": "p _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 209, + 352, + 222 + ], + "score": 1.0, + "content": "be the following distribution:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 198, + 505, + 222 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 225, + 411, + 253 + ], + "lines": [ + { + "bbox": [ + 199, + 225, + 411, + 253 + ], + "spans": [ + { + "bbox": [ + 199, + 225, + 411, + 253 + ], + "score": 0.91, + "content": "p _ { t } : ( x _ { t , i } , y _ { t , i } ) = { \\left\\{ \\begin{array} { l l } { ( 1 , 3 ) { \\mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 ; } \\\\ { ( 3 , - 1 ) { \\mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 . } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "df03034e6294c6d1c51c3ed6703b23141a5306e3caace4611644c95c19ce9cbd.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 199, + 225, + 411, + 253 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 257, + 486, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 488, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 175, + 273 + ], + "score": 1.0, + "content": "Clearly, we have", + "type": "text" + }, + { + "bbox": [ + 176, + 259, + 207, + 270 + ], + "score": 0.75, + "content": "\\Sigma _ { t } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 258, + 306, + 271 + ], + "score": 0.92, + "content": "= 5 , s _ { t } : = \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n \\in [ 1 , 9 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 257, + 327, + 273 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 327, + 259, + 406, + 272 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { x ^ { \\prime } , y ^ { \\prime } \\sim p _ { t } } [ x ^ { \\prime } y ^ { \\prime } ] = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 257, + 488, + 273 + ], + "score": 1.0, + "content": ". Therefore we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 257, + 488, + 273 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 275, + 426, + 309 + ], + "lines": [ + { + "bbox": [ + 183, + 275, + 426, + 309 + ], + "spans": [ + { + "bbox": [ + 183, + 275, + 426, + 309 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ^ { \\mathrm { t r - t r } } = \\mathbb { E } \\left[ ( s _ { t } + \\lambda ) ^ { - 2 } s _ { t } \\right] ^ { - 1 } \\cdot \\mathbb { E } \\left[ ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\right] ,", + "type": "interline_equation", + "image_path": "ad7b4c88ada28aa57d82c411cfea82e10f4e316bf82f760f2d9a5e1d99956db0.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 275, + 426, + 292.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 183, + 292.0, + 426, + 309.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 124, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 124, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 124, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 313, + 124, + 324 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 326, + 454, + 395 + ], + "lines": [ + { + "bbox": [ + 159, + 326, + 454, + 395 + ], + "spans": [ + { + "bbox": [ + 159, + 326, + 454, + 395 + ], + "score": 0.93, + "content": "\\begin{array} { l } { { \\displaystyle { \\bf w } _ { 0 , \\star } ( \\lambda , n ) = - \\mathbb { E } \\big [ 5 \\lambda ^ { 2 } ( s _ { t } + \\lambda ) ^ { - 2 } \\big ] ^ { - 1 } \\cdot \\mathbb { E } \\Bigg [ 5 \\lambda ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] } } \\\\ { { \\displaystyle = - \\mathbb { E } \\big [ \\lambda ( s _ { t } + \\lambda ) ^ { - 2 } \\big ] ^ { - 1 } \\cdot \\mathbb { E } \\Bigg [ ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] . } } \\end{array}", + "type": "interline_equation", + "image_path": "22428c7c61611144f4547e82187fdddb30a2b5d08b48680c6167c82282c18a6d.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 159, + 326, + 454, + 349.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 159, + 349.0, + 454, + 372.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 159, + 372.0, + 454, + 395.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 329, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 331, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 182, + 414 + ], + "score": 1.0, + "content": "We now show that", + "type": "text" + }, + { + "bbox": [ + 183, + 398, + 262, + 412 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ^ { \\sf t r - t r } \\neq \\mathbf { w } _ { 0 , \\star } ( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 395, + 331, + 414 + ], + "score": 1.0, + "content": "by showing that", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 395, + 331, + 414 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 415, + 410, + 450 + ], + "lines": [ + { + "bbox": [ + 200, + 415, + 410, + 450 + ], + "spans": [ + { + "bbox": [ + 200, + 415, + 410, + 450 + ], + "score": 0.93, + "content": "\\mathbb { E } \\Bigg [ \\big ( s _ { t } + \\lambda \\big ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] = \\mathbb { E } \\Bigg [ \\frac { x _ { t , 1 } y _ { t , 1 } } { \\big ( s _ { t } + \\lambda \\big ) ^ { 2 } } \\Bigg ] \\neq 0", + "type": "interline_equation", + "image_path": "25a777f2bbf528146fc3325e1f0dd3521c5336e755fa1534af8baa05e9e5703d.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 200, + 415, + 410, + 432.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 200, + 432.5, + 410, + 450.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 453, + 504, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 453, + 504, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 137, + 467 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 138, + 454, + 163, + 464 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 453, + 266, + 467 + ], + "score": 1.0, + "content": ". Indeed, conditioning on", + "type": "text" + }, + { + "bbox": [ + 266, + 453, + 345, + 466 + ], + "score": 0.92, + "content": "( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 )", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 453, + 494, + 467 + ], + "score": 1.0, + "content": ", we know that the sum-of-squares in", + "type": "text" + }, + { + "bbox": [ + 494, + 456, + 504, + 465 + ], + "score": 0.81, + "content": "s _ { t }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "has one term that equals 1, and all others i.i.d. being 1 or 9 with probability one half. On the other", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 475, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 205, + 490 + ], + "score": 1.0, + "content": "hand, if we condition on", + "type": "text" + }, + { + "bbox": [ + 206, + 476, + 292, + 488 + ], + "score": 0.92, + "content": "( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 475, + 396, + 490 + ], + "score": 1.0, + "content": ", then we know the sum in", + "type": "text" + }, + { + "bbox": [ + 397, + 477, + 406, + 487 + ], + "score": 0.84, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 475, + 506, + 490 + ], + "score": 1.0, + "content": "has one term that equals", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "score": 1.0, + "content": "9 and all others i.i.d.. This means that the negative contribution in the expectation is smaller than", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 498, + 268, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 268, + 510 + ], + "score": 1.0, + "content": "the positive contribution, in other words", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 453, + 506, + 510 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 513, + 422, + 570 + ], + "lines": [ + { + "bbox": [ + 189, + 513, + 422, + 570 + ], + "spans": [ + { + "bbox": [ + 189, + 513, + 422, + 570 + ], + "score": 0.95, + "content": "\\begin{array} { r l r } & { } & { \\mathbb { E } \\bigg [ \\frac { x _ { t , 1 } y _ { t , 1 } } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg ] = \\frac { 1 } { 2 } \\cdot 3 \\mathbb { E } \\bigg [ \\frac { 1 } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 ) \\bigg ] } \\\\ & { } & { \\quad + \\frac { 1 } { 2 } \\cdot - 3 \\mathbb { E } \\bigg [ \\frac { 1 } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 ) \\bigg ] > 0 . } \\end{array}", + "type": "interline_equation", + "image_path": "26afa1b6024b71f16c2da21a9b8beedb990e4eede4ba278ab113723d73ceb9d4.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 513, + 422, + 527.25 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 189, + 527.25, + 422, + 541.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 189, + 541.5, + 422, + 555.75 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 189, + 555.75, + 422, + 570.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 504, + 596 + ], + "lines": [ + { + "bbox": [ + 103, + 568, + 508, + 591 + ], + "spans": [ + { + "bbox": [ + 103, + 568, + 153, + 591 + ], + "score": 1.0, + "content": "This shows", + "type": "text" + }, + { + "bbox": [ + 154, + 573, + 233, + 586 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 , \\star } ^ { \\sf t r - t r } \\neq \\mathbf { w } _ { 0 , \\star } ( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 568, + 320, + 591 + ], + "score": 1.0, + "content": "and consequently the", + "type": "text" + }, + { + "bbox": [ + 320, + 573, + 343, + 587 + ], + "score": 0.93, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 568, + 428, + 591 + ], + "score": 1.0, + "content": "does not converge to", + "type": "text" + }, + { + "bbox": [ + 429, + 573, + 472, + 585 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { 0 , \\star } ( \\lambda , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 568, + 508, + 591 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 583, + 308, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 270, + 597 + ], + "score": 1.0, + "content": "difference is bounded away from zero as", + "type": "text" + }, + { + "bbox": [ + 305, + 583, + 308, + 597 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 103, + 568, + 508, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 103, + 597, + 507, + 618 + ], + "spans": [ + { + "bbox": [ + 103, + 597, + 258, + 618 + ], + "score": 1.0, + "content": "Finally, for this distribution, the risk", + "type": "text" + }, + { + "bbox": [ + 259, + 601, + 299, + 614 + ], + "score": 0.92, + "content": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } } ( \\mathbf { w } _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 597, + 507, + 618 + ], + "score": 1.0, + "content": "is strongly convex (since it has a positive second", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 103, + 609, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 103, + 609, + 254, + 631 + ], + "score": 1.0, + "content": "derivative), this further implies that", + "type": "text" + }, + { + "bbox": [ + 254, + 613, + 388, + 628 + ], + "score": 0.93, + "content": "L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) - L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 609, + 507, + 631 + ], + "score": 1.0, + "content": "is bounded away from zero", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 624, + 212, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 173, + 639 + ], + "score": 1.0, + "content": "almost surely as", + "type": "text" + }, + { + "bbox": [ + 173, + 626, + 207, + 636 + ], + "score": 0.89, + "content": "T \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 624, + 212, + 639 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 103, + 597, + 507, + 639 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 653, + 251, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 652, + 252, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 252, + 668 + ], + "score": 1.0, + "content": "B PROOFS FOR SECTION 4", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 230, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 231, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 231, + 690 + ], + "score": 1.0, + "content": "B.1 PROOF OF THEOREM 3", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 180, + 713 + ], + "score": 1.0, + "content": "We first show that", + "type": "text" + }, + { + "bbox": [ + 180, + 699, + 259, + 711 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 , \\star } = \\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\mathbf { w } _ { t } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 696, + 357, + 713 + ], + "score": 1.0, + "content": "is a global optimizer for", + "type": "text" + }, + { + "bbox": [ + 358, + 698, + 379, + 709 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 696, + 397, + 713 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 397, + 698, + 422, + 709 + ], + "score": 0.89, + "content": "L ^ { \\mathsf { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 696, + 506, + 713 + ], + "score": 1.0, + "content": "with any regulariza-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 168, + 722 + ], + "score": 1.0, + "content": "tion coefficient", + "type": "text" + }, + { + "bbox": [ + 169, + 710, + 194, + 720 + ], + "score": 0.9, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 709, + 214, + 722 + ], + "score": 1.0, + "content": ", any", + "type": "text" + }, + { + "bbox": [ + 214, + 712, + 221, + 720 + ], + "score": 0.8, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 709, + 279, + 722 + ], + "score": 1.0, + "content": ", and any split", + "type": "text" + }, + { + "bbox": [ + 279, + 710, + 312, + 722 + ], + "score": 0.94, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 709, + 505, + 722 + ], + "score": 1.0, + "content": ". To do this, it suffices to check that the gradient", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 721, + 331, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 116, + 733 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 117, + 722, + 137, + 733 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 721, + 331, + 733 + ], + "score": 1.0, + "content": "is zero and the Hessian is positive definite (PD).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 696, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 487, + 95 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 489, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 166, + 97 + ], + "score": 1.0, + "content": "Optimality of", + "type": "text" + }, + { + "bbox": [ + 167, + 83, + 186, + 95 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 79, + 220, + 97 + ], + "score": 1.0, + "content": "in both", + "type": "text" + }, + { + "bbox": [ + 221, + 82, + 242, + 93 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 79, + 262, + 97 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 262, + 82, + 287, + 93 + ], + "score": 0.84, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 79, + 355, + 97 + ], + "score": 1.0, + "content": ". We first look at", + "type": "text" + }, + { + "bbox": [ + 355, + 82, + 377, + 93 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 79, + 412, + 97 + ], + "score": 1.0, + "content": ": for any", + "type": "text" + }, + { + "bbox": [ + 412, + 82, + 451, + 94 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 79, + 489, + 97 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 97, + 484, + 167 + ], + "lines": [ + { + "bbox": [ + 126, + 97, + 484, + 167 + ], + "spans": [ + { + "bbox": [ + 126, + 97, + 484, + 167 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { L ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf w _ { 0 } ) = \\mathbb { E } [ \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf w _ { 0 } ) ] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { 2 n } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } \\left[ \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\left( \\mathbf { X } _ { t } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } \\mathbf { w } _ { 0 } \\right) + \\mathbf { w } _ { 0 } \\right] \\right\\| ^ { 2 } \\right] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { 2 n } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\left( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } \\right) \\right\\| ^ { 2 } \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "8f7d624cddea3c92290243b83185b00850bb5dcb3e2110b11f50c14ce81d650f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 126, + 97, + 484, + 120.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 120.33333333333333, + 484, + 143.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 126, + 143.66666666666666, + 484, + 167.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 168, + 244, + 181 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 245, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 148, + 183 + ], + "score": 1.0, + "content": "Similarly,", + "type": "text" + }, + { + "bbox": [ + 148, + 169, + 173, + 180 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 166, + 245, + 183 + ], + "score": 1.0, + "content": "can be written as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 184, + 514, + 271 + ], + "lines": [ + { + "bbox": [ + 111, + 184, + 514, + 271 + ], + "spans": [ + { + "bbox": [ + 111, + 184, + 514, + 271 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } & { \\quad L ^ { \\mathrm { t r } \\cdot \\mathrm { s c a l } } ( \\mathbf { w } _ { 0 } ) } & { ( 1 3 ) } \\\\ & { = \\mathbb { E } \\bigl [ \\phi _ { t } ^ { \\mathrm { r } \\cdot \\mathrm { s c a l } } ( \\mathbf { w } _ { 0 } ) \\bigr ] } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n _ { 2 } } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } ^ { \\mathrm { s c a l } } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left[ \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\left( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { 0 } \\right) + \\mathbf { w } _ { 0 } \\right] \\right\\| ^ { 2 } \\right. } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n _ { 2 } } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left( \\mathbf { I } _ { d } - \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right\\| ^ { 2 } \\right] . } & { ( 1 4 ) } \\end{array}", + "type": "interline_equation", + "image_path": "e3e86abdb403b4883b9461f4b172bed34d919a81cea37db12756843952d2b050.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 111, + 184, + 514, + 213.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 213.0, + 514, + 242.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 111, + 242.0, + 514, + 271.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 151, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 152, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 152, + 285 + ], + "score": 1.0, + "content": "We denote", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 285, + 444, + 330 + ], + "lines": [ + { + "bbox": [ + 166, + 285, + 444, + 330 + ], + "spans": [ + { + "bbox": [ + 166, + 285, + 444, + 330 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } = \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\quad \\mathrm { a n d } } \\\\ & { \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } = \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left( \\mathbf { I } _ { d } - \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\left( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) } \\end{array}", + "type": "interline_equation", + "image_path": "bb52c36cf08d22d805aafd97b9d1005fe833678991f90d4a74f5e1f2cd75305d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 166, + 285, + 444, + 300.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 166, + 300.0, + 444, + 315.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 166, + 315.0, + 444, + 330.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 499, + 346 + ], + "lines": [ + { + "bbox": [ + 104, + 329, + 496, + 350 + ], + "spans": [ + { + "bbox": [ + 104, + 329, + 355, + 350 + ], + "score": 1.0, + "content": "to simplify the notations in (12) and (14). We take gradient of", + "type": "text" + }, + { + "bbox": [ + 355, + 334, + 376, + 344 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 329, + 395, + 350 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 334, + 420, + 344 + ], + "score": 0.89, + "content": "L ^ { \\mathsf { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 329, + 482, + 350 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 483, + 336, + 496, + 345 + ], + "score": 0.84, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 348, + 423, + 400 + ], + "lines": [ + { + "bbox": [ + 186, + 348, + 423, + 400 + ], + "spans": [ + { + "bbox": [ + 186, + 348, + 423, + 400 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 } ) = - \\displaystyle \\frac { 1 } { n } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right] , } \\\\ & { \\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - v a l } } ( \\mathbf { w } _ { 0 } ) = - \\displaystyle \\frac { 1 } { n _ { 2 } } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "d9694f9294373c2b47090b367db349e4abd7fef797734c1a4fd756c9bf36740a.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 186, + 348, + 423, + 365.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 186, + 365.3333333333333, + 423, + 382.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 186, + 382.66666666666663, + 423, + 399.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 355, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 356, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 157, + 415 + ], + "score": 1.0, + "content": "Substituting", + "type": "text" + }, + { + "bbox": [ + 157, + 403, + 177, + 414 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 399, + 356, + 415 + ], + "score": 1.0, + "content": "into (17) and taking expectation, we deduce", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 417, + 431, + 441 + ], + "lines": [ + { + "bbox": [ + 179, + 417, + 431, + 441 + ], + "spans": [ + { + "bbox": [ + 179, + 417, + 431, + 441 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) = - \\frac { 1 } { n } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } ) \\right] = \\mathbf { 0 } .", + "type": "interline_equation", + "image_path": "36d93d302ee9e8a65cf28830bea4d067882ee63dd369f4a5a9a83143e402a4b7.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 179, + 417, + 431, + 441 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 265, + 457 + ], + "score": 1.0, + "content": "To see this, observe that by definition", + "type": "text" + }, + { + "bbox": [ + 266, + 444, + 346, + 457 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } ] = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 444, + 423, + 457 + ], + "score": 1.0, + "content": ". Combining with", + "type": "text" + }, + { + "bbox": [ + 423, + 446, + 436, + 455 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "being generated", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 455, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 177, + 467 + ], + "score": 1.0, + "content": "independently of", + "type": "text" + }, + { + "bbox": [ + 177, + 456, + 190, + 466 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 455, + 432, + 467 + ], + "score": 1.0, + "content": ", we have the first term in RHS of (19) vanish. In addition,", + "type": "text" + }, + { + "bbox": [ + 432, + 457, + 442, + 466 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 455, + 505, + 467 + ], + "score": 1.0, + "content": "is independent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "white noise, therefore, the second term in RHS of (19) also vanishes. Following the same argument,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 478, + 160, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 160, + 488 + ], + "score": 1.0, + "content": "we can show", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 491, + 352, + 506 + ], + "lines": [ + { + "bbox": [ + 258, + 491, + 352, + 506 + ], + "spans": [ + { + "bbox": [ + 258, + 491, + 352, + 506 + ], + "score": 0.91, + "content": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - v a l } } ( \\mathbf { w } _ { 0 , \\star } ) = \\mathbf { 0 } ,", + "type": "interline_equation", + "image_path": "c3e37c8a4cf9cb95e1398465f71bc9e8be4f24a09e9603d9ff0eb6be7ccf5cdd.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 258, + 491, + 352, + 506 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 129, + 523 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 130, + 510, + 143, + 522 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 508, + 236, + 523 + ], + "score": 1.0, + "content": "is also independent of", + "type": "text" + }, + { + "bbox": [ + 236, + 511, + 249, + 521 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 508, + 401, + 523 + ], + "score": 1.0, + "content": ". The above reasonings indicates that", + "type": "text" + }, + { + "bbox": [ + 401, + 512, + 421, + 522 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 508, + 505, + 523 + ], + "score": 1.0, + "content": "is a stationary point", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 518, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 137, + 536 + ], + "score": 1.0, + "content": "of both", + "type": "text" + }, + { + "bbox": [ + 138, + 522, + 159, + 532 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 518, + 177, + 536 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 522, + 202, + 532 + ], + "score": 0.88, + "content": "L ^ { \\mathsf { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 518, + 332, + 536 + ], + "score": 1.0, + "content": ". The remaining step is to check", + "type": "text" + }, + { + "bbox": [ + 332, + 522, + 399, + 534 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - t r } } \\bigl ( \\mathbf { w } _ { 0 , \\star } \\bigr )", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 518, + 418, + 536 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 522, + 489, + 534 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - v a l } } \\left( \\mathbf { w } _ { 0 , \\star } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 518, + 506, + 536 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 532, + 432, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 354, + 547 + ], + "score": 1.0, + "content": "PD. From (17) and (18), we derive respectively the hessian of", + "type": "text" + }, + { + "bbox": [ + 355, + 535, + 376, + 544 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 532, + 394, + 547 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 534, + 419, + 544 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 532, + 432, + 547 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 549, + 404, + 599 + ], + "lines": [ + { + "bbox": [ + 208, + 549, + 404, + 599 + ], + "spans": [ + { + "bbox": [ + 208, + 549, + 404, + 599 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) = \\displaystyle \\frac { 1 } { n } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ] \\quad \\mathrm { a n d } } \\\\ & { \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - v a l } } ( \\mathbf { w } _ { 0 , \\star } ) = \\displaystyle \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - v a l } } ] . } \\end{array}", + "type": "interline_equation", + "image_path": "87bcb03eda6e2cdf0b972899c1755972d60af4d1f5cb3904509f91f7154d1ad7.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 208, + 549, + 404, + 565.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 208, + 565.6666666666666, + 404, + 582.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 208, + 582.3333333333333, + 404, + 598.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 506, + 666 + ], + "lines": [ + { + "bbox": [ + 104, + 599, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 599, + 124, + 617 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 602, + 166, + 614 + ], + "score": 0.9, + "content": "\\textbf { v } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 599, + 318, + 617 + ], + "score": 1.0, + "content": "be any nonzero vector, we check", + "type": "text" + }, + { + "bbox": [ + 318, + 602, + 434, + 616 + ], + "score": 0.92, + "content": "\\mathbf { v } ^ { \\top } \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) \\mathbf { v } \\ > \\ \\mathrm { ~ 0 ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 599, + 505, + 617 + ], + "score": 1.0, + "content": ". A key obser-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 615, + 507, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 167, + 633 + ], + "score": 1.0, + "content": "vation is that", + "type": "text" + }, + { + "bbox": [ + 167, + 615, + 311, + 635 + ], + "score": 0.92, + "content": "\\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 615, + 430, + 633 + ], + "score": 1.0, + "content": "is positive definite for any", + "type": "text" + }, + { + "bbox": [ + 431, + 619, + 464, + 631 + ], + "score": 0.91, + "content": "\\lambda \\ \\ne \\ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 615, + 507, + 633 + ], + "score": 1.0, + "content": ". To see", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 633, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 142, + 649 + ], + "score": 1.0, + "content": "this, let", + "type": "text" + }, + { + "bbox": [ + 143, + 636, + 217, + 647 + ], + "score": 0.87, + "content": "\\sigma _ { 1 } ~ \\geq ~ \\cdots ~ \\geq ~ \\sigma _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 633, + 297, + 649 + ], + "score": 1.0, + "content": "be eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 298, + 634, + 333, + 648 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { 1 } { n } } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 633, + 506, + 649 + ], + "score": 1.0, + "content": ", some algebra yields the eigenvalues of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 645, + 499, + 670 + ], + "spans": [ + { + "bbox": [ + 107, + 647, + 249, + 667 + ], + "score": 0.9, + "content": "\\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 645, + 267, + 670 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 267, + 649, + 307, + 665 + ], + "score": 0.92, + "content": "\\frac { \\lambda } { \\lambda + \\sigma _ { i } } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 645, + 322, + 670 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 322, + 651, + 348, + 662 + ], + "score": 0.9, + "content": "\\lambda \\neq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 645, + 366, + 670 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 366, + 651, + 416, + 662 + ], + "score": 0.91, + "content": "i = 1 , \\ldots , d", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 645, + 499, + 670 + ], + "score": 1.0, + "content": ". Hence, we deduce", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 670, + 467, + 694 + ], + "lines": [ + { + "bbox": [ + 126, + 670, + 467, + 694 + ], + "spans": [ + { + "bbox": [ + 126, + 670, + 467, + 694 + ], + "score": 0.9, + "content": "\\mathbf { v } ^ { \\top } \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) \\mathbf { v } = \\frac { 1 } { n } \\mathbb { E } [ \\mathbf { v } ^ { \\top } \\mathbf { X } _ { t } ^ { \\top } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) ^ { 2 } \\mathbf { X } _ { t } \\mathbf { v } ] > 0 ,", + "type": "interline_equation", + "image_path": "dcb5f2e491be4702a99ecbfb61631ebbbfdf626021470491528350e9c447ba63.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 126, + 670, + 467, + 694 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 697, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 697, + 504, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 129, + 710 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 698, + 143, + 708 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 697, + 504, + 710 + ], + "score": 1.0, + "content": "is isotropic (an explicit computation of the hessian matrix can be found in Appendix B.2).", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 707, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 271, + 722 + ], + "score": 1.0, + "content": "As a consequence, we have shown that", + "type": "text" + }, + { + "bbox": [ + 271, + 710, + 292, + 720 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 707, + 392, + 722 + ], + "score": 1.0, + "content": "is a global optimum of", + "type": "text" + }, + { + "bbox": [ + 393, + 708, + 414, + 718 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 707, + 506, + 722 + ], + "score": 1.0, + "content": ". The same argument", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 718, + 284, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 147, + 735 + ], + "score": 1.0, + "content": "applies to", + "type": "text" + }, + { + "bbox": [ + 147, + 720, + 172, + 731 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 718, + 284, + 735 + ], + "score": 1.0, + "content": ", and the proof is complete.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 487, + 95 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 489, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 166, + 97 + ], + "score": 1.0, + "content": "Optimality of", + "type": "text" + }, + { + "bbox": [ + 167, + 83, + 186, + 95 + ], + "score": 0.9, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 79, + 220, + 97 + ], + "score": 1.0, + "content": "in both", + "type": "text" + }, + { + "bbox": [ + 221, + 82, + 242, + 93 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 79, + 262, + 97 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 262, + 82, + 287, + 93 + ], + "score": 0.84, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 79, + 355, + 97 + ], + "score": 1.0, + "content": ". We first look at", + "type": "text" + }, + { + "bbox": [ + 355, + 82, + 377, + 93 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 79, + 412, + 97 + ], + "score": 1.0, + "content": ": for any", + "type": "text" + }, + { + "bbox": [ + 412, + 82, + 451, + 94 + ], + "score": 0.92, + "content": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 79, + 489, + 97 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 104, + 79, + 489, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 97, + 484, + 167 + ], + "lines": [ + { + "bbox": [ + 126, + 97, + 484, + 167 + ], + "spans": [ + { + "bbox": [ + 126, + 97, + 484, + 167 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { L ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf w _ { 0 } ) = \\mathbb { E } [ \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf w _ { 0 } ) ] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { 2 n } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } \\left[ \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\left( \\mathbf { X } _ { t } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } \\mathbf { w } _ { 0 } \\right) + \\mathbf { w } _ { 0 } \\right] \\right\\| ^ { 2 } \\right] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { 2 n } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\left( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } \\right) \\right\\| ^ { 2 } \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "8f7d624cddea3c92290243b83185b00850bb5dcb3e2110b11f50c14ce81d650f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 126, + 97, + 484, + 120.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 120.33333333333333, + 484, + 143.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 126, + 143.66666666666666, + 484, + 167.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 168, + 244, + 181 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 245, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 148, + 183 + ], + "score": 1.0, + "content": "Similarly,", + "type": "text" + }, + { + "bbox": [ + 148, + 169, + 173, + 180 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 166, + 245, + 183 + ], + "score": 1.0, + "content": "can be written as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 166, + 245, + 183 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 184, + 514, + 271 + ], + "lines": [ + { + "bbox": [ + 111, + 184, + 514, + 271 + ], + "spans": [ + { + "bbox": [ + 111, + 184, + 514, + 271 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } & { \\quad L ^ { \\mathrm { t r } \\cdot \\mathrm { s c a l } } ( \\mathbf { w } _ { 0 } ) } & { ( 1 3 ) } \\\\ & { = \\mathbb { E } \\bigl [ \\phi _ { t } ^ { \\mathrm { r } \\cdot \\mathrm { s c a l } } ( \\mathbf { w } _ { 0 } ) \\bigr ] } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n _ { 2 } } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } ^ { \\mathrm { s c a l } } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left[ \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\left( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { 0 } \\right) + \\mathbf { w } _ { 0 } \\right] \\right\\| ^ { 2 } \\right. } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n _ { 2 } } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left( \\mathbf { I } _ { d } - \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right\\| ^ { 2 } \\right] . } & { ( 1 4 ) } \\end{array}", + "type": "interline_equation", + "image_path": "e3e86abdb403b4883b9461f4b172bed34d919a81cea37db12756843952d2b050.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 111, + 184, + 514, + 213.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 213.0, + 514, + 242.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 111, + 242.0, + 514, + 271.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 151, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 152, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 152, + 285 + ], + "score": 1.0, + "content": "We denote", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 271, + 152, + 285 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 166, + 285, + 444, + 330 + ], + "lines": [ + { + "bbox": [ + 166, + 285, + 444, + 330 + ], + "spans": [ + { + "bbox": [ + 166, + 285, + 444, + 330 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } = \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\quad \\mathrm { a n d } } \\\\ & { \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } = \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left( \\mathbf { I } _ { d } - \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\left( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) } \\end{array}", + "type": "interline_equation", + "image_path": "bb52c36cf08d22d805aafd97b9d1005fe833678991f90d4a74f5e1f2cd75305d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 166, + 285, + 444, + 300.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 166, + 300.0, + 444, + 315.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 166, + 315.0, + 444, + 330.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 499, + 346 + ], + "lines": [ + { + "bbox": [ + 104, + 329, + 496, + 350 + ], + "spans": [ + { + "bbox": [ + 104, + 329, + 355, + 350 + ], + "score": 1.0, + "content": "to simplify the notations in (12) and (14). We take gradient of", + "type": "text" + }, + { + "bbox": [ + 355, + 334, + 376, + 344 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 329, + 395, + 350 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 334, + 420, + 344 + ], + "score": 0.89, + "content": "L ^ { \\mathsf { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 329, + 482, + 350 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 483, + 336, + 496, + 345 + ], + "score": 0.84, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 329, + 496, + 350 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 348, + 423, + 400 + ], + "lines": [ + { + "bbox": [ + 186, + 348, + 423, + 400 + ], + "spans": [ + { + "bbox": [ + 186, + 348, + 423, + 400 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 } ) = - \\displaystyle \\frac { 1 } { n } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right] , } \\\\ & { \\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - v a l } } ( \\mathbf { w } _ { 0 } ) = - \\displaystyle \\frac { 1 } { n _ { 2 } } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "d9694f9294373c2b47090b367db349e4abd7fef797734c1a4fd756c9bf36740a.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 186, + 348, + 423, + 365.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 186, + 365.3333333333333, + 423, + 382.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 186, + 382.66666666666663, + 423, + 399.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 355, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 356, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 157, + 415 + ], + "score": 1.0, + "content": "Substituting", + "type": "text" + }, + { + "bbox": [ + 157, + 403, + 177, + 414 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 399, + 356, + 415 + ], + "score": 1.0, + "content": "into (17) and taking expectation, we deduce", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 399, + 356, + 415 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 417, + 431, + 441 + ], + "lines": [ + { + "bbox": [ + 179, + 417, + 431, + 441 + ], + "spans": [ + { + "bbox": [ + 179, + 417, + 431, + 441 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) = - \\frac { 1 } { n } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } ) \\right] = \\mathbf { 0 } .", + "type": "interline_equation", + "image_path": "36d93d302ee9e8a65cf28830bea4d067882ee63dd369f4a5a9a83143e402a4b7.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 179, + 417, + 431, + 441 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 265, + 457 + ], + "score": 1.0, + "content": "To see this, observe that by definition", + "type": "text" + }, + { + "bbox": [ + 266, + 444, + 346, + 457 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } ] = \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 444, + 423, + 457 + ], + "score": 1.0, + "content": ". Combining with", + "type": "text" + }, + { + "bbox": [ + 423, + 446, + 436, + 455 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "being generated", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 455, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 177, + 467 + ], + "score": 1.0, + "content": "independently of", + "type": "text" + }, + { + "bbox": [ + 177, + 456, + 190, + 466 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 455, + 432, + 467 + ], + "score": 1.0, + "content": ", we have the first term in RHS of (19) vanish. In addition,", + "type": "text" + }, + { + "bbox": [ + 432, + 457, + 442, + 466 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 455, + 505, + 467 + ], + "score": 1.0, + "content": "is independent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "white noise, therefore, the second term in RHS of (19) also vanishes. Following the same argument,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 478, + 160, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 160, + 488 + ], + "score": 1.0, + "content": "we can show", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 444, + 506, + 488 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 491, + 352, + 506 + ], + "lines": [ + { + "bbox": [ + 258, + 491, + 352, + 506 + ], + "spans": [ + { + "bbox": [ + 258, + 491, + 352, + 506 + ], + "score": 0.91, + "content": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - v a l } } ( \\mathbf { w } _ { 0 , \\star } ) = \\mathbf { 0 } ,", + "type": "interline_equation", + "image_path": "c3e37c8a4cf9cb95e1398465f71bc9e8be4f24a09e9603d9ff0eb6be7ccf5cdd.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 258, + 491, + 352, + 506 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 129, + 523 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 130, + 510, + 143, + 522 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 508, + 236, + 523 + ], + "score": 1.0, + "content": "is also independent of", + "type": "text" + }, + { + "bbox": [ + 236, + 511, + 249, + 521 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 508, + 401, + 523 + ], + "score": 1.0, + "content": ". The above reasonings indicates that", + "type": "text" + }, + { + "bbox": [ + 401, + 512, + 421, + 522 + ], + "score": 0.88, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 508, + 505, + 523 + ], + "score": 1.0, + "content": "is a stationary point", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 518, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 137, + 536 + ], + "score": 1.0, + "content": "of both", + "type": "text" + }, + { + "bbox": [ + 138, + 522, + 159, + 532 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 518, + 177, + 536 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 522, + 202, + 532 + ], + "score": 0.88, + "content": "L ^ { \\mathsf { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 518, + 332, + 536 + ], + "score": 1.0, + "content": ". The remaining step is to check", + "type": "text" + }, + { + "bbox": [ + 332, + 522, + 399, + 534 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - t r } } \\bigl ( \\mathbf { w } _ { 0 , \\star } \\bigr )", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 518, + 418, + 536 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 419, + 522, + 489, + 534 + ], + "score": 0.92, + "content": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - v a l } } \\left( \\mathbf { w } _ { 0 , \\star } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 518, + 506, + 536 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 532, + 432, + 547 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 354, + 547 + ], + "score": 1.0, + "content": "PD. From (17) and (18), we derive respectively the hessian of", + "type": "text" + }, + { + "bbox": [ + 355, + 535, + 376, + 544 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 532, + 394, + 547 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 534, + 419, + 544 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 532, + 432, + 547 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 508, + 506, + 547 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 549, + 404, + 599 + ], + "lines": [ + { + "bbox": [ + 208, + 549, + 404, + 599 + ], + "spans": [ + { + "bbox": [ + 208, + 549, + 404, + 599 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) = \\displaystyle \\frac { 1 } { n } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ] \\quad \\mathrm { a n d } } \\\\ & { \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - v a l } } ( \\mathbf { w } _ { 0 , \\star } ) = \\displaystyle \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - v a l } } ] . } \\end{array}", + "type": "interline_equation", + "image_path": "87bcb03eda6e2cdf0b972899c1755972d60af4d1f5cb3904509f91f7154d1ad7.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 208, + 549, + 404, + 565.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 208, + 565.6666666666666, + 404, + 582.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 208, + 582.3333333333333, + 404, + 598.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 506, + 666 + ], + "lines": [ + { + "bbox": [ + 104, + 599, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 599, + 124, + 617 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 602, + 166, + 614 + ], + "score": 0.9, + "content": "\\textbf { v } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 599, + 318, + 617 + ], + "score": 1.0, + "content": "be any nonzero vector, we check", + "type": "text" + }, + { + "bbox": [ + 318, + 602, + 434, + 616 + ], + "score": 0.92, + "content": "\\mathbf { v } ^ { \\top } \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) \\mathbf { v } \\ > \\ \\mathrm { ~ 0 ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 599, + 505, + 617 + ], + "score": 1.0, + "content": ". A key obser-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 615, + 507, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 167, + 633 + ], + "score": 1.0, + "content": "vation is that", + "type": "text" + }, + { + "bbox": [ + 167, + 615, + 311, + 635 + ], + "score": 0.92, + "content": "\\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 615, + 430, + 633 + ], + "score": 1.0, + "content": "is positive definite for any", + "type": "text" + }, + { + "bbox": [ + 431, + 619, + 464, + 631 + ], + "score": 0.91, + "content": "\\lambda \\ \\ne \\ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 615, + 507, + 633 + ], + "score": 1.0, + "content": ". To see", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 633, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 142, + 649 + ], + "score": 1.0, + "content": "this, let", + "type": "text" + }, + { + "bbox": [ + 143, + 636, + 217, + 647 + ], + "score": 0.87, + "content": "\\sigma _ { 1 } ~ \\geq ~ \\cdots ~ \\geq ~ \\sigma _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 633, + 297, + 649 + ], + "score": 1.0, + "content": "be eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 298, + 634, + 333, + 648 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { 1 } { n } } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 633, + 506, + 649 + ], + "score": 1.0, + "content": ", some algebra yields the eigenvalues of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 645, + 499, + 670 + ], + "spans": [ + { + "bbox": [ + 107, + 647, + 249, + 667 + ], + "score": 0.9, + "content": "\\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 645, + 267, + 670 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 267, + 649, + 307, + 665 + ], + "score": 0.92, + "content": "\\frac { \\lambda } { \\lambda + \\sigma _ { i } } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 645, + 322, + 670 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 322, + 651, + 348, + 662 + ], + "score": 0.9, + "content": "\\lambda \\neq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 645, + 366, + 670 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 366, + 651, + 416, + 662 + ], + "score": 0.91, + "content": "i = 1 , \\ldots , d", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 645, + 499, + 670 + ], + "score": 1.0, + "content": ". Hence, we deduce", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 104, + 599, + 507, + 670 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 670, + 467, + 694 + ], + "lines": [ + { + "bbox": [ + 126, + 670, + 467, + 694 + ], + "spans": [ + { + "bbox": [ + 126, + 670, + 467, + 694 + ], + "score": 0.9, + "content": "\\mathbf { v } ^ { \\top } \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) \\mathbf { v } = \\frac { 1 } { n } \\mathbb { E } [ \\mathbf { v } ^ { \\top } \\mathbf { X } _ { t } ^ { \\top } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) ^ { 2 } \\mathbf { X } _ { t } \\mathbf { v } ] > 0 ,", + "type": "interline_equation", + "image_path": "dcb5f2e491be4702a99ecbfb61631ebbbfdf626021470491528350e9c447ba63.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 126, + 670, + 467, + 694 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 697, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 697, + 504, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 129, + 710 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 698, + 143, + 708 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 697, + 504, + 710 + ], + "score": 1.0, + "content": "is isotropic (an explicit computation of the hessian matrix can be found in Appendix B.2).", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 707, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 271, + 722 + ], + "score": 1.0, + "content": "As a consequence, we have shown that", + "type": "text" + }, + { + "bbox": [ + 271, + 710, + 292, + 720 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 707, + 392, + 722 + ], + "score": 1.0, + "content": "is a global optimum of", + "type": "text" + }, + { + "bbox": [ + 393, + 708, + 414, + 718 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 707, + 506, + 722 + ], + "score": 1.0, + "content": ". The same argument", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 718, + 284, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 147, + 735 + ], + "score": 1.0, + "content": "applies to", + "type": "text" + }, + { + "bbox": [ + 147, + 720, + 172, + 731 + ], + "score": 0.88, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 718, + 284, + 735 + ], + "score": 1.0, + "content": ", and the proof is complete.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 697, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 79, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 72, + 506, + 103 + ], + "spans": [ + { + "bbox": [ + 104, + 72, + 171, + 103 + ], + "score": 1.0, + "content": "Consistency of", + "type": "text" + }, + { + "bbox": [ + 176, + 79, + 506, + 97 + ], + "score": 1.0, + "content": "w {tr-tr,tr-val}0,T . To check the consistency, we need to verify the conditions (a) – (c) in", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 314, + 124 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 315, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 315, + 124 + ], + "score": 1.0, + "content": "For condition (a), we derive from (17) and (18) that", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 126, + 498, + 150 + ], + "lines": [ + { + "bbox": [ + 111, + 126, + 498, + 150 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 498, + 150 + ], + "score": 0.9, + "content": "\\left. \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } } \\} } ( \\mathbf { w } _ { 1 } ) - \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } ( \\mathbf { w } _ { 2 } ) \\right. \\leq \\frac { 1 } { n } \\left. ( \\mathbf { M } _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } \\right. _ { \\mathrm { o p } } \\left. \\mathbf { w } _ { 1 } - \\mathbf { w } _ { 2 } \\right. ,", + "type": "interline_equation", + "image_path": "fd75ce799d90280e75fc9433ed4a39e66e9b2e28d64282716b753981cc712eb6.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 126, + 498, + 150 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 506, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 504, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 133, + 168 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 157, + 140, + 165 + ], + "score": 0.78, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 153, + 228, + 168 + ], + "score": 1.0, + "content": "should be replaced by", + "type": "text" + }, + { + "bbox": [ + 229, + 156, + 240, + 166 + ], + "score": 0.83, + "content": "n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 153, + 504, + 168 + ], + "score": 1.0, + "content": "for the split method (we slightly abuse the notation for simplicity).", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 165, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 181, + 190 + ], + "score": 1.0, + "content": "It suffices to show", + "type": "text" + }, + { + "bbox": [ + 181, + 166, + 361, + 191 + ], + "score": 0.89, + "content": "\\mathbb { E } \\left[ \\left. ( \\mathbf { M } _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { t r } , \\mathsf { t r } - \\mathsf { v a l } \\} } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { t r } , \\mathsf { t r } - \\mathsf { v a l } \\} } \\right. _ { \\mathrm { o p } } \\right] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 172, + 505, + 186 + ], + "score": 1.0, + "content": ", which follows from the same argu-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 190, + 504, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 334, + 207 + ], + "score": 1.0, + "content": "ment in the proof of Proposition 1. In particular, we know", + "type": "text" + }, + { + "bbox": [ + 335, + 190, + 504, + 206 + ], + "score": 0.92, + "content": "\\mathbf { 0 } \\preceq \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\preceq \\mathbf { I } _ { d }", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 204, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 125, + 221 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 205, + 217, + 220 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\left. \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right. _ { \\mathrm { o p } } ] ~ < ~ \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 204, + 244, + 221 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 244, + 206, + 258, + 217 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 204, + 506, + 221 + ], + "score": 1.0, + "content": "is Gaussian. As a consequence, for the no-split method,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 218, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 218, + 146, + 240 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 147, + 220, + 282, + 240 + ], + "score": 0.91, + "content": "\\mathbb { E } \\left[ \\big \\lVert ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } - \\mathrm { t r } } \\big \\rVert _ { \\mathrm { o p } } ^ { 2 } \\right] \\ < \\ \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 218, + 452, + 240 + ], + "score": 1.0, + "content": ". For the split method, we also have", + "type": "text" + }, + { + "bbox": [ + 453, + 223, + 505, + 236 + ], + "score": 0.87, + "content": "\\mathrm { ~ { ~ \\bf ~ 0 ~ } ~ } \\preceq \\mathrm { ~ \\bf ~ I } _ { d } \\mathrm { ~ - ~ }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 237, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 107, + 240, + 312, + 255 + ], + "score": 0.75, + "content": "\\left( ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } \\preceq \\mathbf { I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 237, + 330, + 258 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 240, + 441, + 257 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\left. ( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\right. _ { \\mathrm { o p } } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 237, + 506, + 258 + ], + "score": 1.0, + "content": ", which implies", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 256, + 240, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 240, + 276 + ], + "score": 0.76, + "content": "\\mathbb { E } \\left[ \\left. ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } \\right. _ { \\mathrm { o p } } ^ { 2 } \\right] < \\infty .", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 278, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 432, + 295 + ], + "score": 1.0, + "content": "For condition (b), using a similar argument in condition (a) and combining with", + "type": "text" + }, + { + "bbox": [ + 432, + 280, + 506, + 294 + ], + "score": 0.91, + "content": "R ^ { 2 } = \\mathbb { E } [ \\| \\mathbf { w } _ { 0 , \\star } -", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 288, + 309, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 132, + 308 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { t } \\| ^ { 2 } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 288, + 171, + 312 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 171, + 293, + 303, + 308 + ], + "score": 0.89, + "content": "\\mathbb { E } [ \\| \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r } - \\mathrm { t r } , \\mathrm { t r } - \\mathrm { v a l } \\} } ( \\mathbf { w } _ { 0 , \\star } ) \\| ^ { 2 } ] < \\infty .", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 288, + 309, + 312 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 104, + 311, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 104, + 311, + 340, + 327 + ], + "score": 1.0, + "content": "For condition (c), using (20), we directly verify that", + "type": "text" + }, + { + "bbox": [ + 340, + 313, + 389, + 325 + ], + "score": 0.83, + "content": "L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 311, + 506, + 327 + ], + "score": 1.0, + "content": "is twice-differentiable and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 322, + 192, + 339 + ], + "spans": [ + { + "bbox": [ + 107, + 325, + 187, + 336 + ], + "score": 0.86, + "content": "\\nabla ^ { 2 } L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} } \\succ \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 322, + 192, + 339 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 107, + 350, + 220, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 221, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 221, + 363 + ], + "score": 1.0, + "content": "B.2 PROOF OF LEMMA 5", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 506, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "Proof. In this section we prove Lemma 5. Using the the asymptotic normality in Proposition 6,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 379, + 507, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 220, + 400 + ], + "score": 1.0, + "content": "the asymptotic covariance is", + "type": "text" + }, + { + "bbox": [ + 221, + 382, + 433, + 397 + ], + "score": 0.89, + "content": "\\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } \\mathrm { C o v } \\big [ \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } \\big ] \\big \\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } .", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 379, + 507, + 400 + ], + "score": 1.0, + "content": ". Therefore, in the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 103, + 394, + 403, + 414 + ], + "spans": [ + { + "bbox": [ + 103, + 394, + 403, + 414 + ], + "score": 1.0, + "content": "following, we only need to find ∇−2L{tr-tr,tr-val} and Cov[∇`{tr-tr,tr-val}t ].", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 415, + 504, + 442 + ], + "lines": [ + { + "bbox": [ + 104, + 413, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 104, + 413, + 225, + 432 + ], + "score": 1.0, + "content": "• Asymptotic variance of", + "type": "text" + }, + { + "bbox": [ + 225, + 416, + 248, + 430 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 413, + 506, + 432 + ], + "score": 1.0, + "content": ". We begin with the computation of the expected Hessian", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 426, + 196, + 444 + ], + "spans": [ + { + "bbox": [ + 107, + 428, + 191, + 443 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\frac { 1 } { n } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 426, + 196, + 444 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 445, + 496, + 514 + ], + "lines": [ + { + "bbox": [ + 115, + 445, + 496, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 445, + 496, + 514 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } \\big [ \\big ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } \\cdot \\mathsf { r } } \\big ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } \\big ] } \\\\ & { = \\mathbb { E } \\left[ \\Big ( \\mathbf { I } _ { d } - \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\Big ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\right] } \\\\ & { \\overset { ( i ) } { = } \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) ^ { \\top } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] , } \\end{array}", + "type": "interline_equation", + "image_path": "7c0a4d8f3cbd7f285ca5a85dd9de2fef59c13db6ab714e7e25c4fcff915e819c.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 115, + 445, + 496, + 468.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 115, + 468.0, + 496, + 491.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 115, + 491.0, + 496, + 514.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 104, + 526, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 104, + 526, + 185, + 543 + ], + "score": 1.0, + "content": "where the equality", + "type": "text" + }, + { + "bbox": [ + 185, + 529, + 196, + 541 + ], + "score": 0.84, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 526, + 358, + 543 + ], + "score": 1.0, + "content": "is obtained by plugging in the SVD of", + "type": "text" + }, + { + "bbox": [ + 358, + 528, + 426, + 541 + ], + "score": 0.93, + "content": "\\mathbf { X } _ { t } = \\mathbf { U } _ { t } \\mathbf { D } _ { t } \\mathbf { V } _ { t } ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 526, + 449, + 543 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 450, + 529, + 501, + 540 + ], + "score": 0.89, + "content": "\\mathbf { U } _ { t } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 526, + 506, + 543 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 537, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 157, + 551 + ], + "score": 0.92, + "content": "\\mathbf { D } _ { t } \\in \\mathbb { R } ^ { n \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 537, + 179, + 554 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 179, + 540, + 229, + 551 + ], + "score": 0.93, + "content": "\\dot { \\mathbf { V } _ { t } } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 537, + 339, + 554 + ], + "score": 1.0, + "content": ". A key observation is that", + "type": "text" + }, + { + "bbox": [ + 339, + 540, + 353, + 551 + ], + "score": 0.89, + "content": "\\mathbf { U } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 537, + 372, + 554 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 541, + 386, + 551 + ], + "score": 0.87, + "content": "\\mathbf { V } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 537, + 480, + 554 + ], + "score": 1.0, + "content": "are independent, since", + "type": "text" + }, + { + "bbox": [ + 480, + 541, + 494, + 551 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 537, + 507, + 554 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "isotropic, i.e., homogeneous in each orthogonal direction. To see this, for any orthogonal matrices", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 559, + 507, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 154, + 573 + ], + "score": 0.91, + "content": "\\mathbf { Q } \\in \\mathbb { \\bar { R } } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 559, + 172, + 576 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 173, + 561, + 217, + 572 + ], + "score": 0.9, + "content": "\\mathbf { P } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 559, + 261, + 576 + ], + "score": 1.0, + "content": ", we know", + "type": "text" + }, + { + "bbox": [ + 261, + 562, + 275, + 573 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 559, + 294, + 576 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 294, + 561, + 330, + 573 + ], + "score": 0.91, + "content": "\\mathbf { Q } \\mathbf { X } _ { t } \\mathbf { P } ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 559, + 507, + 576 + ], + "score": 1.0, + "content": "share the same distribution. Moreover, we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 127, + 587 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 128, + 573, + 252, + 585 + ], + "score": 0.9, + "content": "\\mathbf { Q } \\mathbf { X } _ { t } \\mathbf { P } ^ { \\top } = ( \\mathbf { Q } \\mathbf { U } _ { t } ) \\mathbf { D } _ { t } ( \\mathbf { P } \\mathbf { V } _ { t } ) ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "as the SVD. This shows that the left and right singular matrices", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 583, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 598 + ], + "score": 1.0, + "content": "are independent and both uniformly distributed on all the orthogonal matrices of the corresponding", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 591, + 285, + 610 + ], + "spans": [ + { + "bbox": [ + 104, + 591, + 157, + 610 + ], + "score": 1.0, + "content": "dimensions", + "type": "text" + }, + { + "bbox": [ + 158, + 595, + 182, + 605 + ], + "score": 0.88, + "content": "\\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 591, + 201, + 610 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 201, + 594, + 224, + 605 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 591, + 285, + 610 + ], + "score": 1.0, + "content": ", respectively).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 101, + 606, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 101, + 606, + 196, + 633 + ], + "score": 1.0, + "content": "Recall that we denote", + "type": "text" + }, + { + "bbox": [ + 196, + 612, + 273, + 627 + ], + "score": 0.93, + "content": "\\sigma _ { 1 } ^ { ( n ) } \\geq \\cdots \\geq \\sigma _ { d } ^ { ( n ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 606, + 362, + 633 + ], + "score": 1.0, + "content": "as the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 362, + 613, + 397, + 627 + ], + "score": 0.93, + "content": "\\textstyle { \\frac { 1 } { n } } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 606, + 463, + 633 + ], + "score": 1.0, + "content": ". Thus, we have", + "type": "text" + }, + { + "bbox": [ + 464, + 613, + 506, + 627 + ], + "score": 0.91, + "content": "\\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } =", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 100, + 623, + 340, + 647 + ], + "spans": [ + { + "bbox": [ + 100, + 623, + 163, + 647 + ], + "score": 1.0, + "content": "Diag(nσ(n)1 , .", + "type": "text" + }, + { + "bbox": [ + 106, + 626, + 205, + 642 + ], + "score": 0.91, + "content": "\\mathrm { D i a g } ( n \\sigma _ { 1 } ^ { ( n ) } , \\dots , n \\sigma _ { d } ^ { ( n ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 624, + 340, + 645 + ], + "score": 1.0, + "content": "σ(n)d ). We can further simplify (21) as", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 644, + 493, + 737 + ], + "lines": [ + { + "bbox": [ + 119, + 644, + 493, + 737 + ], + "spans": [ + { + "bbox": [ + 119, + 644, + 493, + 737 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) ^ { \\top } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] } \\\\ & { = \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] } \\\\ & { = \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , i } \\mathbf { v } _ { t , i } ^ { \\top } \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "5c924cf51f68e6f07f4bbb503219fe358a29a13b30239c41b2ea8481477cc2a6.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 119, + 644, + 493, + 675.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 119, + 675.0, + 493, + 706.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 119, + 706.0, + 493, + 737.0 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 79, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 72, + 506, + 103 + ], + "spans": [ + { + "bbox": [ + 104, + 72, + 171, + 103 + ], + "score": 1.0, + "content": "Consistency of", + "type": "text" + }, + { + "bbox": [ + 176, + 79, + 506, + 97 + ], + "score": 1.0, + "content": "w {tr-tr,tr-val}0,T . To check the consistency, we need to verify the conditions (a) – (c) in", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 104, + 72, + 506, + 103 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 314, + 124 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 315, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 315, + 124 + ], + "score": 1.0, + "content": "For condition (a), we derive from (17) and (18) that", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 111, + 315, + 124 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 126, + 498, + 150 + ], + "lines": [ + { + "bbox": [ + 111, + 126, + 498, + 150 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 498, + 150 + ], + "score": 0.9, + "content": "\\left. \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } } \\} } ( \\mathbf { w } _ { 1 } ) - \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } ( \\mathbf { w } _ { 2 } ) \\right. \\leq \\frac { 1 } { n } \\left. ( \\mathbf { M } _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } \\right. _ { \\mathrm { o p } } \\left. \\mathbf { w } _ { 1 } - \\mathbf { w } _ { 2 } \\right. ,", + "type": "interline_equation", + "image_path": "fd75ce799d90280e75fc9433ed4a39e66e9b2e28d64282716b753981cc712eb6.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 126, + 498, + 150 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 506, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 504, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 133, + 168 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 157, + 140, + 165 + ], + "score": 0.78, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 153, + 228, + 168 + ], + "score": 1.0, + "content": "should be replaced by", + "type": "text" + }, + { + "bbox": [ + 229, + 156, + 240, + 166 + ], + "score": 0.83, + "content": "n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 153, + 504, + 168 + ], + "score": 1.0, + "content": "for the split method (we slightly abuse the notation for simplicity).", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 165, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 181, + 190 + ], + "score": 1.0, + "content": "It suffices to show", + "type": "text" + }, + { + "bbox": [ + 181, + 166, + 361, + 191 + ], + "score": 0.89, + "content": "\\mathbb { E } \\left[ \\left. ( \\mathbf { M } _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { t r } , \\mathsf { t r } - \\mathsf { v a l } \\} } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { t r } , \\mathsf { t r } - \\mathsf { v a l } \\} } \\right. _ { \\mathrm { o p } } \\right] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 172, + 505, + 186 + ], + "score": 1.0, + "content": ", which follows from the same argu-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 190, + 504, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 334, + 207 + ], + "score": 1.0, + "content": "ment in the proof of Proposition 1. In particular, we know", + "type": "text" + }, + { + "bbox": [ + 335, + 190, + 504, + 206 + ], + "score": 0.92, + "content": "\\mathbf { 0 } \\preceq \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\preceq \\mathbf { I } _ { d }", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 204, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 125, + 221 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 205, + 217, + 220 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\left. \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right. _ { \\mathrm { o p } } ] ~ < ~ \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 204, + 244, + 221 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 244, + 206, + 258, + 217 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 204, + 506, + 221 + ], + "score": 1.0, + "content": "is Gaussian. As a consequence, for the no-split method,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 218, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 218, + 146, + 240 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 147, + 220, + 282, + 240 + ], + "score": 0.91, + "content": "\\mathbb { E } \\left[ \\big \\lVert ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } - \\mathrm { t r } } \\big \\rVert _ { \\mathrm { o p } } ^ { 2 } \\right] \\ < \\ \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 218, + 452, + 240 + ], + "score": 1.0, + "content": ". For the split method, we also have", + "type": "text" + }, + { + "bbox": [ + 453, + 223, + 505, + 236 + ], + "score": 0.87, + "content": "\\mathrm { ~ { ~ \\bf ~ 0 ~ } ~ } \\preceq \\mathrm { ~ \\bf ~ I } _ { d } \\mathrm { ~ - ~ }", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 237, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 107, + 240, + 312, + 255 + ], + "score": 0.75, + "content": "\\left( ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } \\preceq \\mathbf { I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 237, + 330, + 258 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 240, + 441, + 257 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\left. ( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\right. _ { \\mathrm { o p } } ] < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 237, + 506, + 258 + ], + "score": 1.0, + "content": ", which implies", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 256, + 240, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 240, + 276 + ], + "score": 0.76, + "content": "\\mathbb { E } \\left[ \\left. ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } \\right. _ { \\mathrm { o p } } ^ { 2 } \\right] < \\infty .", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 153, + 506, + 276 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 278, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 432, + 295 + ], + "score": 1.0, + "content": "For condition (b), using a similar argument in condition (a) and combining with", + "type": "text" + }, + { + "bbox": [ + 432, + 280, + 506, + 294 + ], + "score": 0.91, + "content": "R ^ { 2 } = \\mathbb { E } [ \\| \\mathbf { w } _ { 0 , \\star } -", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 288, + 309, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 132, + 308 + ], + "score": 0.89, + "content": "\\mathbf { w } _ { t } \\| ^ { 2 } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 288, + 171, + 312 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 171, + 293, + 303, + 308 + ], + "score": 0.89, + "content": "\\mathbb { E } [ \\| \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r } - \\mathrm { t r } , \\mathrm { t r } - \\mathrm { v a l } \\} } ( \\mathbf { w } _ { 0 , \\star } ) \\| ^ { 2 } ] < \\infty .", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 288, + 309, + 312 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 278, + 506, + 312 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 104, + 311, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 104, + 311, + 340, + 327 + ], + "score": 1.0, + "content": "For condition (c), using (20), we directly verify that", + "type": "text" + }, + { + "bbox": [ + 340, + 313, + 389, + 325 + ], + "score": 0.83, + "content": "L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 311, + 506, + 327 + ], + "score": 1.0, + "content": "is twice-differentiable and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 322, + 192, + 339 + ], + "spans": [ + { + "bbox": [ + 107, + 325, + 187, + 336 + ], + "score": 0.86, + "content": "\\nabla ^ { 2 } L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} } \\succ \\mathbf { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 322, + 192, + 339 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 311, + 506, + 339 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 350, + 220, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 221, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 221, + 363 + ], + "score": 1.0, + "content": "B.2 PROOF OF LEMMA 5", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 506, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "Proof. In this section we prove Lemma 5. Using the the asymptotic normality in Proposition 6,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 379, + 507, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 220, + 400 + ], + "score": 1.0, + "content": "the asymptotic covariance is", + "type": "text" + }, + { + "bbox": [ + 221, + 382, + 433, + 397 + ], + "score": 0.89, + "content": "\\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } \\mathrm { C o v } \\big [ \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } \\big ] \\big \\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } .", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 379, + 507, + 400 + ], + "score": 1.0, + "content": ". Therefore, in the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 103, + 394, + 403, + 414 + ], + "spans": [ + { + "bbox": [ + 103, + 394, + 403, + 414 + ], + "score": 1.0, + "content": "following, we only need to find ∇−2L{tr-tr,tr-val} and Cov[∇`{tr-tr,tr-val}t ].", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 103, + 371, + 507, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 415, + 504, + 442 + ], + "lines": [ + { + "bbox": [ + 104, + 413, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 104, + 413, + 225, + 432 + ], + "score": 1.0, + "content": "• Asymptotic variance of", + "type": "text" + }, + { + "bbox": [ + 225, + 416, + 248, + 430 + ], + "score": 0.91, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 413, + 506, + 432 + ], + "score": 1.0, + "content": ". We begin with the computation of the expected Hessian", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 426, + 196, + 444 + ], + "spans": [ + { + "bbox": [ + 107, + 428, + 191, + 443 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\frac { 1 } { n } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 426, + 196, + 444 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 413, + 506, + 444 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 445, + 496, + 514 + ], + "lines": [ + { + "bbox": [ + 115, + 445, + 496, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 445, + 496, + 514 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } \\big [ \\big ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } \\cdot \\mathsf { r } } \\big ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } \\big ] } \\\\ & { = \\mathbb { E } \\left[ \\Big ( \\mathbf { I } _ { d } - \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\Big ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\right] } \\\\ & { \\overset { ( i ) } { = } \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) ^ { \\top } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] , } \\end{array}", + "type": "interline_equation", + "image_path": "7c0a4d8f3cbd7f285ca5a85dd9de2fef59c13db6ab714e7e25c4fcff915e819c.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 115, + 445, + 496, + 468.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 115, + 468.0, + 496, + 491.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 115, + 491.0, + 496, + 514.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 104, + 526, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 104, + 526, + 185, + 543 + ], + "score": 1.0, + "content": "where the equality", + "type": "text" + }, + { + "bbox": [ + 185, + 529, + 196, + 541 + ], + "score": 0.84, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 526, + 358, + 543 + ], + "score": 1.0, + "content": "is obtained by plugging in the SVD of", + "type": "text" + }, + { + "bbox": [ + 358, + 528, + 426, + 541 + ], + "score": 0.93, + "content": "\\mathbf { X } _ { t } = \\mathbf { U } _ { t } \\mathbf { D } _ { t } \\mathbf { V } _ { t } ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 526, + 449, + 543 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 450, + 529, + 501, + 540 + ], + "score": 0.89, + "content": "\\mathbf { U } _ { t } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 526, + 506, + 543 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 537, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 157, + 551 + ], + "score": 0.92, + "content": "\\mathbf { D } _ { t } \\in \\mathbb { R } ^ { n \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 537, + 179, + 554 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 179, + 540, + 229, + 551 + ], + "score": 0.93, + "content": "\\dot { \\mathbf { V } _ { t } } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 537, + 339, + 554 + ], + "score": 1.0, + "content": ". A key observation is that", + "type": "text" + }, + { + "bbox": [ + 339, + 540, + 353, + 551 + ], + "score": 0.89, + "content": "\\mathbf { U } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 537, + 372, + 554 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 541, + 386, + 551 + ], + "score": 0.87, + "content": "\\mathbf { V } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 537, + 480, + 554 + ], + "score": 1.0, + "content": "are independent, since", + "type": "text" + }, + { + "bbox": [ + 480, + 541, + 494, + 551 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 537, + 507, + 554 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "isotropic, i.e., homogeneous in each orthogonal direction. To see this, for any orthogonal matrices", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 559, + 507, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 154, + 573 + ], + "score": 0.91, + "content": "\\mathbf { Q } \\in \\mathbb { \\bar { R } } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 559, + 172, + 576 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 173, + 561, + 217, + 572 + ], + "score": 0.9, + "content": "\\mathbf { P } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 559, + 261, + 576 + ], + "score": 1.0, + "content": ", we know", + "type": "text" + }, + { + "bbox": [ + 261, + 562, + 275, + 573 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 559, + 294, + 576 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 294, + 561, + 330, + 573 + ], + "score": 0.91, + "content": "\\mathbf { Q } \\mathbf { X } _ { t } \\mathbf { P } ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 559, + 507, + 576 + ], + "score": 1.0, + "content": "share the same distribution. Moreover, we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 127, + 587 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 128, + 573, + 252, + 585 + ], + "score": 0.9, + "content": "\\mathbf { Q } \\mathbf { X } _ { t } \\mathbf { P } ^ { \\top } = ( \\mathbf { Q } \\mathbf { U } _ { t } ) \\mathbf { D } _ { t } ( \\mathbf { P } \\mathbf { V } _ { t } ) ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "as the SVD. This shows that the left and right singular matrices", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 583, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 598 + ], + "score": 1.0, + "content": "are independent and both uniformly distributed on all the orthogonal matrices of the corresponding", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 591, + 285, + 610 + ], + "spans": [ + { + "bbox": [ + 104, + 591, + 157, + 610 + ], + "score": 1.0, + "content": "dimensions", + "type": "text" + }, + { + "bbox": [ + 158, + 595, + 182, + 605 + ], + "score": 0.88, + "content": "\\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 591, + 201, + 610 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 201, + 594, + 224, + 605 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 591, + 285, + 610 + ], + "score": 1.0, + "content": ", respectively).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 526, + 507, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 101, + 606, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 101, + 606, + 196, + 633 + ], + "score": 1.0, + "content": "Recall that we denote", + "type": "text" + }, + { + "bbox": [ + 196, + 612, + 273, + 627 + ], + "score": 0.93, + "content": "\\sigma _ { 1 } ^ { ( n ) } \\geq \\cdots \\geq \\sigma _ { d } ^ { ( n ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 606, + 362, + 633 + ], + "score": 1.0, + "content": "as the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 362, + 613, + 397, + 627 + ], + "score": 0.93, + "content": "\\textstyle { \\frac { 1 } { n } } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 606, + 463, + 633 + ], + "score": 1.0, + "content": ". Thus, we have", + "type": "text" + }, + { + "bbox": [ + 464, + 613, + 506, + 627 + ], + "score": 0.91, + "content": "\\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } =", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 100, + 623, + 340, + 647 + ], + "spans": [ + { + "bbox": [ + 100, + 623, + 163, + 647 + ], + "score": 1.0, + "content": "Diag(nσ(n)1 , .", + "type": "text" + }, + { + "bbox": [ + 106, + 626, + 205, + 642 + ], + "score": 0.91, + "content": "\\mathrm { D i a g } ( n \\sigma _ { 1 } ^ { ( n ) } , \\dots , n \\sigma _ { d } ^ { ( n ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 624, + 340, + 645 + ], + "score": 1.0, + "content": "σ(n)d ). We can further simplify (21) as", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 100, + 606, + 506, + 647 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 644, + 493, + 737 + ], + "lines": [ + { + "bbox": [ + 119, + 644, + 493, + 737 + ], + "spans": [ + { + "bbox": [ + 119, + 644, + 493, + 737 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) ^ { \\top } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] } \\\\ & { = \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] } \\\\ & { = \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , i } \\mathbf { v } _ { t , i } ^ { \\top } \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "5c924cf51f68e6f07f4bbb503219fe358a29a13b30239c41b2ea8481477cc2a6.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 119, + 644, + 493, + 675.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 119, + 675.0, + 493, + 706.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 119, + 706.0, + 493, + 737.0 + ], + "spans": [], + "index": 34 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 245, + 94 + ], + "score": 1.0, + "content": "We will utilize the isotropicity of", + "type": "text" + }, + { + "bbox": [ + 245, + 83, + 258, + 93 + ], + "score": 0.87, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 82, + 445, + 94 + ], + "score": 1.0, + "content": "to find (22). Recall that we have shown that", + "type": "text" + }, + { + "bbox": [ + 445, + 83, + 459, + 93 + ], + "score": 0.88, + "content": "\\mathbf { V } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "is uniform", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 507, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 249, + 107 + ], + "score": 1.0, + "content": "on all the orthogonal matrices. Let", + "type": "text" + }, + { + "bbox": [ + 249, + 93, + 295, + 104 + ], + "score": 0.92, + "content": "\\mathbf { P } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 91, + 428, + 107 + ], + "score": 1.0, + "content": "be any permutation matrix, then", + "type": "text" + }, + { + "bbox": [ + 428, + 94, + 450, + 105 + ], + "score": 0.89, + "content": "\\mathbf { V } _ { t } \\mathbf { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 91, + 507, + 107 + ], + "score": 1.0, + "content": "has the same", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 385, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 165, + 116 + ], + "score": 1.0, + "content": "distribution as", + "type": "text" + }, + { + "bbox": [ + 165, + 105, + 179, + 115 + ], + "score": 0.88, + "content": "\\mathbf { V } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 105, + 304, + 116 + ], + "score": 1.0, + "content": ". For this permuted data matrix", + "type": "text" + }, + { + "bbox": [ + 304, + 105, + 325, + 115 + ], + "score": 0.9, + "content": "\\mathbf { V } _ { t } \\mathbf { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 105, + 385, + 116 + ], + "score": 1.0, + "content": ", (22) becomes", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 109, + 121, + 485, + 156 + ], + "lines": [ + { + "bbox": [ + 109, + 121, + 485, + 156 + ], + "spans": [ + { + "bbox": [ + 109, + 121, + 485, + 156 + ], + "score": 0.27, + "content": "\\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } ^ { \\top } \\right] \\mathrm { w i t h } \\tau _ { p } ( i ) \\mathrm { d e n o t e s ~ t h e ~ p e r m u t a t i o n ~ o f ~ t h e ~ } i \\mathrm { \\cdot t h ~ e l e m e n t ~ i n ~ } \\tau _ { p } ( i ) \\mathrm { d e n s ~ } \\tau _ { p } ( i ) \\mathrm { d e n s ~ } \\tau _ { p } ( i ) .", + "type": "interline_equation", + "image_path": "1a2b28b471119c987cfb4d10a5302b8c283cd1aa2e71fd184c2a5d450581ea9e.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 109, + 121, + 485, + 132.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 109, + 132.66666666666666, + 485, + 144.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 109, + 144.33333333333331, + 485, + 155.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 445, + 173 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 445, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 249, + 174 + ], + "score": 1.0, + "content": "Summing over all the permutations", + "type": "text" + }, + { + "bbox": [ + 249, + 161, + 258, + 171 + ], + "score": 0.8, + "content": "\\mathbf { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 160, + 345, + 174 + ], + "score": 1.0, + "content": "(and there are totally", + "type": "text" + }, + { + "bbox": [ + 345, + 162, + 354, + 171 + ], + "score": 0.81, + "content": "d !", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 160, + 445, + 174 + ], + "score": 1.0, + "content": "instances), we deduce", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 178, + 450, + 342 + ], + "lines": [ + { + "bbox": [ + 161, + 178, + 450, + 342 + ], + "spans": [ + { + "bbox": [ + 161, + 178, + 450, + 342 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { \\displaystyle { d \\mathbb { E } [ ( { \\bf M } _ { t } ^ { \\mathrm { t r u } } ) ^ { \\top } { \\bf M } _ { t } ^ { \\mathrm { t r u } } ; \\tau ] } } } \\\\ { { = \\displaystyle { \\sum _ { u \\ l p \\ r m u t a \\ n e : \\tau } \\mathbb { E } \\left[ \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\alpha \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\sigma _ { i } ^ { u } ) } } \\mathbf { v } _ { t , \\tau _ { r } ( i ) } \\mathbf { v } _ { t , \\tau _ { r } ( i ) } ^ { \\top } \\right] } } } \\\\ { { = ( d - 1 ) ! ! \\mathbb { E } \\left[ \\displaystyle { \\sum _ { j = 1 } ^ { d } \\left[ \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\alpha \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\sigma _ { i } ^ { u } ) } } \\right] ^ { \\top } \\mathbf { v } _ { t , \\tau _ { t } ( j ) } \\mathbf { v } _ { t , j } ^ { \\top } } \\right] } } \\\\ { { = ( d - 1 ) ! \\mathbb { E } \\left[ \\displaystyle { \\nabla _ { t } \\mathrm { D i a g } \\left( \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { \\lambda + \\sigma _ { i } ^ { ( u ) } } } \\right) ^ { 2 } } \\cdots \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\lambda + \\sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \\right] \\mathbf { V } _ { t } ^ { \\top } } } \\\\ { { = ( d - 1 ) ! \\mathbb { E } \\left[ \\displaystyle { \\sum _ { j = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\lambda + \\sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \\mathbf { V } _ { t } \\mathbf { I } _ { t } \\mathbf { V } _ { t } ^ { \\top } \\right] } } \\end{array}", + "type": "interline_equation", + "image_path": "0e352d9157146a177b43a5e1472fcbe2251cecf7b7e4812f44902042a38cd70b.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 161, + 178, + 450, + 232.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 161, + 232.66666666666666, + 450, + 287.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 161, + 287.3333333333333, + 450, + 342.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 290, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 291, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 145, + 359 + ], + "score": 1.0, + "content": "Dividing", + "type": "text" + }, + { + "bbox": [ + 145, + 346, + 177, + 358 + ], + "score": 0.89, + "content": "( d - 1 ) !", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 345, + 291, + 359 + ], + "score": 1.0, + "content": "! on both sides of (23) yields", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 363, + 406, + 398 + ], + "lines": [ + { + "bbox": [ + 205, + 363, + 406, + 398 + ], + "spans": [ + { + "bbox": [ + 205, + 363, + 406, + 398 + ], + "score": 0.92, + "content": "\\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { t r } } ] = \\frac { n } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \\right] \\mathbf { I } _ { d } .", + "type": "interline_equation", + "image_path": "024dd790e4ed1358a5bc6cecd22bcf723e6929ce64fc27373f3d358d47597ac3.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 363, + 406, + 380.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 205, + 380.5, + 406, + 398.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 408, + 437, + 424 + ], + "lines": [ + { + "bbox": [ + 104, + 408, + 438, + 425 + ], + "spans": [ + { + "bbox": [ + 104, + 408, + 289, + 425 + ], + "score": 1.0, + "content": "Next, we find the expected covariance matrix", + "type": "text" + }, + { + "bbox": [ + 290, + 409, + 435, + 423 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\frac { 1 } { n ^ { 2 } } \\mathbb { E } \\big [ \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } \\big ( \\mathbf { w } _ { 0 , \\star } \\big ) \\big ( \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } \\big ( \\mathbf { w } _ { 0 , \\star } \\big ) \\big ) ^ { \\top } \\big ] , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 408, + 438, + 425 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 428, + 470, + 530 + ], + "lines": [ + { + "bbox": [ + 143, + 428, + 470, + 530 + ], + "spans": [ + { + "bbox": [ + 143, + 428, + 470, + 530 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } [ \\nabla \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } ) ( \\nabla \\ell _ { t } ^ { \\mathrm { r t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } ) ) ^ { \\top } ] } \\\\ & { = \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } ( \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ] } \\\\ & { \\stackrel { ( i ) } { = } \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\bigg ] . } \\end{array}", + "type": "interline_equation", + "image_path": "705f1aadcb1312e82c6081fe9bba0ef1aa49996e092b7efb14897d958bf02a35.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 143, + 428, + 470, + 462.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 143, + 462.0, + 470, + 496.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 143, + 496.0, + 470, + 530.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 147, + 546 + ], + "score": 1.0, + "content": "Here step", + "type": "text" + }, + { + "bbox": [ + 147, + 534, + 159, + 546 + ], + "score": 0.79, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 533, + 228, + 546 + ], + "score": 1.0, + "content": "uses the SVD of", + "type": "text" + }, + { + "bbox": [ + 228, + 534, + 241, + 545 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "and the computation in (22). Combining (24) and (25), we derive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 543, + 312, + 558 + ], + "spans": [ + { + "bbox": [ + 104, + 543, + 276, + 558 + ], + "score": 1.0, + "content": "the asymptotic covariance matrix of using", + "type": "text" + }, + { + "bbox": [ + 276, + 545, + 298, + 555 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 543, + 312, + 558 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 561, + 470, + 700 + ], + "lines": [ + { + "bbox": [ + 140, + 561, + 470, + 700 + ], + "spans": [ + { + "bbox": [ + 140, + 561, + 470, + 700 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { A s y m C o v } ( \\widetilde { \\mathbf { w } } _ { 0 , T } ^ { t \\star \\star r } ) } \\\\ & { = \\mathbb { E } [ \\nabla ^ { - 2 } \\ell _ { t } ^ { t \\star r } ] \\mathrm { C o v } [ \\nabla \\ell _ { t } ^ { \\mathrm { r r } + t } ( \\mathbf { w } _ { 0 , \\star } ) ] \\mathbb { E } [ \\nabla ^ { - 2 } \\ell _ { t } ^ { \\mathrm { t r } \\star r } ] } \\\\ & { = \\displaystyle \\frac { d ^ { 2 } } { n ^ { 2 } } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \\right] \\right) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\displaystyle \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } \\right. } \\\\ & { \\quad \\left. \\cdot \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\displaystyle \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "d1409f3509f7924e0821516eaca84003e952e3fb28518dbf1e6399221d2b5028.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 140, + 561, + 470, + 607.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 140, + 607.3333333333334, + 470, + 653.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 140, + 653.6666666666667, + 470, + 700.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 702, + 235, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 702, + 235, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 235, + 715 + ], + "score": 1.0, + "content": "Taking trace in (26), we deduce", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 134, + 719, + 212, + 733 + ], + "lines": [ + { + "bbox": [ + 132, + 718, + 213, + 736 + ], + "spans": [ + { + "bbox": [ + 132, + 718, + 213, + 736 + ], + "score": 1.0, + "content": "AsymMSE(wb tr-tr0,T )", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 245, + 94 + ], + "score": 1.0, + "content": "We will utilize the isotropicity of", + "type": "text" + }, + { + "bbox": [ + 245, + 83, + 258, + 93 + ], + "score": 0.87, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 82, + 445, + 94 + ], + "score": 1.0, + "content": "to find (22). Recall that we have shown that", + "type": "text" + }, + { + "bbox": [ + 445, + 83, + 459, + 93 + ], + "score": 0.88, + "content": "\\mathbf { V } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 82, + 505, + 94 + ], + "score": 1.0, + "content": "is uniform", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 507, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 249, + 107 + ], + "score": 1.0, + "content": "on all the orthogonal matrices. Let", + "type": "text" + }, + { + "bbox": [ + 249, + 93, + 295, + 104 + ], + "score": 0.92, + "content": "\\mathbf { P } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 91, + 428, + 107 + ], + "score": 1.0, + "content": "be any permutation matrix, then", + "type": "text" + }, + { + "bbox": [ + 428, + 94, + 450, + 105 + ], + "score": 0.89, + "content": "\\mathbf { V } _ { t } \\mathbf { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 91, + 507, + 107 + ], + "score": 1.0, + "content": "has the same", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 385, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 165, + 116 + ], + "score": 1.0, + "content": "distribution as", + "type": "text" + }, + { + "bbox": [ + 165, + 105, + 179, + 115 + ], + "score": 0.88, + "content": "\\mathbf { V } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 105, + 304, + 116 + ], + "score": 1.0, + "content": ". For this permuted data matrix", + "type": "text" + }, + { + "bbox": [ + 304, + 105, + 325, + 115 + ], + "score": 0.9, + "content": "\\mathbf { V } _ { t } \\mathbf { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 105, + 385, + 116 + ], + "score": 1.0, + "content": ", (22) becomes", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 507, + 116 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 109, + 121, + 485, + 156 + ], + "lines": [ + { + "bbox": [ + 109, + 121, + 485, + 156 + ], + "spans": [ + { + "bbox": [ + 109, + 121, + 485, + 156 + ], + "score": 0.27, + "content": "\\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } ^ { \\top } \\right] \\mathrm { w i t h } \\tau _ { p } ( i ) \\mathrm { d e n o t e s ~ t h e ~ p e r m u t a t i o n ~ o f ~ t h e ~ } i \\mathrm { \\cdot t h ~ e l e m e n t ~ i n ~ } \\tau _ { p } ( i ) \\mathrm { d e n s ~ } \\tau _ { p } ( i ) \\mathrm { d e n s ~ } \\tau _ { p } ( i ) .", + "type": "interline_equation", + "image_path": "1a2b28b471119c987cfb4d10a5302b8c283cd1aa2e71fd184c2a5d450581ea9e.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 109, + 121, + 485, + 132.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 109, + 132.66666666666666, + 485, + 144.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 109, + 144.33333333333331, + 485, + 155.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 445, + 173 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 445, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 249, + 174 + ], + "score": 1.0, + "content": "Summing over all the permutations", + "type": "text" + }, + { + "bbox": [ + 249, + 161, + 258, + 171 + ], + "score": 0.8, + "content": "\\mathbf { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 160, + 345, + 174 + ], + "score": 1.0, + "content": "(and there are totally", + "type": "text" + }, + { + "bbox": [ + 345, + 162, + 354, + 171 + ], + "score": 0.81, + "content": "d !", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 160, + 445, + 174 + ], + "score": 1.0, + "content": "instances), we deduce", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 160, + 445, + 174 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 178, + 450, + 342 + ], + "lines": [ + { + "bbox": [ + 161, + 178, + 450, + 342 + ], + "spans": [ + { + "bbox": [ + 161, + 178, + 450, + 342 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { \\displaystyle { d \\mathbb { E } [ ( { \\bf M } _ { t } ^ { \\mathrm { t r u } } ) ^ { \\top } { \\bf M } _ { t } ^ { \\mathrm { t r u } } ; \\tau ] } } } \\\\ { { = \\displaystyle { \\sum _ { u \\ l p \\ r m u t a \\ n e : \\tau } \\mathbb { E } \\left[ \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\alpha \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\sigma _ { i } ^ { u } ) } } \\mathbf { v } _ { t , \\tau _ { r } ( i ) } \\mathbf { v } _ { t , \\tau _ { r } ( i ) } ^ { \\top } \\right] } } } \\\\ { { = ( d - 1 ) ! ! \\mathbb { E } \\left[ \\displaystyle { \\sum _ { j = 1 } ^ { d } \\left[ \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\alpha \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\sigma _ { i } ^ { u } ) } } \\right] ^ { \\top } \\mathbf { v } _ { t , \\tau _ { t } ( j ) } \\mathbf { v } _ { t , j } ^ { \\top } } \\right] } } \\\\ { { = ( d - 1 ) ! \\mathbb { E } \\left[ \\displaystyle { \\nabla _ { t } \\mathrm { D i a g } \\left( \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { \\lambda + \\sigma _ { i } ^ { ( u ) } } } \\right) ^ { 2 } } \\cdots \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\lambda + \\sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \\right] \\mathbf { V } _ { t } ^ { \\top } } } \\\\ { { = ( d - 1 ) ! \\mathbb { E } \\left[ \\displaystyle { \\sum _ { j = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\lambda + \\sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \\mathbf { V } _ { t } \\mathbf { I } _ { t } \\mathbf { V } _ { t } ^ { \\top } \\right] } } \\end{array}", + "type": "interline_equation", + "image_path": "0e352d9157146a177b43a5e1472fcbe2251cecf7b7e4812f44902042a38cd70b.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 161, + 178, + 450, + 232.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 161, + 232.66666666666666, + 450, + 287.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 161, + 287.3333333333333, + 450, + 342.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 290, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 291, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 145, + 359 + ], + "score": 1.0, + "content": "Dividing", + "type": "text" + }, + { + "bbox": [ + 145, + 346, + 177, + 358 + ], + "score": 0.89, + "content": "( d - 1 ) !", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 345, + 291, + 359 + ], + "score": 1.0, + "content": "! on both sides of (23) yields", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 345, + 291, + 359 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 363, + 406, + 398 + ], + "lines": [ + { + "bbox": [ + 205, + 363, + 406, + 398 + ], + "spans": [ + { + "bbox": [ + 205, + 363, + 406, + 398 + ], + "score": 0.92, + "content": "\\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { t r } } ] = \\frac { n } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \\right] \\mathbf { I } _ { d } .", + "type": "interline_equation", + "image_path": "024dd790e4ed1358a5bc6cecd22bcf723e6929ce64fc27373f3d358d47597ac3.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 363, + 406, + 380.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 205, + 380.5, + 406, + 398.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 408, + 437, + 424 + ], + "lines": [ + { + "bbox": [ + 104, + 408, + 438, + 425 + ], + "spans": [ + { + "bbox": [ + 104, + 408, + 289, + 425 + ], + "score": 1.0, + "content": "Next, we find the expected covariance matrix", + "type": "text" + }, + { + "bbox": [ + 290, + 409, + 435, + 423 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\frac { 1 } { n ^ { 2 } } \\mathbb { E } \\big [ \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } \\big ( \\mathbf { w } _ { 0 , \\star } \\big ) \\big ( \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } \\big ( \\mathbf { w } _ { 0 , \\star } \\big ) \\big ) ^ { \\top } \\big ] , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 408, + 438, + 425 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 408, + 438, + 425 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 428, + 470, + 530 + ], + "lines": [ + { + "bbox": [ + 143, + 428, + 470, + 530 + ], + "spans": [ + { + "bbox": [ + 143, + 428, + 470, + 530 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } [ \\nabla \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } ) ( \\nabla \\ell _ { t } ^ { \\mathrm { r t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } ) ) ^ { \\top } ] } \\\\ & { = \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } ( \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ] } \\\\ & { \\stackrel { ( i ) } { = } \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\bigg ] . } \\end{array}", + "type": "interline_equation", + "image_path": "705f1aadcb1312e82c6081fe9bba0ef1aa49996e092b7efb14897d958bf02a35.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 143, + 428, + 470, + 462.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 143, + 462.0, + 470, + 496.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 143, + 496.0, + 470, + 530.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 147, + 546 + ], + "score": 1.0, + "content": "Here step", + "type": "text" + }, + { + "bbox": [ + 147, + 534, + 159, + 546 + ], + "score": 0.79, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 533, + 228, + 546 + ], + "score": 1.0, + "content": "uses the SVD of", + "type": "text" + }, + { + "bbox": [ + 228, + 534, + 241, + 545 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "and the computation in (22). Combining (24) and (25), we derive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 543, + 312, + 558 + ], + "spans": [ + { + "bbox": [ + 104, + 543, + 276, + 558 + ], + "score": 1.0, + "content": "the asymptotic covariance matrix of using", + "type": "text" + }, + { + "bbox": [ + 276, + 545, + 298, + 555 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 543, + 312, + 558 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 533, + 505, + 558 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 561, + 470, + 700 + ], + "lines": [ + { + "bbox": [ + 140, + 561, + 470, + 700 + ], + "spans": [ + { + "bbox": [ + 140, + 561, + 470, + 700 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { A s y m C o v } ( \\widetilde { \\mathbf { w } } _ { 0 , T } ^ { t \\star \\star r } ) } \\\\ & { = \\mathbb { E } [ \\nabla ^ { - 2 } \\ell _ { t } ^ { t \\star r } ] \\mathrm { C o v } [ \\nabla \\ell _ { t } ^ { \\mathrm { r r } + t } ( \\mathbf { w } _ { 0 , \\star } ) ] \\mathbb { E } [ \\nabla ^ { - 2 } \\ell _ { t } ^ { \\mathrm { t r } \\star r } ] } \\\\ & { = \\displaystyle \\frac { d ^ { 2 } } { n ^ { 2 } } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \\right] \\right) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\displaystyle \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } \\right. } \\\\ & { \\quad \\left. \\cdot \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\displaystyle \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "d1409f3509f7924e0821516eaca84003e952e3fb28518dbf1e6399221d2b5028.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 140, + 561, + 470, + 607.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 140, + 607.3333333333334, + 470, + 653.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 140, + 653.6666666666667, + 470, + 700.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 702, + 235, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 702, + 235, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 235, + 715 + ], + "score": 1.0, + "content": "Taking trace in (26), we deduce", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 702, + 235, + 715 + ] + }, + { + "type": "text", + "bbox": [ + 134, + 719, + 212, + 733 + ], + "lines": [ + { + "bbox": [ + 132, + 718, + 213, + 736 + ], + "spans": [ + { + "bbox": [ + 132, + 718, + 213, + 736 + ], + "score": 1.0, + "content": "AsymMSE(wb tr-tr0,T )", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 132, + 718, + 213, + 736 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 121, + 80, + 491, + 327 + ], + "lines": [ + { + "bbox": [ + 121, + 80, + 491, + 327 + ], + "spans": [ + { + "bbox": [ + 121, + 80, + 491, + 327 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad _ { 1 } - ( \\cdot _ { 2 } + \\kappa _ { 3 } \\alpha ) \\alpha ( \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } ) ^ { 2 } } \\\\ & { = \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad - \\kappa ( \\kappa [ \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) \\kappa _ { 1 } ( \\frac { \\rho _ { 1 } ^ { \\varDelta } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\le \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\le \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\quad \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & \\quad - \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) \\kappa _ { 1 } ( \\mathrm { l o g } _ { \\varepsilon } - \\mathrm \\end{array}", + "type": "interline_equation", + "image_path": "eb8346f6ae1f45004f7c2d4a6df4122973fe43fe234c56e9c2ee66db9d4d17b8.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 121, + 80, + 491, + 162.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 121, + 162.33333333333331, + 491, + 244.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 121, + 244.66666666666663, + 491, + 326.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 333, + 503, + 345 + ], + "lines": [ + { + "bbox": [ + 107, + 332, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 107, + 332, + 154, + 346 + ], + "score": 1.0, + "content": "where step", + "type": "text" + }, + { + "bbox": [ + 154, + 333, + 165, + 345 + ], + "score": 0.77, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 332, + 309, + 346 + ], + "score": 1.0, + "content": "utilizes the independence between", + "type": "text" + }, + { + "bbox": [ + 309, + 335, + 322, + 344 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 332, + 342, + 346 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 342, + 334, + 355, + 344 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 332, + 505, + 346 + ], + "score": 1.0, + "content": "and applies the permutation trick in", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 355, + 371 + ], + "lines": [ + { + "bbox": [ + 102, + 340, + 354, + 372 + ], + "spans": [ + { + "bbox": [ + 102, + 340, + 159, + 372 + ], + "score": 1.0, + "content": "(23) to find E", + "type": "text" + }, + { + "bbox": [ + 160, + 344, + 354, + 371 + ], + "score": 0.87, + "content": "\\begin{array} { r l r } & { } & { \\left[ { \\bf V } _ { t } \\mathrm { D i a g } \\left( \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { 1 } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 4 } } , \\dots , \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { d } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 4 } } \\right) { \\bf V } _ { t } ^ { \\top } \\right] . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 102, + 369, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 102, + 369, + 227, + 394 + ], + "score": 1.0, + "content": "• Asymptotic variance of", + "type": "text" + }, + { + "bbox": [ + 227, + 375, + 254, + 389 + ], + "score": 0.86, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 369, + 260, + 394 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 266, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "Similar to the no-split case, we compute the Hessian", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 385, + 295, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 273, + 404 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ \\nabla ^ { 2 } \\ell _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ] = \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 385, + 295, + 404 + ], + "score": 1.0, + "content": "first.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 408, + 470, + 558 + ], + "lines": [ + { + "bbox": [ + 140, + 408, + 470, + 558 + ], + "spans": [ + { + "bbox": [ + 140, + 408, + 470, + 558 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r a i n } } ] } \\\\ & { = \\mathbb { E } \\Bigg [ ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s a } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { s a } } } \\\\ & { \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) \\Bigg ] } \\\\ & { \\stackrel { ( i ) } { = } n _ { 2 } \\mathbb { E } \\Bigg [ ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) \\Bigg ] } \\\\ & \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ \\end{array}", + "type": "interline_equation", + "image_path": "08873ede98ad86995db6a60b4c3d088b807857e1b65e270fb9772bbb12541e4a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 140, + 408, + 470, + 458.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 140, + 458.0, + 470, + 508.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 140, + 508.0, + 470, + 558.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 504, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 134, + 576 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 563, + 146, + 574 + ], + "score": 0.84, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 560, + 298, + 576 + ], + "score": 1.0, + "content": "uses the data generating assumption", + "type": "text" + }, + { + "bbox": [ + 298, + 562, + 397, + 575 + ], + "score": 0.91, + "content": "\\mathbb { E } [ ( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } ) ^ { \\top } \\mathbf { X } _ { t . } ^ { \\mathsf { v a l } } ] = n _ { 2 } \\mathbf { I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 560, + 505, + 576 + ], + "score": 1.0, + "content": "and the independence be-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 103, + 569, + 458, + 590 + ], + "spans": [ + { + "bbox": [ + 103, + 569, + 133, + 590 + ], + "score": 1.0, + "content": "tween", + "type": "text" + }, + { + "bbox": [ + 133, + 574, + 157, + 586 + ], + "score": 0.8, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 569, + 176, + 590 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 573, + 195, + 586 + ], + "score": 0.9, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 569, + 216, + 590 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 216, + 574, + 231, + 586 + ], + "score": 0.76, + "content": "( i i )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 569, + 335, + 590 + ], + "score": 1.0, + "content": "t follows from the SVD of", + "type": "text" + }, + { + "bbox": [ + 335, + 574, + 458, + 586 + ], + "score": 0.83, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } = \\mathbf { U } _ { t } ^ { \\mathsf { t r a i n } } \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } ( \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top }", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 591, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 176, + 587, + 507, + 626 + ], + "spans": [ + { + "bbox": [ + 176, + 591, + 267, + 606 + ], + "score": 0.92, + "content": "\\sigma _ { 1 } ^ { ( n _ { 1 } ) } \\geq \\cdots \\geq \\sigma _ { d } ^ { ( n _ { 1 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 587, + 360, + 626 + ], + "score": 1.0, + "content": "eigenvalues of . We can now f", + "type": "text" + }, + { + "bbox": [ + 361, + 592, + 434, + 608 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { 1 } { n _ { 1 } } ( { \\bf X } _ { t } ^ { \\sf t r a i n } ) ^ { \\top } { \\bf X } _ { t } ^ { \\sf t r a i n } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 587, + 507, + 626 + ], + "score": 1.0, + "content": ". Thus, we have) as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 605, + 451, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 297, + 622 + ], + "score": 0.88, + "content": "( \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } = \\mathrm { D i a g } ( n _ { 1 } \\sigma _ { 1 } ^ { ( n _ { 1 } ) } , \\ldots , n _ { 1 } \\sigma _ { d } ^ { ( n _ { 1 } ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 605, + 451, + 625 + ], + "score": 1.0, + "content": "σ(n1)d ) urther simplify (28", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 625, + 466, + 718 + ], + "lines": [ + { + "bbox": [ + 148, + 625, + 466, + 718 + ], + "spans": [ + { + "bbox": [ + 148, + 625, + 466, + 718 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad n _ { 2 } \\mathbb { E } \\left[ \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } \\left( \\mathbf { I } _ { d } - ( ( \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } \\right) ^ { 2 } ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\right] } \\\\ & { \\stackrel { ( i ) } { = } n _ { 2 } \\mathbb { E } \\left[ \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\right] } \\\\ & { \\stackrel { ( i i ) } { = } \\frac { n _ { 2 } } { d } \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \\right] \\mathbf { I } _ { d } . } \\end{array}", + "type": "interline_equation", + "image_path": "de284222dacba510f3b015654ffaaebb7e50a96b807d8f5a02658e39c701667d.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 148, + 625, + 466, + 656.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 148, + 656.0, + 466, + 687.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 148, + 687.0, + 466, + 718.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 127, + 734 + ], + "score": 1.0, + "content": "Step", + "type": "text" + }, + { + "bbox": [ + 127, + 720, + 139, + 732 + ], + "score": 0.82, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 718, + 351, + 734 + ], + "score": 1.0, + "content": "follows from the same computation in (22), and step", + "type": "text" + }, + { + "bbox": [ + 352, + 721, + 366, + 732 + ], + "score": 0.85, + "content": "( i i )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 718, + 505, + 734 + ], + "score": 1.0, + "content": "uses the permutation trick in (23).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 121, + 80, + 491, + 327 + ], + "lines": [ + { + "bbox": [ + 121, + 80, + 491, + 327 + ], + "spans": [ + { + "bbox": [ + 121, + 80, + 491, + 327 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad _ { 1 } - ( \\cdot _ { 2 } + \\kappa _ { 3 } \\alpha ) \\alpha ( \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } ) ^ { 2 } } \\\\ & { = \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad - \\kappa ( \\kappa [ \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) \\kappa _ { 1 } ( \\frac { \\rho _ { 1 } ^ { \\varDelta } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\le \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\le \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\quad \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & \\quad - \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) \\kappa _ { 1 } ( \\mathrm { l o g } _ { \\varepsilon } - \\mathrm \\end{array}", + "type": "interline_equation", + "image_path": "eb8346f6ae1f45004f7c2d4a6df4122973fe43fe234c56e9c2ee66db9d4d17b8.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 121, + 80, + 491, + 162.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 121, + 162.33333333333331, + 491, + 244.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 121, + 244.66666666666663, + 491, + 326.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 333, + 503, + 345 + ], + "lines": [ + { + "bbox": [ + 107, + 332, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 107, + 332, + 154, + 346 + ], + "score": 1.0, + "content": "where step", + "type": "text" + }, + { + "bbox": [ + 154, + 333, + 165, + 345 + ], + "score": 0.77, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 332, + 309, + 346 + ], + "score": 1.0, + "content": "utilizes the independence between", + "type": "text" + }, + { + "bbox": [ + 309, + 335, + 322, + 344 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 332, + 342, + 346 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 342, + 334, + 355, + 344 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 332, + 505, + 346 + ], + "score": 1.0, + "content": "and applies the permutation trick in", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 107, + 332, + 505, + 346 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 355, + 371 + ], + "lines": [ + { + "bbox": [ + 102, + 340, + 354, + 372 + ], + "spans": [ + { + "bbox": [ + 102, + 340, + 159, + 372 + ], + "score": 1.0, + "content": "(23) to find E", + "type": "text" + }, + { + "bbox": [ + 160, + 344, + 354, + 371 + ], + "score": 0.87, + "content": "\\begin{array} { r l r } & { } & { \\left[ { \\bf V } _ { t } \\mathrm { D i a g } \\left( \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { 1 } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 4 } } , \\dots , \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { d } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 4 } } \\right) { \\bf V } _ { t } ^ { \\top } \\right] . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 102, + 340, + 354, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 375, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 102, + 369, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 102, + 369, + 227, + 394 + ], + "score": 1.0, + "content": "• Asymptotic variance of", + "type": "text" + }, + { + "bbox": [ + 227, + 375, + 254, + 389 + ], + "score": 0.86, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 369, + 260, + 394 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 266, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "Similar to the no-split case, we compute the Hessian", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 385, + 295, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 273, + 404 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ \\nabla ^ { 2 } \\ell _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ] = \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 385, + 295, + 404 + ], + "score": 1.0, + "content": "first.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 102, + 369, + 505, + 404 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 408, + 470, + 558 + ], + "lines": [ + { + "bbox": [ + 140, + 408, + 470, + 558 + ], + "spans": [ + { + "bbox": [ + 140, + 408, + 470, + 558 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r a i n } } ] } \\\\ & { = \\mathbb { E } \\Bigg [ ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s a } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { s a } } } \\\\ & { \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) \\Bigg ] } \\\\ & { \\stackrel { ( i ) } { = } n _ { 2 } \\mathbb { E } \\Bigg [ ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) \\Bigg ] } \\\\ & \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ \\end{array}", + "type": "interline_equation", + "image_path": "08873ede98ad86995db6a60b4c3d088b807857e1b65e270fb9772bbb12541e4a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 140, + 408, + 470, + 458.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 140, + 458.0, + 470, + 508.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 140, + 508.0, + 470, + 558.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 504, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 134, + 576 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 563, + 146, + 574 + ], + "score": 0.84, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 560, + 298, + 576 + ], + "score": 1.0, + "content": "uses the data generating assumption", + "type": "text" + }, + { + "bbox": [ + 298, + 562, + 397, + 575 + ], + "score": 0.91, + "content": "\\mathbb { E } [ ( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } ) ^ { \\top } \\mathbf { X } _ { t . } ^ { \\mathsf { v a l } } ] = n _ { 2 } \\mathbf { I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 560, + 505, + 576 + ], + "score": 1.0, + "content": "and the independence be-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 103, + 569, + 458, + 590 + ], + "spans": [ + { + "bbox": [ + 103, + 569, + 133, + 590 + ], + "score": 1.0, + "content": "tween", + "type": "text" + }, + { + "bbox": [ + 133, + 574, + 157, + 586 + ], + "score": 0.8, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 569, + 176, + 590 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 573, + 195, + 586 + ], + "score": 0.9, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 569, + 216, + 590 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 216, + 574, + 231, + 586 + ], + "score": 0.76, + "content": "( i i )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 569, + 335, + 590 + ], + "score": 1.0, + "content": "t follows from the SVD of", + "type": "text" + }, + { + "bbox": [ + 335, + 574, + 458, + 586 + ], + "score": 0.83, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } = \\mathbf { U } _ { t } ^ { \\mathsf { t r a i n } } \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } ( \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top }", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 103, + 560, + 505, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 591, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 176, + 587, + 507, + 626 + ], + "spans": [ + { + "bbox": [ + 176, + 591, + 267, + 606 + ], + "score": 0.92, + "content": "\\sigma _ { 1 } ^ { ( n _ { 1 } ) } \\geq \\cdots \\geq \\sigma _ { d } ^ { ( n _ { 1 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 587, + 360, + 626 + ], + "score": 1.0, + "content": "eigenvalues of . We can now f", + "type": "text" + }, + { + "bbox": [ + 361, + 592, + 434, + 608 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { 1 } { n _ { 1 } } ( { \\bf X } _ { t } ^ { \\sf t r a i n } ) ^ { \\top } { \\bf X } _ { t } ^ { \\sf t r a i n } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 587, + 507, + 626 + ], + "score": 1.0, + "content": ". Thus, we have) as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 605, + 451, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 297, + 622 + ], + "score": 0.88, + "content": "( \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } = \\mathrm { D i a g } ( n _ { 1 } \\sigma _ { 1 } ^ { ( n _ { 1 } ) } , \\ldots , n _ { 1 } \\sigma _ { d } ^ { ( n _ { 1 } ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 605, + 451, + 625 + ], + "score": 1.0, + "content": "σ(n1)d ) urther simplify (28", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 587, + 507, + 626 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 625, + 466, + 718 + ], + "lines": [ + { + "bbox": [ + 148, + 625, + 466, + 718 + ], + "spans": [ + { + "bbox": [ + 148, + 625, + 466, + 718 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad n _ { 2 } \\mathbb { E } \\left[ \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } \\left( \\mathbf { I } _ { d } - ( ( \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } \\right) ^ { 2 } ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\right] } \\\\ & { \\stackrel { ( i ) } { = } n _ { 2 } \\mathbb { E } \\left[ \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\right] } \\\\ & { \\stackrel { ( i i ) } { = } \\frac { n _ { 2 } } { d } \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \\right] \\mathbf { I } _ { d } . } \\end{array}", + "type": "interline_equation", + "image_path": "de284222dacba510f3b015654ffaaebb7e50a96b807d8f5a02658e39c701667d.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 148, + 625, + 466, + 656.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 148, + 656.0, + 466, + 687.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 148, + 687.0, + 466, + 718.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 504, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 127, + 734 + ], + "score": 1.0, + "content": "Step", + "type": "text" + }, + { + "bbox": [ + 127, + 720, + 139, + 732 + ], + "score": 0.82, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 718, + 351, + 734 + ], + "score": 1.0, + "content": "follows from the same computation in (22), and step", + "type": "text" + }, + { + "bbox": [ + 352, + 721, + 366, + 732 + ], + "score": 0.85, + "content": "( i i )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 718, + 505, + 734 + ], + "score": 1.0, + "content": "uses the permutation trick in (23).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 718, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 438, + 97 + ], + "lines": [ + { + "bbox": [ + 103, + 78, + 435, + 101 + ], + "spans": [ + { + "bbox": [ + 103, + 78, + 289, + 101 + ], + "score": 1.0, + "content": "Next, we find the expected covariance matrix", + "type": "text" + }, + { + "bbox": [ + 289, + 81, + 435, + 98 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\frac { 1 } { n _ { 2 } ^ { 2 } } \\mathbb { E } [ \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) ( \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) ) ^ { \\top } ] } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 105, + 490, + 275 + ], + "lines": [ + { + "bbox": [ + 123, + 105, + 490, + 275 + ], + "spans": [ + { + "bbox": [ + 123, + 105, + 490, + 275 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } | \\nabla \\xi ^ { t } \\mathbf { t } ^ { \\tau } \\mathbf { w } _ { 0 , k } | ( \\nabla \\xi _ { t } ^ { t \\tau } \\mathbf { w } _ { 0 , k } ) ^ { \\tau } | } \\\\ & { = \\mathbb { E } \\big [ ( \\mathbf { M } _ { t } ^ { \\tau , \\tau } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\tau , \\tau } \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } \\big ) ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ^ { \\top } ( \\mathbf { M } _ { t } ^ { \\tau , \\tau - \\tau } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\tau , \\tau + \\tau } \\big ] } \\\\ & { = \\mathbb { E } \\Bigg [ \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 0 } ^ { ( 1 ) } \\mathbf { 1 } ^ { \\tau + 1 } } \\lambda ^ { \\prime } \\cdots \\cdots \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) } \\mathbf { 1 } } \\Big ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { x } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } \\Gamma } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n ) } + \\lambda } \\cdots \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) + 1 } } \\Big ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( 1 ) } + \\lambda } \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) + 1 } + \\lambda } \\Bigg ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } } \\\\ & \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg ( \\displaystyle \\frac { \\lambda } \\end{array}", + "type": "interline_equation", + "image_path": "a98c7077ead09b6c5f9f4b1672fb8b7b4bf0d8b6375d5a847fd39ac4e089360f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 123, + 105, + 490, + 161.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 161.66666666666666, + 490, + 218.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 123, + 218.33333333333331, + 490, + 275.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 459, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 461, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 422, + 295 + ], + "score": 1.0, + "content": "Combining (29) and (30), we derive the asymptotic covariance matrix of using", + "type": "text" + }, + { + "bbox": [ + 422, + 281, + 447, + 292 + ], + "score": 0.87, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 279, + 461, + 295 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 300, + 491, + 508 + ], + "lines": [ + { + "bbox": [ + 120, + 300, + 491, + 508 + ], + "spans": [ + { + "bbox": [ + 120, + 300, + 491, + 508 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { A s s u p ~ C o s s : } ( \\nabla _ { v _ { \\xi } } \\mathrm { a r } ) } \\\\ & { = \\mathbb { E } \\{ \\nabla _ { v _ { \\xi } } \\mathrm { a r } \\sin [ \\mathrm { C e } ( \\mathrm { B e } ( \\xi _ { v _ { \\xi } } \\cdots ) ) ] \\} } \\\\ & { = \\frac { d ^ { 2 } } { v _ { \\xi } ^ { 2 } } ( \\mathbb { E } [ \\frac { d } { \\sum _ { i = 1 } ^ { d } ( \\lambda + v _ { \\xi } ^ { ( n ) } \\cdots ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathbb { E } [ \\nabla _ { v _ { \\xi } } \\mathrm { a r n } \\mathrm { b i g h } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots ) ] \\cdot \\mathbf { V } _ { v _ { \\xi } } ^ { \\mathrm { a s s } } ) ^ { \\top } ( \\mathbf { X } _ { \\xi } ^ { \\mathrm { a d } } ) ^ { \\top } } \\\\ & { \\quad \\cdot \\mathbb { E } [ \\nabla _ { v _ { \\xi } } \\mathrm { a r n } \\mathrm { b i g h } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots ) \\cdot ( \\mathbf { V } _ { v _ { \\xi } } ^ { \\mathrm { a s s } } ) ^ { \\top } ( \\mathbf { W } _ { \\xi } - \\mathbf { w } _ { \\xi } ) | \\mathbf { \\Psi } ( \\mathbf { x } _ { \\xi } - \\mathbf { w } _ { \\xi } ) \\cdot \\mathbf { V } _ { v _ { \\xi } } ^ { \\top } } \\\\ & \\quad \\cdot \\mathbb { X } _ { v _ { \\xi } } ^ { \\mathrm { a r s t } } \\nabla _ { v _ { \\xi } } \\mathrm { a s } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) } - \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) } ) ( \\nabla _ { v _ { \\xi } } ^ { \\mathrm { a r s } } ) ^ { \\top } ( \\mathbf { w } _ { \\xi } - \\mathbf { w } _ { \\xi } ) \\cdot \\mathbf { V } \\end{array}", + "type": "interline_equation", + "image_path": "67673d6cd44011fa1309707bed96b12768c869291bb52725a27d2b2e775d04a7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 120, + 300, + 491, + 369.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 120, + 369.3333333333333, + 491, + 438.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 120, + 438.66666666666663, + 491, + 507.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 235, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 235, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 235, + 525 + ], + "score": 1.0, + "content": "Taking trace in (31), we deduce", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 530, + 482, + 736 + ], + "lines": [ + { + "bbox": [ + 114, + 530, + 482, + 736 + ], + "spans": [ + { + "bbox": [ + 114, + 530, + 482, + 736 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { A s g n a l i t } \\ : \\ : \\mathrm { B e f f } _ { \\mathrm { e f f } } ^ { \\mathrm { o u t } , \\mathrm { p } } } \\\\ & { = \\mathrm { t } \\ : ( \\mathrm { A s g n a l i t y } \\ : ( \\mathrm { w } _ { \\mathrm { i g h } } ^ { \\mathrm { o u t } } ) ^ { \\mathrm { p } } ) } \\\\ & { = \\frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } ( \\mathbb { Z } [ \\displaystyle \\sum _ { i = 1 } ^ { n } \\frac { \\lambda } { ( \\lambda + \\alpha _ { \\mathrm { i f f f } } ^ { \\mathrm { o u t } } ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathrm { ~ t } \\Bigg ( \\mathbb { E } [ \\mathrm { v } _ { \\mathrm { i n } } ^ { \\mathrm { s t a n h } } \\mathrm { l i s k g } ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } } + \\lambda ^ { \\mathrm { ~ , ~ } \\dots , \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } } ) ( \\mathrm { v } _ { \\mathrm { i n } } ^ { \\mathrm { s t a n h } } ) ^ { \\mathrm { T } } ( \\mathrm { X } _ { \\mathrm { f } } ^ { \\mathrm { a d } } ) ^ { \\mathrm { T } } } \\\\ & { \\quad \\cdot \\mathrm { ~ X } _ { \\mathrm { i } } ^ { \\mathrm { o u t } } \\mathrm { Y } _ { \\mathrm { t } } ^ { \\mathrm { o u t } } \\mathrm { D i s k } \\Bigg ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } - \\lambda ^ { \\mathrm { ~ , ~ } \\dots , \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } } \\Bigg ) \\ : ( \\mathrm { Y } _ { \\mathrm { t } } ^ { \\mathrm { p r o n } } ) ^ { \\mathrm { T } } ( \\mathrm { w } _ { \\mathrm { e } _ { k } } - \\mathrm { w } _ { \\mathrm { i f } } ^ { \\mathrm { o u t } } | \\mathrm { w } _ { \\mathrm { i f } } , \\mathrm { ~ } - \\mathrm { w } _ { \\mathrm { i f } } ^ { \\mathrm { o u t } } ) ^ { \\mathrm { T } } } \\\\ & \\quad \\cdot \\mathrm ~ \\mathbb { V } _ { \\mathrm { t } } ^ { \\mathrm { e x i n } } \\mathrm { l i s k g } ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } - \\lambda ^ { \\mathrm { ~ , ~ } } \\frac \\end{array}", + "type": "interline_equation", + "image_path": "6d0ec42c29b2d973f1138a4176955a46178acfc25ee054aaa38d9c8d9bddd7fc.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 114, + 530, + 482, + 598.6666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 114, + 598.6666666666666, + 482, + 667.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 114, + 667.3333333333333, + 482, + 735.9999999999999 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 312, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "20", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 438, + 97 + ], + "lines": [ + { + "bbox": [ + 103, + 78, + 435, + 101 + ], + "spans": [ + { + "bbox": [ + 103, + 78, + 289, + 101 + ], + "score": 1.0, + "content": "Next, we find the expected covariance matrix", + "type": "text" + }, + { + "bbox": [ + 289, + 81, + 435, + 98 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\frac { 1 } { n _ { 2 } ^ { 2 } } \\mathbb { E } [ \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) ( \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) ) ^ { \\top } ] } \\end{array}", + "type": "inline_equation" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 103, + 78, + 435, + 101 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 105, + 490, + 275 + ], + "lines": [ + { + "bbox": [ + 123, + 105, + 490, + 275 + ], + "spans": [ + { + "bbox": [ + 123, + 105, + 490, + 275 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mathbb { E } | \\nabla \\xi ^ { t } \\mathbf { t } ^ { \\tau } \\mathbf { w } _ { 0 , k } | ( \\nabla \\xi _ { t } ^ { t \\tau } \\mathbf { w } _ { 0 , k } ) ^ { \\tau } | } \\\\ & { = \\mathbb { E } \\big [ ( \\mathbf { M } _ { t } ^ { \\tau , \\tau } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\tau , \\tau } \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } \\big ) ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ^ { \\top } ( \\mathbf { M } _ { t } ^ { \\tau , \\tau - \\tau } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\tau , \\tau + \\tau } \\big ] } \\\\ & { = \\mathbb { E } \\Bigg [ \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 0 } ^ { ( 1 ) } \\mathbf { 1 } ^ { \\tau + 1 } } \\lambda ^ { \\prime } \\cdots \\cdots \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) } \\mathbf { 1 } } \\Big ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { x } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } \\Gamma } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n ) } + \\lambda } \\cdots \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) + 1 } } \\Big ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( 1 ) } + \\lambda } \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) + 1 } + \\lambda } \\Bigg ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } } \\\\ & \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg ( \\displaystyle \\frac { \\lambda } \\end{array}", + "type": "interline_equation", + "image_path": "a98c7077ead09b6c5f9f4b1672fb8b7b4bf0d8b6375d5a847fd39ac4e089360f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 123, + 105, + 490, + 161.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 161.66666666666666, + 490, + 218.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 123, + 218.33333333333331, + 490, + 275.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 459, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 461, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 422, + 295 + ], + "score": 1.0, + "content": "Combining (29) and (30), we derive the asymptotic covariance matrix of using", + "type": "text" + }, + { + "bbox": [ + 422, + 281, + 447, + 292 + ], + "score": 0.87, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 279, + 461, + 295 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 279, + 461, + 295 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 300, + 491, + 508 + ], + "lines": [ + { + "bbox": [ + 120, + 300, + 491, + 508 + ], + "spans": [ + { + "bbox": [ + 120, + 300, + 491, + 508 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { A s s u p ~ C o s s : } ( \\nabla _ { v _ { \\xi } } \\mathrm { a r } ) } \\\\ & { = \\mathbb { E } \\{ \\nabla _ { v _ { \\xi } } \\mathrm { a r } \\sin [ \\mathrm { C e } ( \\mathrm { B e } ( \\xi _ { v _ { \\xi } } \\cdots ) ) ] \\} } \\\\ & { = \\frac { d ^ { 2 } } { v _ { \\xi } ^ { 2 } } ( \\mathbb { E } [ \\frac { d } { \\sum _ { i = 1 } ^ { d } ( \\lambda + v _ { \\xi } ^ { ( n ) } \\cdots ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathbb { E } [ \\nabla _ { v _ { \\xi } } \\mathrm { a r n } \\mathrm { b i g h } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots ) ] \\cdot \\mathbf { V } _ { v _ { \\xi } } ^ { \\mathrm { a s s } } ) ^ { \\top } ( \\mathbf { X } _ { \\xi } ^ { \\mathrm { a d } } ) ^ { \\top } } \\\\ & { \\quad \\cdot \\mathbb { E } [ \\nabla _ { v _ { \\xi } } \\mathrm { a r n } \\mathrm { b i g h } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots ) \\cdot ( \\mathbf { V } _ { v _ { \\xi } } ^ { \\mathrm { a s s } } ) ^ { \\top } ( \\mathbf { W } _ { \\xi } - \\mathbf { w } _ { \\xi } ) | \\mathbf { \\Psi } ( \\mathbf { x } _ { \\xi } - \\mathbf { w } _ { \\xi } ) \\cdot \\mathbf { V } _ { v _ { \\xi } } ^ { \\top } } \\\\ & \\quad \\cdot \\mathbb { X } _ { v _ { \\xi } } ^ { \\mathrm { a r s t } } \\nabla _ { v _ { \\xi } } \\mathrm { a s } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) } - \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) } ) ( \\nabla _ { v _ { \\xi } } ^ { \\mathrm { a r s } } ) ^ { \\top } ( \\mathbf { w } _ { \\xi } - \\mathbf { w } _ { \\xi } ) \\cdot \\mathbf { V } \\end{array}", + "type": "interline_equation", + "image_path": "67673d6cd44011fa1309707bed96b12768c869291bb52725a27d2b2e775d04a7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 120, + 300, + 491, + 369.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 120, + 369.3333333333333, + 491, + 438.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 120, + 438.66666666666663, + 491, + 507.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 235, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 235, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 235, + 525 + ], + "score": 1.0, + "content": "Taking trace in (31), we deduce", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 513, + 235, + 525 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 530, + 482, + 736 + ], + "lines": [ + { + "bbox": [ + 114, + 530, + 482, + 736 + ], + "spans": [ + { + "bbox": [ + 114, + 530, + 482, + 736 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { A s g n a l i t } \\ : \\ : \\mathrm { B e f f } _ { \\mathrm { e f f } } ^ { \\mathrm { o u t } , \\mathrm { p } } } \\\\ & { = \\mathrm { t } \\ : ( \\mathrm { A s g n a l i t y } \\ : ( \\mathrm { w } _ { \\mathrm { i g h } } ^ { \\mathrm { o u t } } ) ^ { \\mathrm { p } } ) } \\\\ & { = \\frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } ( \\mathbb { Z } [ \\displaystyle \\sum _ { i = 1 } ^ { n } \\frac { \\lambda } { ( \\lambda + \\alpha _ { \\mathrm { i f f f } } ^ { \\mathrm { o u t } } ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathrm { ~ t } \\Bigg ( \\mathbb { E } [ \\mathrm { v } _ { \\mathrm { i n } } ^ { \\mathrm { s t a n h } } \\mathrm { l i s k g } ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } } + \\lambda ^ { \\mathrm { ~ , ~ } \\dots , \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } } ) ( \\mathrm { v } _ { \\mathrm { i n } } ^ { \\mathrm { s t a n h } } ) ^ { \\mathrm { T } } ( \\mathrm { X } _ { \\mathrm { f } } ^ { \\mathrm { a d } } ) ^ { \\mathrm { T } } } \\\\ & { \\quad \\cdot \\mathrm { ~ X } _ { \\mathrm { i } } ^ { \\mathrm { o u t } } \\mathrm { Y } _ { \\mathrm { t } } ^ { \\mathrm { o u t } } \\mathrm { D i s k } \\Bigg ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } - \\lambda ^ { \\mathrm { ~ , ~ } \\dots , \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } } \\Bigg ) \\ : ( \\mathrm { Y } _ { \\mathrm { t } } ^ { \\mathrm { p r o n } } ) ^ { \\mathrm { T } } ( \\mathrm { w } _ { \\mathrm { e } _ { k } } - \\mathrm { w } _ { \\mathrm { i f } } ^ { \\mathrm { o u t } } | \\mathrm { w } _ { \\mathrm { i f } } , \\mathrm { ~ } - \\mathrm { w } _ { \\mathrm { i f } } ^ { \\mathrm { o u t } } ) ^ { \\mathrm { T } } } \\\\ & \\quad \\cdot \\mathrm ~ \\mathbb { V } _ { \\mathrm { t } } ^ { \\mathrm { e x i n } } \\mathrm { l i s k g } ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } - \\lambda ^ { \\mathrm { ~ , ~ } } \\frac \\end{array}", + "type": "interline_equation", + "image_path": "6d0ec42c29b2d973f1138a4176955a46178acfc25ee054aaa38d9c8d9bddd7fc.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 114, + 530, + 482, + 598.6666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 114, + 598.6666666666666, + 482, + 667.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 114, + 667.3333333333333, + 482, + 735.9999999999999 + ], + "spans": [], + "index": 11 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 117, + 79, + 496, + 220 + ], + "lines": [ + { + "bbox": [ + 117, + 79, + 496, + 220 + ], + "spans": [ + { + "bbox": [ + 117, + 79, + 496, + 220 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\frac { ( i ) } { n _ { 2 } ^ { 2 } } ( { \\mathbb { E } } [ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot { \\operatorname { t r } } ( { \\mathbb { E } } [ \\displaystyle \\mathbf { V } _ { t } ^ { \\mathrm { r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda } { \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s } a } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s } a } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda } { \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } ] ) , } \\end{array}", + "type": "interline_equation", + "image_path": "ac5982a756fef66f5f48f3023e785433e17f3e4cfdf7de47b387ac3ba29af61b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 79, + 496, + 126.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 126.0, + 496, + 173.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 173.0, + 496, + 220.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 235, + 506, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 134, + 249 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 236, + 146, + 247 + ], + "score": 0.79, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 234, + 506, + 249 + ], + "score": 1.0, + "content": "follows from the cyclic property of the matrix trace operation. Due to the isotropicity of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 242, + 231, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 131, + 258 + ], + "score": 0.74, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 242, + 149, + 263 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 150, + 246, + 168, + 258 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 242, + 231, + 263 + ], + "score": 1.0, + "content": ", we claim that", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 264, + 464, + 368 + ], + "lines": [ + { + "bbox": [ + 156, + 264, + 464, + 368 + ], + "spans": [ + { + "bbox": [ + 156, + 264, + 464, + 368 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbb { E } \\bigg [ { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda } , \\ldots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda } , \\ldots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } \\bigg ] } \\end{array}", + "type": "interline_equation", + "image_path": "db384a9ab3f318df98ac6bf89445fc0fa2178a479781c396d33e40f1c750ff48.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 156, + 264, + 464, + 298.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 156, + 298.6666666666667, + 464, + 333.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 156, + 333.33333333333337, + 464, + 368.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 371, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 104, + 369, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 192, + 385 + ], + "score": 1.0, + "content": "is a diagonal matrix", + "type": "text" + }, + { + "bbox": [ + 192, + 371, + 207, + 382 + ], + "score": 0.89, + "content": "c \\mathbf { I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 369, + 506, + 385 + ], + "score": 1.0, + "content": "with all the diagonal elements identical. We can show the claim bying", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 379, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 246, + 395 + ], + "score": 1.0, + "content": "taking expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 247, + 382, + 266, + 394 + ], + "score": 0.9, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 379, + 316, + 395 + ], + "score": 1.0, + "content": "first. Since", + "type": "text" + }, + { + "bbox": [ + 317, + 382, + 342, + 394 + ], + "score": 0.9, + "content": "\\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 379, + 444, + 395 + ], + "score": 1.0, + "content": "is an orthogonal matrix,", + "type": "text" + }, + { + "bbox": [ + 444, + 381, + 487, + 394 + ], + "score": 0.9, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 379, + 506, + 395 + ], + "score": 1.0, + "content": "has", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 203, + 406 + ], + "score": 1.0, + "content": "the same distribution as", + "type": "text" + }, + { + "bbox": [ + 203, + 393, + 222, + 405 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 392, + 301, + 406 + ], + "score": 1.0, + "content": "and independent of", + "type": "text" + }, + { + "bbox": [ + 302, + 393, + 315, + 404 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 392, + 506, + 406 + ], + "score": 1.0, + "content": ". We verify that any off-diagonal element of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 405, + 183, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 183, + 416 + ], + "score": 1.0, + "content": "matrix expectation", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 420, + 474, + 484 + ], + "lines": [ + { + "bbox": [ + 136, + 420, + 474, + 484 + ], + "spans": [ + { + "bbox": [ + 136, + 420, + 474, + 484 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbf { A } : = \\mathbb { E } _ { \\mathbf { X } _ { t } ^ { \\mathrm { s i n } } } \\bigg [ \\big ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\big ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) } \\\\ & { \\qquad \\cdot ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\bigg ] } \\end{array}", + "type": "interline_equation", + "image_path": "032ec99591d49c556e4617bef17dd37da8431a7c3d3d6a8805b6b68e74d954c8.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 136, + 420, + 474, + 441.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 136, + 441.3333333333333, + 474, + 462.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 136, + 462.66666666666663, + 474, + 483.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 490, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 103, + 487, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 103, + 487, + 189, + 508 + ], + "score": 1.0, + "content": "is zero. We denote", + "type": "text" + }, + { + "bbox": [ + 189, + 491, + 348, + 505 + ], + "score": 0.92, + "content": "{ \\bf X } _ { t } ^ { \\mathsf { v a l } } { \\bf V } _ { t } ^ { \\mathsf { t r a i n } } = [ { \\bf x } _ { 1 } , \\ldots , { \\bf x } _ { n } ] ^ { \\top } \\in \\mathbb { R } ^ { n _ { 2 } \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 487, + 370, + 508 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 370, + 492, + 382, + 504 + ], + "score": 0.71, + "content": "\\mathbf { x } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 487, + 397, + 508 + ], + "score": 1.0, + "content": "iid∼", + "type": "text" + }, + { + "bbox": [ + 398, + 491, + 433, + 505 + ], + "score": 0.85, + "content": "{ \\mathsf { N } } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 487, + 457, + 508 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 458, + 493, + 486, + 505 + ], + "score": 0.92, + "content": "k \\neq \\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 487, + 506, + 508 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 502, + 218, + 516 + ], + "spans": [ + { + "bbox": [ + 107, + 504, + 129, + 516 + ], + "score": 0.92, + "content": "( k , \\ell )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 502, + 165, + 516 + ], + "score": 1.0, + "content": "-th entry", + "type": "text" + }, + { + "bbox": [ + 165, + 505, + 184, + 516 + ], + "score": 0.92, + "content": "A _ { k , \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 502, + 196, + 516 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 196, + 505, + 206, + 514 + ], + "score": 0.74, + "content": "\\mathbf { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 502, + 218, + 516 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 522, + 440, + 622 + ], + "lines": [ + { + "bbox": [ + 169, + 522, + 440, + 622 + ], + "spans": [ + { + "bbox": [ + 169, + 522, + 440, + 622 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { A _ { k , \\ell } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\sum _ { i } x _ { k , i } x _ { j , i } \\right) \\left( \\sum _ { i } x _ { j , i } x _ { \\ell , i } \\right) \\right) \\right] } } \\\\ { { \\mathrm { } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \\ell , n } \\right) \\right] } } \\\\ { { \\mathrm { } \\overset { ( i ) } { = } 0 , } } \\end{array}", + "type": "interline_equation", + "image_path": "d1a2fff61a3aae3c3a5188b89ff92427ce90a1cd8b93bfca61a96eebe036be6c.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 169, + 522, + 440, + 555.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 169, + 555.3333333333334, + 440, + 588.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 169, + 588.6666666666667, + 440, + 622.0000000000001 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 504, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 133, + 641 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 629, + 149, + 639 + ], + "score": 0.87, + "content": "x _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 626, + 198, + 641 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + }, + { + "bbox": [ + 198, + 628, + 204, + 639 + ], + "score": 0.84, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 626, + 261, + 641 + ], + "score": 1.0, + "content": "-th element of", + "type": "text" + }, + { + "bbox": [ + 261, + 628, + 271, + 638 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 626, + 312, + 641 + ], + "score": 1.0, + "content": ". Equality", + "type": "text" + }, + { + "bbox": [ + 312, + 627, + 324, + 639 + ], + "score": 0.82, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 626, + 399, + 641 + ], + "score": 1.0, + "content": "holds, since either", + "type": "text" + }, + { + "bbox": [ + 400, + 629, + 421, + 639 + ], + "score": 0.87, + "content": "x _ { k , m }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 626, + 433, + 641 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 433, + 630, + 451, + 639 + ], + "score": 0.87, + "content": "x _ { \\ell , n }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 626, + 505, + 641 + ], + "score": 1.0, + "content": "only appears", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 637, + 481, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 301, + 651 + ], + "score": 1.0, + "content": "once in each summand. Therefore, we can write", + "type": "text" + }, + { + "bbox": [ + 301, + 638, + 412, + 650 + ], + "score": 0.9, + "content": "\\mathbf { A } = \\operatorname { D i a g } \\left( A _ { 1 , 1 } , \\ldots , A _ { d , d } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 637, + 434, + 651 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 435, + 639, + 455, + 650 + ], + "score": 0.91, + "content": "A _ { k , k }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 637, + 481, + 651 + ], + "score": 1.0, + "content": "being", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 655, + 421, + 732 + ], + "lines": [ + { + "bbox": [ + 188, + 655, + 421, + 732 + ], + "spans": [ + { + "bbox": [ + 188, + 655, + 421, + 732 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } & { } & { A _ { k , k } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \\ell , n } \\right) \\right] } \\\\ & { } & { = \\mathbb E \\left[ \\displaystyle \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { k } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { k , m } x _ { k , n } x _ { k , n } \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "e2f1eb53e4fd79e08198b7a7454abb859871b3838e611dbe8bf9d391a07beaa1.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 188, + 655, + 421, + 670.4 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 188, + 670.4, + 421, + 685.8 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 188, + 685.8, + 421, + 701.1999999999999 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 188, + 701.1999999999999, + 421, + 716.5999999999999 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 188, + 716.5999999999999, + 421, + 731.9999999999999 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 117, + 79, + 496, + 220 + ], + "lines": [ + { + "bbox": [ + 117, + 79, + 496, + 220 + ], + "spans": [ + { + "bbox": [ + 117, + 79, + 496, + 220 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\frac { ( i ) } { n _ { 2 } ^ { 2 } } ( { \\mathbb { E } } [ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot { \\operatorname { t r } } ( { \\mathbb { E } } [ \\displaystyle \\mathbf { V } _ { t } ^ { \\mathrm { r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda } { \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s } a } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s } a } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda } { \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } ] ) , } \\end{array}", + "type": "interline_equation", + "image_path": "ac5982a756fef66f5f48f3023e785433e17f3e4cfdf7de47b387ac3ba29af61b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 79, + 496, + 126.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 126.0, + 496, + 173.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 173.0, + 496, + 220.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 235, + 506, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 134, + 249 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 236, + 146, + 247 + ], + "score": 0.79, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 234, + 506, + 249 + ], + "score": 1.0, + "content": "follows from the cyclic property of the matrix trace operation. Due to the isotropicity of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 242, + 231, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 131, + 258 + ], + "score": 0.74, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 242, + 149, + 263 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 150, + 246, + 168, + 258 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 242, + 231, + 263 + ], + "score": 1.0, + "content": ", we claim that", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 234, + 506, + 263 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 264, + 464, + 368 + ], + "lines": [ + { + "bbox": [ + 156, + 264, + 464, + 368 + ], + "spans": [ + { + "bbox": [ + 156, + 264, + 464, + 368 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbb { E } \\bigg [ { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda } , \\ldots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda } , \\ldots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } \\bigg ] } \\end{array}", + "type": "interline_equation", + "image_path": "db384a9ab3f318df98ac6bf89445fc0fa2178a479781c396d33e40f1c750ff48.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 156, + 264, + 464, + 298.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 156, + 298.6666666666667, + 464, + 333.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 156, + 333.33333333333337, + 464, + 368.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 371, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 104, + 369, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 192, + 385 + ], + "score": 1.0, + "content": "is a diagonal matrix", + "type": "text" + }, + { + "bbox": [ + 192, + 371, + 207, + 382 + ], + "score": 0.89, + "content": "c \\mathbf { I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 369, + 506, + 385 + ], + "score": 1.0, + "content": "with all the diagonal elements identical. We can show the claim bying", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 379, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 246, + 395 + ], + "score": 1.0, + "content": "taking expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 247, + 382, + 266, + 394 + ], + "score": 0.9, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 379, + 316, + 395 + ], + "score": 1.0, + "content": "first. Since", + "type": "text" + }, + { + "bbox": [ + 317, + 382, + 342, + 394 + ], + "score": 0.9, + "content": "\\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 379, + 444, + 395 + ], + "score": 1.0, + "content": "is an orthogonal matrix,", + "type": "text" + }, + { + "bbox": [ + 444, + 381, + 487, + 394 + ], + "score": 0.9, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 379, + 506, + 395 + ], + "score": 1.0, + "content": "has", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 203, + 406 + ], + "score": 1.0, + "content": "the same distribution as", + "type": "text" + }, + { + "bbox": [ + 203, + 393, + 222, + 405 + ], + "score": 0.89, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 392, + 301, + 406 + ], + "score": 1.0, + "content": "and independent of", + "type": "text" + }, + { + "bbox": [ + 302, + 393, + 315, + 404 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 392, + 506, + 406 + ], + "score": 1.0, + "content": ". We verify that any off-diagonal element of the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 405, + 183, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 183, + 416 + ], + "score": 1.0, + "content": "matrix expectation", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 369, + 506, + 416 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 420, + 474, + 484 + ], + "lines": [ + { + "bbox": [ + 136, + 420, + 474, + 484 + ], + "spans": [ + { + "bbox": [ + 136, + 420, + 474, + 484 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbf { A } : = \\mathbb { E } _ { \\mathbf { X } _ { t } ^ { \\mathrm { s i n } } } \\bigg [ \\big ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\big ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) } \\\\ & { \\qquad \\cdot ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\bigg ] } \\end{array}", + "type": "interline_equation", + "image_path": "032ec99591d49c556e4617bef17dd37da8431a7c3d3d6a8805b6b68e74d954c8.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 136, + 420, + 474, + 441.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 136, + 441.3333333333333, + 474, + 462.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 136, + 462.66666666666663, + 474, + 483.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 490, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 103, + 487, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 103, + 487, + 189, + 508 + ], + "score": 1.0, + "content": "is zero. We denote", + "type": "text" + }, + { + "bbox": [ + 189, + 491, + 348, + 505 + ], + "score": 0.92, + "content": "{ \\bf X } _ { t } ^ { \\mathsf { v a l } } { \\bf V } _ { t } ^ { \\mathsf { t r a i n } } = [ { \\bf x } _ { 1 } , \\ldots , { \\bf x } _ { n } ] ^ { \\top } \\in \\mathbb { R } ^ { n _ { 2 } \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 487, + 370, + 508 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 370, + 492, + 382, + 504 + ], + "score": 0.71, + "content": "\\mathbf { x } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 487, + 397, + 508 + ], + "score": 1.0, + "content": "iid∼", + "type": "text" + }, + { + "bbox": [ + 398, + 491, + 433, + 505 + ], + "score": 0.85, + "content": "{ \\mathsf { N } } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 487, + 457, + 508 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 458, + 493, + 486, + 505 + ], + "score": 0.92, + "content": "k \\neq \\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 487, + 506, + 508 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 502, + 218, + 516 + ], + "spans": [ + { + "bbox": [ + 107, + 504, + 129, + 516 + ], + "score": 0.92, + "content": "( k , \\ell )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 502, + 165, + 516 + ], + "score": 1.0, + "content": "-th entry", + "type": "text" + }, + { + "bbox": [ + 165, + 505, + 184, + 516 + ], + "score": 0.92, + "content": "A _ { k , \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 502, + 196, + 516 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 196, + 505, + 206, + 514 + ], + "score": 0.74, + "content": "\\mathbf { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 502, + 218, + 516 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 103, + 487, + 506, + 516 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 522, + 440, + 622 + ], + "lines": [ + { + "bbox": [ + 169, + 522, + 440, + 622 + ], + "spans": [ + { + "bbox": [ + 169, + 522, + 440, + 622 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { A _ { k , \\ell } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\sum _ { i } x _ { k , i } x _ { j , i } \\right) \\left( \\sum _ { i } x _ { j , i } x _ { \\ell , i } \\right) \\right) \\right] } } \\\\ { { \\mathrm { } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \\ell , n } \\right) \\right] } } \\\\ { { \\mathrm { } \\overset { ( i ) } { = } 0 , } } \\end{array}", + "type": "interline_equation", + "image_path": "d1a2fff61a3aae3c3a5188b89ff92427ce90a1cd8b93bfca61a96eebe036be6c.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 169, + 522, + 440, + 555.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 169, + 555.3333333333334, + 440, + 588.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 169, + 588.6666666666667, + 440, + 622.0000000000001 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 504, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 133, + 641 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 629, + 149, + 639 + ], + "score": 0.87, + "content": "x _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 626, + 198, + 641 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + }, + { + "bbox": [ + 198, + 628, + 204, + 639 + ], + "score": 0.84, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 626, + 261, + 641 + ], + "score": 1.0, + "content": "-th element of", + "type": "text" + }, + { + "bbox": [ + 261, + 628, + 271, + 638 + ], + "score": 0.85, + "content": "\\mathbf { x } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 626, + 312, + 641 + ], + "score": 1.0, + "content": ". Equality", + "type": "text" + }, + { + "bbox": [ + 312, + 627, + 324, + 639 + ], + "score": 0.82, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 626, + 399, + 641 + ], + "score": 1.0, + "content": "holds, since either", + "type": "text" + }, + { + "bbox": [ + 400, + 629, + 421, + 639 + ], + "score": 0.87, + "content": "x _ { k , m }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 626, + 433, + 641 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 433, + 630, + 451, + 639 + ], + "score": 0.87, + "content": "x _ { \\ell , n }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 626, + 505, + 641 + ], + "score": 1.0, + "content": "only appears", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 637, + 481, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 301, + 651 + ], + "score": 1.0, + "content": "once in each summand. Therefore, we can write", + "type": "text" + }, + { + "bbox": [ + 301, + 638, + 412, + 650 + ], + "score": 0.9, + "content": "\\mathbf { A } = \\operatorname { D i a g } \\left( A _ { 1 , 1 } , \\ldots , A _ { d , d } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 637, + 434, + 651 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 435, + 639, + 455, + 650 + ], + "score": 0.91, + "content": "A _ { k , k }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 637, + 481, + 651 + ], + "score": 1.0, + "content": "being", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 626, + 505, + 651 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 655, + 421, + 732 + ], + "lines": [ + { + "bbox": [ + 188, + 655, + 421, + 732 + ], + "spans": [ + { + "bbox": [ + 188, + 655, + 421, + 732 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } & { } & { A _ { k , k } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \\ell , n } \\right) \\right] } \\\\ & { } & { = \\mathbb E \\left[ \\displaystyle \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { k } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { k , m } x _ { k , n } x _ { k , n } \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "e2f1eb53e4fd79e08198b7a7454abb859871b3838e611dbe8bf9d391a07beaa1.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 188, + 655, + 421, + 670.4 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 188, + 670.4, + 421, + 685.8 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 188, + 685.8, + 421, + 701.1999999999999 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 188, + 701.1999999999999, + 421, + 716.5999999999999 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 188, + 716.5999999999999, + 421, + 731.9999999999999 + ], + "spans": [], + "index": 26 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 411, + 96 + ], + "lines": [ + { + "bbox": [ + 160, + 74, + 415, + 104 + ], + "spans": [ + { + "bbox": [ + 160, + 83, + 180, + 95 + ], + "score": 0.91, + "content": "A _ { k , k }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 74, + 249, + 104 + ], + "score": 1.0, + "content": "only depends on", + "type": "text" + }, + { + "bbox": [ + 249, + 80, + 271, + 96 + ], + "score": 0.92, + "content": "\\sigma _ { k } ^ { ( n _ { 1 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 74, + 415, + 104 + ], + "score": 1.0, + "content": ". Plugging back into (33), we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 98, + 463, + 303 + ], + "lines": [ + { + "bbox": [ + 149, + 98, + 463, + 303 + ], + "spans": [ + { + "bbox": [ + 149, + 98, + 463, + 303 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { a t a l p h i s g a } } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { a r s i n g } } ) ^ { - 1 } \\big ( \\mathbf { X } _ { t } ^ { \\mathrm { a r s i } } \\big ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { a p } } \\mathbf { V } _ { t } ^ { \\mathrm { a b l p h i s g } } \\bigg ( \\frac { \\lambda } { ( \\sigma _ { t } ^ { ( 1 ) } + \\lambda ) ^ { 2 } } , \\cdots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda ) ^ { 2 } } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { p a l p h } } ) ^ { \\top } \\big ( \\mathbf { X } _ { t } ^ { \\mathrm { a r s i } } \\big ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { a p } } \\mathbf { V } _ { t } ^ { \\mathrm { a p } } \\mathrm { P l a s i n g } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { p a r p } } ) ^ { \\top } \\bigg ] } \\\\ & { = \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { s a m p h i s g a } } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( k + 1 ) } + \\lambda } \\bigg ) \\ \\mathrm { D i s g } ( A _ { 1 , 1 } , \\ldots , A _ { t , \\mathrm { d } } ) } \\\\ & { \\qquad \\cdot \\mathrm { D i s g } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { a r p } } ) ^ { \\top } \\bigg ] } \\\\ & = \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { s a m p h } } ( \\frac { \\lambda } ( \\sigma _ { t } ^ { ( 1 ) } + \\end{array}", + "type": "interline_equation", + "image_path": "a828773c439c32fae71345410963ff84dfe4b414fa076eb9adb947c769d174c1.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 149, + 98, + 463, + 166.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 149, + 166.33333333333331, + 463, + 234.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 149, + 234.66666666666663, + 463, + 302.99999999999994 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 483, + 333 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 483, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 168, + 334 + ], + "score": 1.0, + "content": "where equality", + "type": "text" + }, + { + "bbox": [ + 168, + 321, + 180, + 333 + ], + "score": 0.81, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 320, + 465, + 334 + ], + "score": 1.0, + "content": "utilizes the permutation trick in (24). To this end, it is sufficient to find", + "type": "text" + }, + { + "bbox": [ + 465, + 324, + 471, + 331 + ], + "score": 0.76, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 320, + 483, + 334 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 335, + 474, + 506 + ], + "lines": [ + { + "bbox": [ + 135, + 335, + 474, + 506 + ], + "spans": [ + { + "bbox": [ + 135, + 335, + 474, + 506 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { c = \\cfrac { 1 } { d } \\mathrm { t r } ( \\mathbb { B } [ \\nabla _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda } { \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda } , \\cdots , \\cfrac { \\lambda } { \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { a b } } ) ^ { \\top } } \\\\ & { \\qquad \\times \\mathbf { X } _ { t } ^ { \\mathrm { s d } } \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s d } } ) ^ { \\top } } \\\\ & { \\qquad \\times \\mathbf { X } _ { t } ^ { \\mathrm { s d } } \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda } { \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda } , \\cdots , \\cfrac { \\lambda } { \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ] ) } \\\\ & { = \\cfrac { 1 } { d } \\mathrm { t r } ( \\mathbb { B } [ \\mathbf { X } _ { t } ^ { \\mathrm { a i n } } \\mathrm { V } _ { t } ^ { \\mathrm { t x i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { a b } } ) ^ { \\top } } \\\\ & \\qquad \\times \\mathbf { X } _ { t } ^ \\mathrm s \\end{array}", + "type": "interline_equation", + "image_path": "fce22d68f161751f2c327ef81c8ff20649dfe1aaf32b378457f0ff62ae600019.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 135, + 335, + 474, + 392.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 135, + 392.0, + 474, + 449.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 135, + 449.0, + 474, + 506.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 463, + 519 + ], + "lines": [ + { + "bbox": [ + 104, + 504, + 465, + 521 + ], + "spans": [ + { + "bbox": [ + 104, + 504, + 183, + 521 + ], + "score": 1.0, + "content": "Observe again that", + "type": "text" + }, + { + "bbox": [ + 184, + 506, + 266, + 519 + ], + "score": 0.91, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } } \\in \\mathbb { R } ^ { n _ { 2 } \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 504, + 465, + 521 + ], + "score": 1.0, + "content": "is a Gaussian random matrix. We rewrite (34) as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 521, + 450, + 567 + ], + "lines": [ + { + "bbox": [ + 160, + 521, + 450, + 567 + ], + "spans": [ + { + "bbox": [ + 160, + 521, + 450, + 567 + ], + "score": 0.94, + "content": "c = \\frac { 1 } { d } \\mathbb { E } \\left[ \\left( \\sum _ { i , j = 1 } ^ { n _ { 2 } } \\mathbf { v } _ { i } ^ { \\top } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { v } _ { j } \\right) ^ { 2 } \\right] ,", + "type": "interline_equation", + "image_path": "64927095f105463e3b7525064e275e2aa29a57f3f80abeafd56207b14d92afe1.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 160, + 521, + 450, + 536.3333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 160, + 536.3333333333334, + 450, + 551.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 160, + 551.6666666666667, + 450, + 567.0000000000001 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 571, + 503, + 595 + ], + "lines": [ + { + "bbox": [ + 104, + 567, + 507, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 567, + 133, + 586 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 569, + 192, + 584 + ], + "score": 0.92, + "content": "\\mathbf { v } _ { i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 567, + 339, + 586 + ], + "score": 1.0, + "content": "is i.i.d. Gaussian random vectors for", + "type": "text" + }, + { + "bbox": [ + 340, + 573, + 395, + 583 + ], + "score": 0.91, + "content": "i = 1 , \\ldots , n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 567, + 507, + 586 + ], + "score": 1.0, + "content": ". To compute (35), we need", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 582, + 188, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 188, + 595 + ], + "score": 1.0, + "content": "the following result.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 599, + 502, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 268, + 614 + ], + "score": 1.0, + "content": "Claim 7. Given any symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 268, + 599, + 316, + 611 + ], + "score": 0.91, + "content": "\\textbf { A } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 596, + 506, + 614 + ], + "score": 1.0, + "content": "and i.i.d. standard Gaussian random vectors", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 608, + 214, + 630 + ], + "spans": [ + { + "bbox": [ + 107, + 612, + 173, + 627 + ], + "score": 0.91, + "content": "\\mathbf { v } , \\mathbf { u } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 608, + 214, + 630 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 627, + 392, + 662 + ], + "lines": [ + { + "bbox": [ + 219, + 627, + 392, + 662 + ], + "spans": [ + { + "bbox": [ + 219, + 627, + 392, + 662 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { v } ) ^ { 2 } \\right] = 2 \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } + \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) \\quad a n d } \\\\ & { \\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { u } ) ^ { 2 } \\right] = \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "b98fd43d90d69eb77822761056b91573b34777686bec9d94f8b062057c5162f7.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 627, + 392, + 644.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 219, + 644.5, + 392, + 662.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 671, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 106, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 303, + 684 + ], + "score": 1.0, + "content": "Proof of Claim 7. We show (36) first. We denote", + "type": "text" + }, + { + "bbox": [ + 303, + 672, + 321, + 684 + ], + "score": 0.92, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 671, + 347, + 684 + ], + "score": 1.0, + "content": "as the", + "type": "text" + }, + { + "bbox": [ + 348, + 672, + 369, + 684 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 671, + 425, + 684 + ], + "score": 1.0, + "content": "-th element of", + "type": "text" + }, + { + "bbox": [ + 425, + 672, + 435, + 682 + ], + "score": 0.59, + "content": "\\mathbf { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 671, + 452, + 684 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 453, + 673, + 462, + 683 + ], + "score": 0.85, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 671, + 488, + 684 + ], + "score": 1.0, + "content": "as the", + "type": "text" + }, + { + "bbox": [ + 488, + 673, + 493, + 681 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "-th", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 683, + 322, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 151, + 695 + ], + "score": 1.0, + "content": "element of", + "type": "text" + }, + { + "bbox": [ + 151, + 685, + 159, + 693 + ], + "score": 0.48, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 683, + 322, + 695 + ], + "score": 1.0, + "content": ". Expanding the quadratic form, we have", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 144, + 696, + 342, + 736 + ], + "lines": [ + { + "bbox": [ + 144, + 696, + 342, + 736 + ], + "spans": [ + { + "bbox": [ + 144, + 696, + 342, + 736 + ], + "score": 0.86, + "content": "\\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { v } ) ^ { 2 } \\right] = \\mathbb { E } \\left[ \\sum _ { i , j , k , \\ell \\leq d } v _ { i } v _ { j } v _ { k } v _ { \\ell } A _ { i , j } A _ { k , \\ell } \\right]", + "type": "interline_equation", + "image_path": "c96a471b2e3c85035074275520534736f07705d741e70ba18b5683d25032df81.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 144, + 696, + 342, + 716.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 144, + 716.0, + 342, + 736.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "page_idx": 21, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 411, + 96 + ], + "lines": [ + { + "bbox": [ + 160, + 74, + 415, + 104 + ], + "spans": [ + { + "bbox": [ + 160, + 83, + 180, + 95 + ], + "score": 0.91, + "content": "A _ { k , k }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 74, + 249, + 104 + ], + "score": 1.0, + "content": "only depends on", + "type": "text" + }, + { + "bbox": [ + 249, + 80, + 271, + 96 + ], + "score": 0.92, + "content": "\\sigma _ { k } ^ { ( n _ { 1 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 74, + 415, + 104 + ], + "score": 1.0, + "content": ". Plugging back into (33), we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 160, + 74, + 415, + 104 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 98, + 463, + 303 + ], + "lines": [ + { + "bbox": [ + 149, + 98, + 463, + 303 + ], + "spans": [ + { + "bbox": [ + 149, + 98, + 463, + 303 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { a t a l p h i s g a } } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { a r s i n g } } ) ^ { - 1 } \\big ( \\mathbf { X } _ { t } ^ { \\mathrm { a r s i } } \\big ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { a p } } \\mathbf { V } _ { t } ^ { \\mathrm { a b l p h i s g } } \\bigg ( \\frac { \\lambda } { ( \\sigma _ { t } ^ { ( 1 ) } + \\lambda ) ^ { 2 } } , \\cdots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda ) ^ { 2 } } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { p a l p h } } ) ^ { \\top } \\big ( \\mathbf { X } _ { t } ^ { \\mathrm { a r s i } } \\big ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { a p } } \\mathbf { V } _ { t } ^ { \\mathrm { a p } } \\mathrm { P l a s i n g } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { p a r p } } ) ^ { \\top } \\bigg ] } \\\\ & { = \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { s a m p h i s g a } } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( k + 1 ) } + \\lambda } \\bigg ) \\ \\mathrm { D i s g } ( A _ { 1 , 1 } , \\ldots , A _ { t , \\mathrm { d } } ) } \\\\ & { \\qquad \\cdot \\mathrm { D i s g } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { a r p } } ) ^ { \\top } \\bigg ] } \\\\ & = \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { s a m p h } } ( \\frac { \\lambda } ( \\sigma _ { t } ^ { ( 1 ) } + \\end{array}", + "type": "interline_equation", + "image_path": "a828773c439c32fae71345410963ff84dfe4b414fa076eb9adb947c769d174c1.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 149, + 98, + 463, + 166.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 149, + 166.33333333333331, + 463, + 234.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 149, + 234.66666666666663, + 463, + 302.99999999999994 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 483, + 333 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 483, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 168, + 334 + ], + "score": 1.0, + "content": "where equality", + "type": "text" + }, + { + "bbox": [ + 168, + 321, + 180, + 333 + ], + "score": 0.81, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 320, + 465, + 334 + ], + "score": 1.0, + "content": "utilizes the permutation trick in (24). To this end, it is sufficient to find", + "type": "text" + }, + { + "bbox": [ + 465, + 324, + 471, + 331 + ], + "score": 0.76, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 320, + 483, + 334 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 320, + 483, + 334 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 335, + 474, + 506 + ], + "lines": [ + { + "bbox": [ + 135, + 335, + 474, + 506 + ], + "spans": [ + { + "bbox": [ + 135, + 335, + 474, + 506 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { c = \\cfrac { 1 } { d } \\mathrm { t r } ( \\mathbb { B } [ \\nabla _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda } { \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda } , \\cdots , \\cfrac { \\lambda } { \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { a b } } ) ^ { \\top } } \\\\ & { \\qquad \\times \\mathbf { X } _ { t } ^ { \\mathrm { s d } } \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s d } } ) ^ { \\top } } \\\\ & { \\qquad \\times \\mathbf { X } _ { t } ^ { \\mathrm { s d } } \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda } { \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda } , \\cdots , \\cfrac { \\lambda } { \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ] ) } \\\\ & { = \\cfrac { 1 } { d } \\mathrm { t r } ( \\mathbb { B } [ \\mathbf { X } _ { t } ^ { \\mathrm { a i n } } \\mathrm { V } _ { t } ^ { \\mathrm { t x i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { a b } } ) ^ { \\top } } \\\\ & \\qquad \\times \\mathbf { X } _ { t } ^ \\mathrm s \\end{array}", + "type": "interline_equation", + "image_path": "fce22d68f161751f2c327ef81c8ff20649dfe1aaf32b378457f0ff62ae600019.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 135, + 335, + 474, + 392.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 135, + 392.0, + 474, + 449.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 135, + 449.0, + 474, + 506.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 463, + 519 + ], + "lines": [ + { + "bbox": [ + 104, + 504, + 465, + 521 + ], + "spans": [ + { + "bbox": [ + 104, + 504, + 183, + 521 + ], + "score": 1.0, + "content": "Observe again that", + "type": "text" + }, + { + "bbox": [ + 184, + 506, + 266, + 519 + ], + "score": 0.91, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } } \\in \\mathbb { R } ^ { n _ { 2 } \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 504, + 465, + 521 + ], + "score": 1.0, + "content": "is a Gaussian random matrix. We rewrite (34) as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 504, + 465, + 521 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 521, + 450, + 567 + ], + "lines": [ + { + "bbox": [ + 160, + 521, + 450, + 567 + ], + "spans": [ + { + "bbox": [ + 160, + 521, + 450, + 567 + ], + "score": 0.94, + "content": "c = \\frac { 1 } { d } \\mathbb { E } \\left[ \\left( \\sum _ { i , j = 1 } ^ { n _ { 2 } } \\mathbf { v } _ { i } ^ { \\top } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { v } _ { j } \\right) ^ { 2 } \\right] ,", + "type": "interline_equation", + "image_path": "64927095f105463e3b7525064e275e2aa29a57f3f80abeafd56207b14d92afe1.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 160, + 521, + 450, + 536.3333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 160, + 536.3333333333334, + 450, + 551.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 160, + 551.6666666666667, + 450, + 567.0000000000001 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 571, + 503, + 595 + ], + "lines": [ + { + "bbox": [ + 104, + 567, + 507, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 567, + 133, + 586 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 569, + 192, + 584 + ], + "score": 0.92, + "content": "\\mathbf { v } _ { i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 567, + 339, + 586 + ], + "score": 1.0, + "content": "is i.i.d. Gaussian random vectors for", + "type": "text" + }, + { + "bbox": [ + 340, + 573, + 395, + 583 + ], + "score": 0.91, + "content": "i = 1 , \\ldots , n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 567, + 507, + 586 + ], + "score": 1.0, + "content": ". To compute (35), we need", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 582, + 188, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 188, + 595 + ], + "score": 1.0, + "content": "the following result.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 567, + 507, + 595 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 599, + 502, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 268, + 614 + ], + "score": 1.0, + "content": "Claim 7. Given any symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 268, + 599, + 316, + 611 + ], + "score": 0.91, + "content": "\\textbf { A } \\in \\mathbb { R } ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 596, + 506, + 614 + ], + "score": 1.0, + "content": "and i.i.d. standard Gaussian random vectors", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 608, + 214, + 630 + ], + "spans": [ + { + "bbox": [ + 107, + 612, + 173, + 627 + ], + "score": 0.91, + "content": "\\mathbf { v } , \\mathbf { u } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 608, + 214, + 630 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 596, + 506, + 630 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 627, + 392, + 662 + ], + "lines": [ + { + "bbox": [ + 219, + 627, + 392, + 662 + ], + "spans": [ + { + "bbox": [ + 219, + 627, + 392, + 662 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { v } ) ^ { 2 } \\right] = 2 \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } + \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) \\quad a n d } \\\\ & { \\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { u } ) ^ { 2 } \\right] = \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "b98fd43d90d69eb77822761056b91573b34777686bec9d94f8b062057c5162f7.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 627, + 392, + 644.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 219, + 644.5, + 392, + 662.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 671, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 106, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 303, + 684 + ], + "score": 1.0, + "content": "Proof of Claim 7. We show (36) first. We denote", + "type": "text" + }, + { + "bbox": [ + 303, + 672, + 321, + 684 + ], + "score": 0.92, + "content": "A _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 671, + 347, + 684 + ], + "score": 1.0, + "content": "as the", + "type": "text" + }, + { + "bbox": [ + 348, + 672, + 369, + 684 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 671, + 425, + 684 + ], + "score": 1.0, + "content": "-th element of", + "type": "text" + }, + { + "bbox": [ + 425, + 672, + 435, + 682 + ], + "score": 0.59, + "content": "\\mathbf { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 671, + 452, + 684 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 453, + 673, + 462, + 683 + ], + "score": 0.85, + "content": "v _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 671, + 488, + 684 + ], + "score": 1.0, + "content": "as the", + "type": "text" + }, + { + "bbox": [ + 488, + 673, + 493, + 681 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "-th", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 683, + 322, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 151, + 695 + ], + "score": 1.0, + "content": "element of", + "type": "text" + }, + { + "bbox": [ + 151, + 685, + 159, + 693 + ], + "score": 0.48, + "content": "\\mathbf { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 683, + 322, + 695 + ], + "score": 1.0, + "content": ". Expanding the quadratic form, we have", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 671, + 505, + 695 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 144, + 696, + 342, + 736 + ], + "lines": [ + { + "bbox": [ + 144, + 696, + 342, + 736 + ], + "spans": [ + { + "bbox": [ + 144, + 696, + 342, + 736 + ], + "score": 0.86, + "content": "\\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { v } ) ^ { 2 } \\right] = \\mathbb { E } \\left[ \\sum _ { i , j , k , \\ell \\leq d } v _ { i } v _ { j } v _ { k } v _ { \\ell } A _ { i , j } A _ { k , \\ell } \\right]", + "type": "interline_equation", + "image_path": "c96a471b2e3c85035074275520534736f07705d741e70ba18b5683d25032df81.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 144, + 696, + 342, + 716.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 144, + 716.0, + 342, + 736.0 + ], + "spans": [], + "index": 21 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 201, + 79, + 463, + 193 + ], + "lines": [ + { + "bbox": [ + 201, + 79, + 463, + 193 + ], + "spans": [ + { + "bbox": [ + 201, + 79, + 463, + 193 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { = \\mathbb { E } \\left[ \\underset { i \\leq d } { \\sum } v _ { i } ^ { 4 } A _ { i , i } ^ { 2 } \\right] + \\mathbb { E } \\left[ \\underset { i \\neq j } { \\sum } v _ { i } ^ { 2 } v _ { j } ^ { 2 } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) \\right] } \\\\ & { = 3 \\underset { i \\leq d } { \\sum } A _ { i , i } ^ { 2 } + \\underset { i \\neq j } { \\sum } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) } \\\\ & { = \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) + 2 \\underset { i \\leq d } { \\sum } A _ { i , i } ^ { 2 } + \\underset { i \\neq j } { \\sum } ( A _ { i , j } ^ { 2 } + A _ { i , j } A _ { j , i } ) } \\\\ & { = \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) + 2 \\| \\mathbf { A } \\| _ { \\mathrm { F r } } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "0e5caba3e729df7d95cf8d7afbcb020baf94913ec264bb4daf04a7a404dcc82b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 201, + 79, + 463, + 117.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 201, + 117.0, + 463, + 155.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 201, + 155.0, + 463, + 193.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 308, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 309, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 309, + 209 + ], + "score": 1.0, + "content": "Next, we show (37) by the cyclic property of race.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 210, + 429, + 227 + ], + "lines": [ + { + "bbox": [ + 181, + 210, + 429, + 227 + ], + "spans": [ + { + "bbox": [ + 181, + 210, + 429, + 227 + ], + "score": 0.89, + "content": "\\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { u } ) ^ { 2 } \\right] = \\operatorname { t r } \\left( \\mathbb { E } \\left[ \\mathbf { u } \\mathbf { u } ^ { \\top } \\mathbf { A } \\mathbf { v } \\mathbf { v } ^ { \\top } \\mathbf { A } \\right] \\right) = \\operatorname { t r } ( \\mathbf { A } ^ { 2 } ) = \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } .", + "type": "interline_equation", + "image_path": "f991837b9ebe8ae98b54addae6f2b5517b699408b07f24fbd2e566762b63bf04.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 181, + 210, + 429, + 227 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 311, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 252, + 312, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 312, + 267 + ], + "score": 1.0, + "content": "We back to the computation of (35) using Claim 7.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 272, + 454, + 547 + ], + "lines": [ + { + "bbox": [ + 159, + 272, + 454, + 547 + ], + "spans": [ + { + "bbox": [ + 159, + 272, + 454, + 547 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad _ { 1 } = - \\frac { 1 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } - \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin \\beta } ) ^ { k } ] } \\\\ & { \\quad - \\frac { 3 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) \\sin \\beta ] } \\\\ & { \\quad \\quad + \\frac { 3 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) ] } \\\\ & { \\quad - \\frac { \\sin \\beta } { 2 ^ { k } } \\mathbb { E } [ ( \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } ) ) ] } \\\\ & { \\quad \\quad _ { 1 } = \\frac { \\sin \\beta } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\alpha } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) ] } \\\\ & { \\quad \\quad + \\frac { \\sin \\beta } { 2 ^ { k } } \\frac { \\sin \\alpha } { \\sin \\alpha + \\sin \\beta } ( \\frac { \\sin \\alpha } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\sin \\beta } ) ] } \\\\ & \\quad \\quad - \\frac { \\sin \\alpha } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\sin \\beta } ) ^ { k } - ( \\sin \\beta + \\frac { \\sin \\beta } \\sin \\end{array}", + "type": "interline_equation", + "image_path": "a410cd1916f88cadc86d36af719c095e410f0da092175e0d1eaac747909130a8.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 159, + 272, + 454, + 288.1764705882353 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 159, + 288.1764705882353, + 454, + 304.3529411764706 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 159, + 304.3529411764706, + 454, + 320.5294117647059 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 159, + 320.5294117647059, + 454, + 336.7058823529412 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 159, + 336.7058823529412, + 454, + 352.8823529411765 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 159, + 352.8823529411765, + 454, + 369.0588235294118 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 159, + 369.0588235294118, + 454, + 385.23529411764713 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 159, + 385.23529411764713, + 454, + 401.41176470588243 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 159, + 401.41176470588243, + 454, + 417.58823529411774 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 159, + 417.58823529411774, + 454, + 433.76470588235304 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 159, + 433.76470588235304, + 454, + 449.94117647058835 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 159, + 449.94117647058835, + 454, + 466.11764705882365 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 159, + 466.11764705882365, + 454, + 482.29411764705895 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 159, + 482.29411764705895, + 454, + 498.47058823529426 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 159, + 498.47058823529426, + 454, + 514.6470588235295 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 159, + 514.6470588235295, + 454, + 530.8235294117648 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 159, + 530.8235294117648, + 454, + 547.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 545, + 494, + 559 + ], + "lines": [ + { + "bbox": [ + 104, + 541, + 496, + 563 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 331, + 563 + ], + "score": 1.0, + "content": "Combining (38) and (33), by the independence between", + "type": "text" + }, + { + "bbox": [ + 331, + 548, + 344, + 558 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 541, + 362, + 563 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 363, + 545, + 410, + 559 + ], + "score": 0.86, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 541, + 496, + 563 + ], + "score": 1.0, + "content": ", we compute (32) as", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 565, + 463, + 719 + ], + "lines": [ + { + "bbox": [ + 149, + 565, + 463, + 719 + ], + "spans": [ + { + "bbox": [ + 149, + 565, + 463, + 719 + ], + "score": 0.96, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { A s y n M N S E } ( \\widehat { \\mathbf { w } } _ { 0 , \\mathcal { T } } ^ { t , \\mathcal { T } } ) } \\\\ & { = \\displaystyle \\frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \\right] \\right) ^ { - 2 } } \\\\ & { \\qquad \\cdot \\displaystyle \\frac { n _ { 2 } } { d } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right] ^ { 2 } + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 4 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } } \\right] \\right) } \\\\ & { \\qquad \\cdot \\mathbb { E } \\left[ ( \\mathbf { w } _ { 0 , \\ast } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\ast } - \\mathbf { w } _ { t } ) ^ { \\top } \\right] } \\\\ & { = \\displaystyle \\frac { d R ^ { 2 } } { n _ { 2 } } \\frac { \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] ^ { 2 } + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } \\right] \\right) ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "db7416da64c3aa6a52d960fd3bfad14e8acbc9477930820648deab346d08b53c.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 149, + 565, + 463, + 616.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 149, + 616.3333333333334, + 463, + 667.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 149, + 667.6666666666667, + 463, + 719.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 198, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 719, + 199, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 199, + 734 + ], + "score": 1.0, + "content": "The proof is complete.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + } + ], + "page_idx": 22, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 229, + 505, + 241 + ], + "lines": [ + { + "bbox": [ + 495, + 231, + 505, + 242 + ], + "spans": [ + { + "bbox": [ + 495, + 231, + 505, + 242 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 721, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 496, + 722, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 496, + 722, + 505, + 732 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 201, + 79, + 463, + 193 + ], + "lines": [ + { + "bbox": [ + 201, + 79, + 463, + 193 + ], + "spans": [ + { + "bbox": [ + 201, + 79, + 463, + 193 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { = \\mathbb { E } \\left[ \\underset { i \\leq d } { \\sum } v _ { i } ^ { 4 } A _ { i , i } ^ { 2 } \\right] + \\mathbb { E } \\left[ \\underset { i \\neq j } { \\sum } v _ { i } ^ { 2 } v _ { j } ^ { 2 } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) \\right] } \\\\ & { = 3 \\underset { i \\leq d } { \\sum } A _ { i , i } ^ { 2 } + \\underset { i \\neq j } { \\sum } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) } \\\\ & { = \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) + 2 \\underset { i \\leq d } { \\sum } A _ { i , i } ^ { 2 } + \\underset { i \\neq j } { \\sum } ( A _ { i , j } ^ { 2 } + A _ { i , j } A _ { j , i } ) } \\\\ & { = \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) + 2 \\| \\mathbf { A } \\| _ { \\mathrm { F r } } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "0e5caba3e729df7d95cf8d7afbcb020baf94913ec264bb4daf04a7a404dcc82b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 201, + 79, + 463, + 117.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 201, + 117.0, + 463, + 155.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 201, + 155.0, + 463, + 193.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 308, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 309, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 309, + 209 + ], + "score": 1.0, + "content": "Next, we show (37) by the cyclic property of race.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 193, + 309, + 209 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 210, + 429, + 227 + ], + "lines": [ + { + "bbox": [ + 181, + 210, + 429, + 227 + ], + "spans": [ + { + "bbox": [ + 181, + 210, + 429, + 227 + ], + "score": 0.89, + "content": "\\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { u } ) ^ { 2 } \\right] = \\operatorname { t r } \\left( \\mathbb { E } \\left[ \\mathbf { u } \\mathbf { u } ^ { \\top } \\mathbf { A } \\mathbf { v } \\mathbf { v } ^ { \\top } \\mathbf { A } \\right] \\right) = \\operatorname { t r } ( \\mathbf { A } ^ { 2 } ) = \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } .", + "type": "interline_equation", + "image_path": "f991837b9ebe8ae98b54addae6f2b5517b699408b07f24fbd2e566762b63bf04.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 181, + 210, + 429, + 227 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 311, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 252, + 312, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 312, + 267 + ], + "score": 1.0, + "content": "We back to the computation of (35) using Claim 7.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 252, + 312, + 267 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 272, + 454, + 547 + ], + "lines": [ + { + "bbox": [ + 159, + 272, + 454, + 547 + ], + "spans": [ + { + "bbox": [ + 159, + 272, + 454, + 547 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad _ { 1 } = - \\frac { 1 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } - \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin \\beta } ) ^ { k } ] } \\\\ & { \\quad - \\frac { 3 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) \\sin \\beta ] } \\\\ & { \\quad \\quad + \\frac { 3 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) ] } \\\\ & { \\quad - \\frac { \\sin \\beta } { 2 ^ { k } } \\mathbb { E } [ ( \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } ) ) ] } \\\\ & { \\quad \\quad _ { 1 } = \\frac { \\sin \\beta } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\alpha } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) ] } \\\\ & { \\quad \\quad + \\frac { \\sin \\beta } { 2 ^ { k } } \\frac { \\sin \\alpha } { \\sin \\alpha + \\sin \\beta } ( \\frac { \\sin \\alpha } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\sin \\beta } ) ] } \\\\ & \\quad \\quad - \\frac { \\sin \\alpha } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\sin \\beta } ) ^ { k } - ( \\sin \\beta + \\frac { \\sin \\beta } \\sin \\end{array}", + "type": "interline_equation", + "image_path": "a410cd1916f88cadc86d36af719c095e410f0da092175e0d1eaac747909130a8.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 159, + 272, + 454, + 288.1764705882353 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 159, + 288.1764705882353, + 454, + 304.3529411764706 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 159, + 304.3529411764706, + 454, + 320.5294117647059 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 159, + 320.5294117647059, + 454, + 336.7058823529412 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 159, + 336.7058823529412, + 454, + 352.8823529411765 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 159, + 352.8823529411765, + 454, + 369.0588235294118 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 159, + 369.0588235294118, + 454, + 385.23529411764713 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 159, + 385.23529411764713, + 454, + 401.41176470588243 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 159, + 401.41176470588243, + 454, + 417.58823529411774 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 159, + 417.58823529411774, + 454, + 433.76470588235304 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 159, + 433.76470588235304, + 454, + 449.94117647058835 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 159, + 449.94117647058835, + 454, + 466.11764705882365 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 159, + 466.11764705882365, + 454, + 482.29411764705895 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 159, + 482.29411764705895, + 454, + 498.47058823529426 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 159, + 498.47058823529426, + 454, + 514.6470588235295 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 159, + 514.6470588235295, + 454, + 530.8235294117648 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 159, + 530.8235294117648, + 454, + 547.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 545, + 494, + 559 + ], + "lines": [ + { + "bbox": [ + 104, + 541, + 496, + 563 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 331, + 563 + ], + "score": 1.0, + "content": "Combining (38) and (33), by the independence between", + "type": "text" + }, + { + "bbox": [ + 331, + 548, + 344, + 558 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 541, + 362, + 563 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 363, + 545, + 410, + 559 + ], + "score": 0.86, + "content": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { X } _ { t } ^ { \\mathsf { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 541, + 496, + 563 + ], + "score": 1.0, + "content": ", we compute (32) as", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 541, + 496, + 563 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 565, + 463, + 719 + ], + "lines": [ + { + "bbox": [ + 149, + 565, + 463, + 719 + ], + "spans": [ + { + "bbox": [ + 149, + 565, + 463, + 719 + ], + "score": 0.96, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { A s y n M N S E } ( \\widehat { \\mathbf { w } } _ { 0 , \\mathcal { T } } ^ { t , \\mathcal { T } } ) } \\\\ & { = \\displaystyle \\frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \\right] \\right) ^ { - 2 } } \\\\ & { \\qquad \\cdot \\displaystyle \\frac { n _ { 2 } } { d } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right] ^ { 2 } + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 4 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } } \\right] \\right) } \\\\ & { \\qquad \\cdot \\mathbb { E } \\left[ ( \\mathbf { w } _ { 0 , \\ast } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\ast } - \\mathbf { w } _ { t } ) ^ { \\top } \\right] } \\\\ & { = \\displaystyle \\frac { d R ^ { 2 } } { n _ { 2 } } \\frac { \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] ^ { 2 } + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } \\right] \\right) ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "db7416da64c3aa6a52d960fd3bfad14e8acbc9477930820648deab346d08b53c.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 149, + 565, + 463, + 616.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 149, + 616.3333333333334, + 463, + 667.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 149, + 667.6666666666667, + 463, + 719.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 198, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 719, + 199, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 199, + 734 + ], + "score": 1.0, + "content": "The proof is complete.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 719, + 199, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 338, + 116 + ], + "score": 1.0, + "content": "Corollary 8 (Optimal rate of the train-val method at finite", + "type": "text" + }, + { + "bbox": [ + 338, + 104, + 364, + 115 + ], + "score": 0.89, + "content": "( n , d ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 102, + 405, + 116 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 405, + 104, + 429, + 115 + ], + "score": 0.91, + "content": "( n , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 102, + 505, + 116 + ], + "score": 1.0, + "content": "and any split ratio", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 114, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 107, + 114, + 201, + 126 + ], + "score": 0.91, + "content": "( n _ { 1 } , n _ { 2 } ) \\stackrel { \\cdot } { = } ( n _ { 1 } , \\stackrel { \\cdot } { = } n - n _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 115, + 383, + 126 + ], + "score": 1.0, + "content": ", the optimal rate (by tuning the regularization", + "type": "text" + }, + { + "bbox": [ + 384, + 115, + 408, + 125 + ], + "score": 0.88, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 115, + 506, + 126 + ], + "score": 1.0, + "content": ") of the train-val method", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 126, + 164, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 164, + 137 + ], + "score": 1.0, + "content": "is achieved at", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 141, + 499, + 167 + ], + "lines": [ + { + "bbox": [ + 111, + 141, + 499, + 167 + ], + "spans": [ + { + "bbox": [ + 111, + 141, + 499, + 167 + ], + "score": 0.92, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\operatorname* { l i m } _ { \\lambda \\to \\infty } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } .", + "type": "interline_equation", + "image_path": "d34ecf7a8bc39cc0e39dec0e3075ace83def4ceacb393108d1301a7058b4ef68.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 111, + 141, + 499, + 167 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 173, + 501, + 186 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 502, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 237, + 186 + ], + "score": 1.0, + "content": "Further optimizing the rate over", + "type": "text" + }, + { + "bbox": [ + 238, + 176, + 249, + 185 + ], + "score": 0.83, + "content": "n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 172, + 348, + 186 + ], + "score": 1.0, + "content": ", the best rate is taken at", + "type": "text" + }, + { + "bbox": [ + 349, + 173, + 419, + 186 + ], + "score": 0.93, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 0 , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 172, + 502, + 186 + ], + "score": 1.0, + "content": ", in which the rate is", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 191, + 438, + 217 + ], + "lines": [ + { + "bbox": [ + 173, + 191, + 438, + 217 + ], + "spans": [ + { + "bbox": [ + 173, + 191, + 438, + 217 + ], + "score": 0.92, + "content": "\\mathrm { i n f } _ { \\lambda > 0 , n _ { 2 } \\in [ n ] } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } - \\mathsf { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { ( d + n + 1 ) R ^ { 2 } } { n } .", + "type": "interline_equation", + "image_path": "acf4f5a5d7b4caacecb7881b48f0aa56b8dfc569f1b13f86e67b2ad600bbcdd5.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 173, + 191, + 438, + 217 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 226, + 506, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 506, + 240 + ], + "score": 1.0, + "content": "Discussion: Using all data as validation Corollary 8 suggests that the optimal asymptotic rate of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 244, + 252 + ], + "score": 1.0, + "content": "the train-val method is obtained at", + "type": "text" + }, + { + "bbox": [ + 244, + 239, + 274, + 249 + ], + "score": 0.91, + "content": "\\lambda = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 238, + 292, + 252 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 293, + 239, + 362, + 251 + ], + "score": 0.93, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 0 , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 238, + 506, + 252 + ], + "score": 1.0, + "content": ". In other words, the optimal choice", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "for the train-val method is to use all the data as validation. In this case, since there is no training data,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 259, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 288, + 274 + ], + "score": 1.0, + "content": "the inner solver reduces to the identity map:", + "type": "text" + }, + { + "bbox": [ + 289, + 261, + 391, + 273 + ], + "score": 0.92, + "content": "\\mathcal { A } _ { \\infty , 0 } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) = \\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 259, + 506, + 274 + ], + "score": 1.0, + "content": ", and the outer loop reduces", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 237, + 284 + ], + "score": 1.0, + "content": "to learning a single linear model", + "type": "text" + }, + { + "bbox": [ + 237, + 273, + 251, + 283 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "on all the tasks combined. We remark that while the optimality", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "of such a split ratio is likely an artifact of the data distribution we assumed (noiseless realizable", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "score": 1.0, + "content": "linear model) and may not generalize to other meta-learning problems, we do find experimentally", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "that using more data as validation (than training) can also improve the performance on real meta-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 315, + 220, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 220, + 329 + ], + "score": 1.0, + "content": "learning tasks (see Table 2).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 105, + 331, + 442, + 345 + ], + "lines": [ + { + "bbox": [ + 105, + 331, + 443, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 223, + 345 + ], + "score": 1.0, + "content": "Proof of Corollary 8 Fix", + "type": "text" + }, + { + "bbox": [ + 223, + 332, + 258, + 344 + ], + "score": 0.92, + "content": "n _ { 1 } \\in [ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 331, + 276, + 345 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 277, + 334, + 330, + 344 + ], + "score": 0.9, + "content": "n _ { 2 } = n - n _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 331, + 443, + 345 + ], + "score": 1.0, + "content": ". Recall from Lemma 5 that", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 349, + 514, + 401 + ], + "lines": [ + { + "bbox": [ + 111, + 349, + 514, + 401 + ], + "spans": [ + { + "bbox": [ + 111, + 349, + 514, + 401 + ], + "score": 0.87, + "content": "\\mathrm { 1 s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\sim \\mathrm { s q l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { d R ^ { 2 } } { n _ { 2 } } \\cdot \\frac { \\mathbb { E } \\Big [ \\Big ( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ^ { 2 } ) \\Big ) \\Big ] } { \\Big ( \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ] \\Big ) ^ { 2 } }", + "type": "interline_equation", + "image_path": "e5512866c2ce15ea1a73279a2e7f4859803978869023b16abfd9d8386fde19fa.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 111, + 349, + 514, + 366.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 111, + 366.3333333333333, + 514, + 383.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 111, + 383.66666666666663, + 514, + 400.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 222, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 223, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 151, + 419 + ], + "score": 1.0, + "content": "Clearly, as", + "type": "text" + }, + { + "bbox": [ + 151, + 406, + 183, + 416 + ], + "score": 0.89, + "content": "\\lambda \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 404, + 223, + 419 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 423, + 474, + 450 + ], + "lines": [ + { + "bbox": [ + 135, + 423, + 474, + 450 + ], + "spans": [ + { + "bbox": [ + 135, + 423, + 474, + 450 + ], + "score": 0.94, + "content": "\\operatorname* { l i m } _ { \\lambda \\infty } \\mathrm { { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s u } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { d R ^ { 2 } } { n _ { 2 } } \\cdot \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { d ^ { 2 } } = \\frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } .", + "type": "interline_equation", + "image_path": "5664d9ead6bf3997e226343f81dcea72840c823e4ec5dae0639b613e39c20774.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 135, + 423, + 474, + 450 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 506, + 480 + ], + "lines": [ + { + "bbox": [ + 104, + 454, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 104, + 454, + 364, + 472 + ], + "score": 1.0, + "content": "It remains to show that the above quantity is a lower bound for", + "type": "text" + }, + { + "bbox": [ + 364, + 456, + 488, + 470 + ], + "score": 0.66, + "content": "\\mathrm { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 454, + 506, + 472 + ], + "score": 1.0, + "content": "fo r", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 468, + 243, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 123, + 482 + ], + "score": 1.0, + "content": "any", + "type": "text" + }, + { + "bbox": [ + 123, + 469, + 149, + 479 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 468, + 243, + 482 + ], + "score": 1.0, + "content": ", which is equivalent to", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 486, + 506, + 537 + ], + "lines": [ + { + "bbox": [ + 111, + 486, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 111, + 486, + 506, + 537 + ], + "score": 0.94, + "content": "\\frac { \\Xi \\bigg [ \\Big ( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\bigg ] } { \\Big ( \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ] \\Big ) ^ { 2 } } \\geq \\frac { d + n _ { 2 } + 1 } { d } , \\mathrm { f o r ~ a l l } \\lambda > 0 .", + "type": "interline_equation", + "image_path": "0885147a96023e13e09f9ec7cd88fc5f9a0909bcf71cbd9a641fa7328df5df9f.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 111, + 486, + 506, + 503.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 503.0, + 506, + 520.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 111, + 520.0, + 506, + 537.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 554, + 339, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 339, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 204, + 568 + ], + "score": 1.0, + "content": "We now prove (39). For", + "type": "text" + }, + { + "bbox": [ + 205, + 554, + 237, + 567 + ], + "score": 0.92, + "content": "i \\in [ n _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 553, + 339, + 568 + ], + "score": 1.0, + "content": ", define random variables", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 571, + 424, + 603 + ], + "lines": [ + { + "bbox": [ + 187, + 571, + 424, + 603 + ], + "spans": [ + { + "bbox": [ + 187, + 571, + 424, + 603 + ], + "score": 0.94, + "content": "X _ { i } : = \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\in [ 0 , 1 ] \\mathrm { a n d } Y _ { i } : = 1 - X _ { i } \\in [ 0 , 1 ] .", + "type": "interline_equation", + "image_path": "f76b9e2b6e6eba12986a7947285962d6049dd3d26516741b5a79ec41c808d7c9.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 571, + 424, + 587.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 187, + 587.0, + 424, + 603.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 608, + 307, + 620 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 308, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 308, + 621 + ], + "score": 1.0, + "content": "Then the left-hand side of (39) can be rewritten as", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 624, + 471, + 733 + ], + "lines": [ + { + "bbox": [ + 142, + 624, + 471, + 733 + ], + "spans": [ + { + "bbox": [ + 142, + 624, + 471, + 733 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\frac { \\mathbb { E } \\left[ \\left( d - n _ { 1 } + \\sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\left( d - n _ { 1 } + \\sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } ^ { 2 } \\right) \\right] } { \\left( \\mathbb { E } \\left[ d - n _ { 1 } + \\sum _ { i = 1 } ^ { n } X _ { i } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { \\mathbb { E } \\left[ \\left( d - \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \\right) ^ { 2 } + \\left( n _ { 2 } + 1 \\right) \\left( d - 2 \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } + \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } ^ { 2 } \\right) \\right] } { \\left( \\mathbb { E } \\left[ d - \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d - 2 ( d + n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } \\right] + \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { d ^ { 2 } - 2 d \\mathbb { E } \\left[ \\sum Y _ { i } \\right] + \\left( \\mathbb { E } \\left[ \\sum Y _ { i } \\right] \\right) ^ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "0258f8181380db316241ed1c03d0e3dc4aa5fa893a5fc8f24c4de36a8d8b3a4a.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 142, + 624, + 471, + 660.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 142, + 660.3333333333334, + 471, + 696.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 142, + 696.6666666666667, + 471, + 733.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 23, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 16, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 82, + 391, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 389, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 365, + 96 + ], + "score": 1.0, + "content": "B.3 OPTIMAL RATE OF THE TRAIN-VAL METHOD AT FINITE", + "type": "text" + }, + { + "bbox": [ + 366, + 83, + 389, + 95 + ], + "score": 0.9, + "content": "( n , d )", + "type": "inline_equation" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 338, + 116 + ], + "score": 1.0, + "content": "Corollary 8 (Optimal rate of the train-val method at finite", + "type": "text" + }, + { + "bbox": [ + 338, + 104, + 364, + 115 + ], + "score": 0.89, + "content": "( n , d ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 102, + 405, + 116 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 405, + 104, + 429, + 115 + ], + "score": 0.91, + "content": "( n , d )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 102, + 505, + 116 + ], + "score": 1.0, + "content": "and any split ratio", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 114, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 107, + 114, + 201, + 126 + ], + "score": 0.91, + "content": "( n _ { 1 } , n _ { 2 } ) \\stackrel { \\cdot } { = } ( n _ { 1 } , \\stackrel { \\cdot } { = } n - n _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 115, + 383, + 126 + ], + "score": 1.0, + "content": ", the optimal rate (by tuning the regularization", + "type": "text" + }, + { + "bbox": [ + 384, + 115, + 408, + 125 + ], + "score": 0.88, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 115, + 506, + 126 + ], + "score": 1.0, + "content": ") of the train-val method", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 126, + 164, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 164, + 137 + ], + "score": 1.0, + "content": "is achieved at", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 102, + 506, + 137 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 141, + 499, + 167 + ], + "lines": [ + { + "bbox": [ + 111, + 141, + 499, + 167 + ], + "spans": [ + { + "bbox": [ + 111, + 141, + 499, + 167 + ], + "score": 0.92, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\operatorname* { l i m } _ { \\lambda \\to \\infty } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } .", + "type": "interline_equation", + "image_path": "d34ecf7a8bc39cc0e39dec0e3075ace83def4ceacb393108d1301a7058b4ef68.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 111, + 141, + 499, + 167 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 173, + 501, + 186 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 502, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 237, + 186 + ], + "score": 1.0, + "content": "Further optimizing the rate over", + "type": "text" + }, + { + "bbox": [ + 238, + 176, + 249, + 185 + ], + "score": 0.83, + "content": "n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 172, + 348, + 186 + ], + "score": 1.0, + "content": ", the best rate is taken at", + "type": "text" + }, + { + "bbox": [ + 349, + 173, + 419, + 186 + ], + "score": 0.93, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 0 , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 172, + 502, + 186 + ], + "score": 1.0, + "content": ", in which the rate is", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 172, + 502, + 186 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 191, + 438, + 217 + ], + "lines": [ + { + "bbox": [ + 173, + 191, + 438, + 217 + ], + "spans": [ + { + "bbox": [ + 173, + 191, + 438, + 217 + ], + "score": 0.92, + "content": "\\mathrm { i n f } _ { \\lambda > 0 , n _ { 2 } \\in [ n ] } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } - \\mathsf { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { ( d + n + 1 ) R ^ { 2 } } { n } .", + "type": "interline_equation", + "image_path": "acf4f5a5d7b4caacecb7881b48f0aa56b8dfc569f1b13f86e67b2ad600bbcdd5.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 173, + 191, + 438, + 217 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 226, + 506, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 506, + 240 + ], + "score": 1.0, + "content": "Discussion: Using all data as validation Corollary 8 suggests that the optimal asymptotic rate of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 244, + 252 + ], + "score": 1.0, + "content": "the train-val method is obtained at", + "type": "text" + }, + { + "bbox": [ + 244, + 239, + 274, + 249 + ], + "score": 0.91, + "content": "\\lambda = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 238, + 292, + 252 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 293, + 239, + 362, + 251 + ], + "score": 0.93, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 0 , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 238, + 506, + 252 + ], + "score": 1.0, + "content": ". In other words, the optimal choice", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "for the train-val method is to use all the data as validation. In this case, since there is no training data,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 259, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 288, + 274 + ], + "score": 1.0, + "content": "the inner solver reduces to the identity map:", + "type": "text" + }, + { + "bbox": [ + 289, + 261, + 391, + 273 + ], + "score": 0.92, + "content": "\\mathcal { A } _ { \\infty , 0 } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) = \\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 259, + 506, + 274 + ], + "score": 1.0, + "content": ", and the outer loop reduces", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 272, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 237, + 284 + ], + "score": 1.0, + "content": "to learning a single linear model", + "type": "text" + }, + { + "bbox": [ + 237, + 273, + 251, + 283 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 272, + 505, + 284 + ], + "score": 1.0, + "content": "on all the tasks combined. We remark that while the optimality", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 283, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 505, + 295 + ], + "score": 1.0, + "content": "of such a split ratio is likely an artifact of the data distribution we assumed (noiseless realizable", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "score": 1.0, + "content": "linear model) and may not generalize to other meta-learning problems, we do find experimentally", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "that using more data as validation (than training) can also improve the performance on real meta-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 315, + 220, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 220, + 329 + ], + "score": 1.0, + "content": "learning tasks (see Table 2).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 227, + 506, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 331, + 442, + 345 + ], + "lines": [ + { + "bbox": [ + 105, + 331, + 443, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 223, + 345 + ], + "score": 1.0, + "content": "Proof of Corollary 8 Fix", + "type": "text" + }, + { + "bbox": [ + 223, + 332, + 258, + 344 + ], + "score": 0.92, + "content": "n _ { 1 } \\in [ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 331, + 276, + 345 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 277, + 334, + 330, + 344 + ], + "score": 0.9, + "content": "n _ { 2 } = n - n _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 331, + 443, + 345 + ], + "score": 1.0, + "content": ". Recall from Lemma 5 that", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 331, + 443, + 345 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 349, + 514, + 401 + ], + "lines": [ + { + "bbox": [ + 111, + 349, + 514, + 401 + ], + "spans": [ + { + "bbox": [ + 111, + 349, + 514, + 401 + ], + "score": 0.87, + "content": "\\mathrm { 1 s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\sim \\mathrm { s q l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { d R ^ { 2 } } { n _ { 2 } } \\cdot \\frac { \\mathbb { E } \\Big [ \\Big ( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ^ { 2 } ) \\Big ) \\Big ] } { \\Big ( \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ] \\Big ) ^ { 2 } }", + "type": "interline_equation", + "image_path": "e5512866c2ce15ea1a73279a2e7f4859803978869023b16abfd9d8386fde19fa.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 111, + 349, + 514, + 366.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 111, + 366.3333333333333, + 514, + 383.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 111, + 383.66666666666663, + 514, + 400.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 222, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 223, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 151, + 419 + ], + "score": 1.0, + "content": "Clearly, as", + "type": "text" + }, + { + "bbox": [ + 151, + 406, + 183, + 416 + ], + "score": 0.89, + "content": "\\lambda \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 404, + 223, + 419 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 404, + 223, + 419 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 423, + 474, + 450 + ], + "lines": [ + { + "bbox": [ + 135, + 423, + 474, + 450 + ], + "spans": [ + { + "bbox": [ + 135, + 423, + 474, + 450 + ], + "score": 0.94, + "content": "\\operatorname* { l i m } _ { \\lambda \\infty } \\mathrm { { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s u } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { d R ^ { 2 } } { n _ { 2 } } \\cdot \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { d ^ { 2 } } = \\frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } .", + "type": "interline_equation", + "image_path": "5664d9ead6bf3997e226343f81dcea72840c823e4ec5dae0639b613e39c20774.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 135, + 423, + 474, + 450 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 506, + 480 + ], + "lines": [ + { + "bbox": [ + 104, + 454, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 104, + 454, + 364, + 472 + ], + "score": 1.0, + "content": "It remains to show that the above quantity is a lower bound for", + "type": "text" + }, + { + "bbox": [ + 364, + 456, + 488, + 470 + ], + "score": 0.66, + "content": "\\mathrm { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 454, + 506, + 472 + ], + "score": 1.0, + "content": "fo r", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 468, + 243, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 123, + 482 + ], + "score": 1.0, + "content": "any", + "type": "text" + }, + { + "bbox": [ + 123, + 469, + 149, + 479 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 468, + 243, + 482 + ], + "score": 1.0, + "content": ", which is equivalent to", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 454, + 506, + 482 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 486, + 506, + 537 + ], + "lines": [ + { + "bbox": [ + 111, + 486, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 111, + 486, + 506, + 537 + ], + "score": 0.94, + "content": "\\frac { \\Xi \\bigg [ \\Big ( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\bigg ] } { \\Big ( \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ] \\Big ) ^ { 2 } } \\geq \\frac { d + n _ { 2 } + 1 } { d } , \\mathrm { f o r ~ a l l } \\lambda > 0 .", + "type": "interline_equation", + "image_path": "0885147a96023e13e09f9ec7cd88fc5f9a0909bcf71cbd9a641fa7328df5df9f.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 111, + 486, + 506, + 503.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 503.0, + 506, + 520.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 111, + 520.0, + 506, + 537.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 554, + 339, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 339, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 204, + 568 + ], + "score": 1.0, + "content": "We now prove (39). For", + "type": "text" + }, + { + "bbox": [ + 205, + 554, + 237, + 567 + ], + "score": 0.92, + "content": "i \\in [ n _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 553, + 339, + 568 + ], + "score": 1.0, + "content": ", define random variables", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 553, + 339, + 568 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 571, + 424, + 603 + ], + "lines": [ + { + "bbox": [ + 187, + 571, + 424, + 603 + ], + "spans": [ + { + "bbox": [ + 187, + 571, + 424, + 603 + ], + "score": 0.94, + "content": "X _ { i } : = \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\in [ 0 , 1 ] \\mathrm { a n d } Y _ { i } : = 1 - X _ { i } \\in [ 0 , 1 ] .", + "type": "interline_equation", + "image_path": "f76b9e2b6e6eba12986a7947285962d6049dd3d26516741b5a79ec41c808d7c9.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 571, + 424, + 587.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 187, + 587.0, + 424, + 603.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 608, + 307, + 620 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 308, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 308, + 621 + ], + "score": 1.0, + "content": "Then the left-hand side of (39) can be rewritten as", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 607, + 308, + 621 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 624, + 471, + 733 + ], + "lines": [ + { + "bbox": [ + 142, + 624, + 471, + 733 + ], + "spans": [ + { + "bbox": [ + 142, + 624, + 471, + 733 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\frac { \\mathbb { E } \\left[ \\left( d - n _ { 1 } + \\sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\left( d - n _ { 1 } + \\sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } ^ { 2 } \\right) \\right] } { \\left( \\mathbb { E } \\left[ d - n _ { 1 } + \\sum _ { i = 1 } ^ { n } X _ { i } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { \\mathbb { E } \\left[ \\left( d - \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \\right) ^ { 2 } + \\left( n _ { 2 } + 1 \\right) \\left( d - 2 \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } + \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } ^ { 2 } \\right) \\right] } { \\left( \\mathbb { E } \\left[ d - \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d - 2 ( d + n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } \\right] + \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { d ^ { 2 } - 2 d \\mathbb { E } \\left[ \\sum Y _ { i } \\right] + \\left( \\mathbb { E } \\left[ \\sum Y _ { i } \\right] \\right) ^ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "0258f8181380db316241ed1c03d0e3dc4aa5fa893a5fc8f24c4de36a8d8b3a4a.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 142, + 624, + 471, + 660.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 142, + 660.3333333333334, + 471, + 696.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 142, + 696.6666666666667, + 471, + 733.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 395, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 396, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 396, + 96 + ], + "score": 1.0, + "content": "By algebraic manipulation, inequality (39) is equivalent to showing that", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 97, + 408, + 128 + ], + "lines": [ + { + "bbox": [ + 203, + 97, + 408, + 128 + ], + "spans": [ + { + "bbox": [ + 203, + 97, + 408, + 128 + ], + "score": 0.93, + "content": "\\frac { \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { \\left( \\mathbb { E } [ \\sum Y _ { i } ] \\right) ^ { 2 } } \\geq \\frac { d + n _ { 2 } + 1 } { d } .", + "type": "interline_equation", + "image_path": "91585135229da573690bda916fa1a2f2d97a28baabe2a7368044d6aafa780434.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 97, + 408, + 112.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 203, + 112.5, + 408, + 128.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 131, + 389, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 389, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 140, + 146 + ], + "score": 1.0, + "content": "Clearly,", + "type": "text" + }, + { + "bbox": [ + 140, + 131, + 246, + 145 + ], + "score": 0.93, + "content": "\\mathbb { E } [ ( \\sum Y _ { i } ) ^ { 2 } ] \\ge ( \\mathbb { E } [ \\sum Y _ { i } ] ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 131, + 389, + 146 + ], + "score": 1.0, + "content": ". By Cauchy-Schwarz we also have", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 147, + 415, + 175 + ], + "lines": [ + { + "bbox": [ + 195, + 147, + 415, + 175 + ], + "spans": [ + { + "bbox": [ + 195, + 147, + 415, + 175 + ], + "score": 0.91, + "content": "\\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] \\geq \\frac { 1 } { n _ { 1 } } \\mathbb { E } \\left[ \\left( \\sum Y _ { i } \\right) ^ { 2 } \\right] \\geq \\frac { 1 } { n _ { 1 } } \\Big ( \\mathbb { E } \\left[ \\sum Y _ { i } \\right] \\Big ) ^ { 2 } .", + "type": "interline_equation", + "image_path": "7dbae1cb587a7e2666bbf139476e2f5d28a638c2a241f75903fd98359e3d09ec.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 195, + 147, + 415, + 175 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 178, + 183, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 183, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 183, + 190 + ], + "score": 1.0, + "content": "Therefore we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 190, + 468, + 221 + ], + "lines": [ + { + "bbox": [ + 142, + 190, + 468, + 221 + ], + "spans": [ + { + "bbox": [ + 142, + 190, + 468, + 221 + ], + "score": 0.92, + "content": "\\frac { \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { ( \\mathbb { E } [ \\sum Y _ { i } ] ) ^ { 2 } } \\geq 1 + \\frac { n _ { 2 } + 1 } { n _ { 1 } } \\geq 1 + \\frac { n _ { 2 } + 1 } { d } = \\frac { d + n _ { 2 } + 1 } { d } ,", + "type": "interline_equation", + "image_path": "fd38806f5a35c5a9720ab9b6674ed9310b6f01b034524fed09a702d6a2ab5919.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 142, + 190, + 468, + 200.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 142, + 200.33333333333334, + 468, + 210.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 142, + 210.66666666666669, + 468, + 221.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 420, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 420, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 206, + 238 + ], + "score": 1.0, + "content": "where we have used that", + "type": "text" + }, + { + "bbox": [ + 207, + 224, + 256, + 235 + ], + "score": 0.94, + "content": "n _ { 1 } \\leq n \\leq d", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 221, + 420, + 238 + ], + "score": 1.0, + "content": ". This shows (40) and consequently (39).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 106, + 270, + 416, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 416, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 416, + 282 + ], + "score": 1.0, + "content": "B.4 RATE OF THE TRAIN-TRAIN METHOD IN THE PROPORTIONAL LIMIT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 290, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 303 + ], + "score": 1.0, + "content": "Theorem 9 (Exact rates of the train-train method in the proportional limit). In the high-dimensional", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 302, + 495, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 169, + 315 + ], + "score": 1.0, + "content": "limiting regime", + "type": "text" + }, + { + "bbox": [ + 170, + 302, + 211, + 313 + ], + "score": 0.73, + "content": "d , n \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 302, + 215, + 315 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 216, + 302, + 254, + 314 + ], + "score": 0.76, + "content": "d / n \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 302, + 281, + 315 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 282, + 302, + 328, + 314 + ], + "score": 0.92, + "content": "\\gamma \\in ( 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 302, + 469, + 315 + ], + "score": 1.0, + "content": "is a fixed shape parameter, for any", + "type": "text" + }, + { + "bbox": [ + 469, + 302, + 495, + 312 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 317, + 506, + 355 + ], + "lines": [ + { + "bbox": [ + 138, + 317, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 138, + 317, + 506, + 355 + ], + "score": 0.5, + "content": "\\begin{array} { r l } & { \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } { \\mathrm { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r + \\sf t r } ( n ; \\lambda ) \\big ) = \\rho _ { \\lambda , \\gamma } R ^ { 2 } . } \\\\ & { \\qquad \\quad \\lambda , \\gamma = 4 \\gamma ^ { 2 } \\big [ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\big ] / ( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\big ( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\big ) ^ { 3 / 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "06301a5281d93f9622e89b842b57d12da190d5a9037292fd8c0ef1d5ebf77348.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 131, + 317, + 506, + 329.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 131, + 329.6666666666667, + 506, + 342.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 131, + 342.33333333333337, + 506, + 355.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 504, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 193, + 375 + ], + "score": 1.0, + "content": "Proof of Theorem 9", + "type": "text" + }, + { + "bbox": [ + 201, + 361, + 220, + 378 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 221, + 362, + 286, + 377 + ], + "score": 0.93, + "content": "\\widehat { \\pmb { \\Sigma } } _ { n } : = \\frac { 1 } { n } \\pmb { \\mathrm { X } } _ { t } \\pmb { \\mathrm { X } } _ { t } ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 361, + 506, + 378 + ], + "score": 1.0, + "content": "denote the sample covariance matrix of the inputs in a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 374, + 260, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 151, + 387 + ], + "score": 1.0, + "content": "single task", + "type": "text" + }, + { + "bbox": [ + 152, + 375, + 163, + 386 + ], + "score": 0.71, + "content": "\\mathbf { \\rho } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 374, + 260, + 387 + ], + "score": 1.0, + "content": ". By Lemma 5, we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 390, + 459, + 478 + ], + "lines": [ + { + "bbox": [ + 154, + 390, + 459, + 478 + ], + "spans": [ + { + "bbox": [ + 154, + 390, + 459, + 478 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } ( n ; \\lambda ) ) = R ^ { 2 } \\cdot \\frac { \\frac { 1 } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) ^ { 2 } / \\big ( \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) + \\lambda \\big ) ^ { 4 } \\right] } { \\left( \\frac { 1 } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) / \\big ( \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { = R ^ { 2 } \\cdot \\underbrace { \\frac { 1 } { d } \\mathbb { E } \\left[ \\mathrm { t r } \\left( ( \\widehat { \\pmb \\Sigma } _ { n } + \\lambda \\mathbf { I } _ { d } ) ^ { - 4 } \\widehat { \\pmb \\Sigma } _ { n } ^ { 2 } \\right) \\right] } _ { \\mathbf { I } _ { n , d } } / \\Bigg \\{ \\underbrace { \\frac { 1 } { d } \\mathbb { E } \\left[ \\mathrm { t r } \\left( ( \\widehat { \\pmb \\Sigma } _ { n } + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\widehat { \\pmb \\Sigma } _ { n } \\right) \\right] } _ { \\mathbf { I } _ { n , d } } } \\Bigg \\} ^ { 2 } . \\end{array}", + "type": "interline_equation", + "image_path": "2d740799e44e8bd37a61fd25adb958324c8fd5fa6a459a3c3ae21c048dd2c627.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 154, + 390, + 459, + 419.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 154, + 419.3333333333333, + 459, + 448.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 154, + 448.66666666666663, + 459, + 477.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 481, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 218, + 496 + ], + "score": 1.0, + "content": "We now evaluate quantities", + "type": "text" + }, + { + "bbox": [ + 218, + 482, + 236, + 494 + ], + "score": 0.91, + "content": "\\mathrm { I } _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 479, + 254, + 496 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 254, + 482, + 275, + 494 + ], + "score": 0.92, + "content": "\\Pi _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 479, + 407, + 496 + ], + "score": 1.0, + "content": "in the high-dimensional limit of", + "type": "text" + }, + { + "bbox": [ + 407, + 482, + 450, + 493 + ], + "score": 0.52, + "content": "d , n \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 479, + 455, + 496 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 455, + 482, + 505, + 494 + ], + "score": 0.79, + "content": "d / n \\to \\gamma \\in", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 492, + 491, + 509 + ], + "spans": [ + { + "bbox": [ + 107, + 495, + 135, + 507 + ], + "score": 0.91, + "content": "( 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 492, + 366, + 509 + ], + "score": 1.0, + "content": ". Consider the (slightly generalized) Stieltjes transform of", + "type": "text" + }, + { + "bbox": [ + 367, + 493, + 381, + 506 + ], + "score": 0.91, + "content": "\\widehat { \\Sigma } _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 492, + 441, + 509 + ], + "score": 1.0, + "content": "defined for all", + "type": "text" + }, + { + "bbox": [ + 441, + 495, + 486, + 506 + ], + "score": 0.91, + "content": "\\lambda _ { 1 } , \\lambda _ { 2 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 492, + 491, + 509 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 510, + 423, + 536 + ], + "lines": [ + { + "bbox": [ + 187, + 510, + 423, + 536 + ], + "spans": [ + { + "bbox": [ + 187, + 510, + 423, + 536 + ], + "score": 0.93, + "content": "s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) : = \\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Bigl [ \\mathrm { t r } \\Bigl ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Bigr ) \\Bigr ] .", + "type": "interline_equation", + "image_path": "99ab4a324fa75b38148ef6cdd8a08682515630a2132d1d56de440fd25bdbc49f.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 187, + 510, + 423, + 536 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 540, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 175, + 553 + ], + "score": 1.0, + "content": "As the entries of", + "type": "text" + }, + { + "bbox": [ + 176, + 541, + 189, + 551 + ], + "score": 0.9, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 540, + 226, + 553 + ], + "score": 1.0, + "content": "are i.i.d.", + "type": "text" + }, + { + "bbox": [ + 227, + 540, + 257, + 552 + ], + "score": 0.92, + "content": "{ \\mathsf { N } } ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 540, + 506, + 553 + ], + "score": 1.0, + "content": ", the above limiting Stieltjes transform is the Stieltjes form of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "the Marchenko-Pastur law, which has a closed form (see, e.g. (Dobriban et al., 2018, Equation (7)))", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 566, + 468, + 625 + ], + "lines": [ + { + "bbox": [ + 131, + 566, + 468, + 625 + ], + "spans": [ + { + "bbox": [ + 131, + 566, + 468, + 625 + ], + "score": 0.92, + "content": "\\begin{array} { c l } { { s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) = \\displaystyle \\lambda _ { 2 } ^ { - 1 } s ( \\lambda _ { 1 } / \\lambda _ { 2 } , 1 ) = \\displaystyle \\frac { 1 } { \\lambda _ { 2 } } \\cdot \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } / \\lambda _ { 2 } } } } \\\\ { { = \\displaystyle \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } } . } } \\end{array}", + "type": "interline_equation", + "image_path": "80f3bd441ec146dc23915c6ec3da59f7a2309a0b81cb5385fae1d2e7ce57c3c0.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 129, + 566, + 468, + 585.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 129, + 585.6666666666666, + 468, + 605.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 129, + 605.3333333333333, + 468, + 624.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 238, + 641 + ], + "score": 1.0, + "content": "Now observe that differentiating", + "type": "text" + }, + { + "bbox": [ + 238, + 628, + 276, + 640 + ], + "score": 0.93, + "content": "s ( \\lambda _ { 1 } , \\lambda _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 627, + 338, + 641 + ], + "score": 1.0, + "content": "yields quantity", + "type": "text" + }, + { + "bbox": [ + 339, + 628, + 347, + 638 + ], + "score": 0.64, + "content": "\\mathrm { I I }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 627, + 505, + 641 + ], + "score": 1.0, + "content": "(known as the derivative trick of Stielt-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 639, + 239, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 639, + 239, + 651 + ], + "score": 1.0, + "content": "jes transforms). Indeed, we have", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 653, + 453, + 736 + ], + "lines": [ + { + "bbox": [ + 158, + 653, + 453, + 736 + ], + "spans": [ + { + "bbox": [ + 158, + 653, + 453, + 736 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle - \\frac { d } { d \\lambda _ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) = - \\frac { d } { d \\lambda _ { 2 } } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Big ) \\Big ] } \\\\ { = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ - \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Big ) \\Big ] } \\\\ { = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 2 } \\widehat { \\pmb { \\Sigma } } _ { n } \\Big ) \\Big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "d5e2934daa7f9c6c01bc385420087d856280ec8c1fe37a9dffd6c992f819df64.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 158, + 653, + 453, + 680.6666666666666 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 158, + 680.6666666666666, + 453, + 708.3333333333333 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 158, + 708.3333333333333, + 453, + 735.9999999999999 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "page_idx": 24, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 16, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 224, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 496, + 226, + 504, + 234 + ], + "spans": [ + { + "bbox": [ + 496, + 226, + 504, + 234 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 395, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 396, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 396, + 96 + ], + "score": 1.0, + "content": "By algebraic manipulation, inequality (39) is equivalent to showing that", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 396, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 97, + 408, + 128 + ], + "lines": [ + { + "bbox": [ + 203, + 97, + 408, + 128 + ], + "spans": [ + { + "bbox": [ + 203, + 97, + 408, + 128 + ], + "score": 0.93, + "content": "\\frac { \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { \\left( \\mathbb { E } [ \\sum Y _ { i } ] \\right) ^ { 2 } } \\geq \\frac { d + n _ { 2 } + 1 } { d } .", + "type": "interline_equation", + "image_path": "91585135229da573690bda916fa1a2f2d97a28baabe2a7368044d6aafa780434.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 97, + 408, + 112.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 203, + 112.5, + 408, + 128.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 131, + 389, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 389, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 140, + 146 + ], + "score": 1.0, + "content": "Clearly,", + "type": "text" + }, + { + "bbox": [ + 140, + 131, + 246, + 145 + ], + "score": 0.93, + "content": "\\mathbb { E } [ ( \\sum Y _ { i } ) ^ { 2 } ] \\ge ( \\mathbb { E } [ \\sum Y _ { i } ] ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 131, + 389, + 146 + ], + "score": 1.0, + "content": ". By Cauchy-Schwarz we also have", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 131, + 389, + 146 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 147, + 415, + 175 + ], + "lines": [ + { + "bbox": [ + 195, + 147, + 415, + 175 + ], + "spans": [ + { + "bbox": [ + 195, + 147, + 415, + 175 + ], + "score": 0.91, + "content": "\\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] \\geq \\frac { 1 } { n _ { 1 } } \\mathbb { E } \\left[ \\left( \\sum Y _ { i } \\right) ^ { 2 } \\right] \\geq \\frac { 1 } { n _ { 1 } } \\Big ( \\mathbb { E } \\left[ \\sum Y _ { i } \\right] \\Big ) ^ { 2 } .", + "type": "interline_equation", + "image_path": "7dbae1cb587a7e2666bbf139476e2f5d28a638c2a241f75903fd98359e3d09ec.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 195, + 147, + 415, + 175 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 178, + 183, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 183, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 183, + 190 + ], + "score": 1.0, + "content": "Therefore we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 176, + 183, + 190 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 142, + 190, + 468, + 221 + ], + "lines": [ + { + "bbox": [ + 142, + 190, + 468, + 221 + ], + "spans": [ + { + "bbox": [ + 142, + 190, + 468, + 221 + ], + "score": 0.92, + "content": "\\frac { \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { ( \\mathbb { E } [ \\sum Y _ { i } ] ) ^ { 2 } } \\geq 1 + \\frac { n _ { 2 } + 1 } { n _ { 1 } } \\geq 1 + \\frac { n _ { 2 } + 1 } { d } = \\frac { d + n _ { 2 } + 1 } { d } ,", + "type": "interline_equation", + "image_path": "fd38806f5a35c5a9720ab9b6674ed9310b6f01b034524fed09a702d6a2ab5919.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 142, + 190, + 468, + 200.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 142, + 200.33333333333334, + 468, + 210.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 142, + 210.66666666666669, + 468, + 221.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 420, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 420, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 206, + 238 + ], + "score": 1.0, + "content": "where we have used that", + "type": "text" + }, + { + "bbox": [ + 207, + 224, + 256, + 235 + ], + "score": 0.94, + "content": "n _ { 1 } \\leq n \\leq d", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 221, + 420, + 238 + ], + "score": 1.0, + "content": ". This shows (40) and consequently (39).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 221, + 420, + 238 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 270, + 416, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 416, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 416, + 282 + ], + "score": 1.0, + "content": "B.4 RATE OF THE TRAIN-TRAIN METHOD IN THE PROPORTIONAL LIMIT", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 290, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 303 + ], + "score": 1.0, + "content": "Theorem 9 (Exact rates of the train-train method in the proportional limit). In the high-dimensional", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 302, + 495, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 169, + 315 + ], + "score": 1.0, + "content": "limiting regime", + "type": "text" + }, + { + "bbox": [ + 170, + 302, + 211, + 313 + ], + "score": 0.73, + "content": "d , n \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 302, + 215, + 315 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 216, + 302, + 254, + 314 + ], + "score": 0.76, + "content": "d / n \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 302, + 281, + 315 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 282, + 302, + 328, + 314 + ], + "score": 0.92, + "content": "\\gamma \\in ( 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 302, + 469, + 315 + ], + "score": 1.0, + "content": "is a fixed shape parameter, for any", + "type": "text" + }, + { + "bbox": [ + 469, + 302, + 495, + 312 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 290, + 505, + 315 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 317, + 506, + 355 + ], + "lines": [ + { + "bbox": [ + 138, + 317, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 138, + 317, + 506, + 355 + ], + "score": 0.5, + "content": "\\begin{array} { r l } & { \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } { \\mathrm { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r + \\sf t r } ( n ; \\lambda ) \\big ) = \\rho _ { \\lambda , \\gamma } R ^ { 2 } . } \\\\ & { \\qquad \\quad \\lambda , \\gamma = 4 \\gamma ^ { 2 } \\big [ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\big ] / ( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\big ( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\big ) ^ { 3 / 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "06301a5281d93f9622e89b842b57d12da190d5a9037292fd8c0ef1d5ebf77348.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 131, + 317, + 506, + 329.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 131, + 329.6666666666667, + 506, + 342.33333333333337 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 131, + 342.33333333333337, + 506, + 355.00000000000006 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 504, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 193, + 375 + ], + "score": 1.0, + "content": "Proof of Theorem 9", + "type": "text" + }, + { + "bbox": [ + 201, + 361, + 220, + 378 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 221, + 362, + 286, + 377 + ], + "score": 0.93, + "content": "\\widehat { \\pmb { \\Sigma } } _ { n } : = \\frac { 1 } { n } \\pmb { \\mathrm { X } } _ { t } \\pmb { \\mathrm { X } } _ { t } ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 361, + 506, + 378 + ], + "score": 1.0, + "content": "denote the sample covariance matrix of the inputs in a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 374, + 260, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 151, + 387 + ], + "score": 1.0, + "content": "single task", + "type": "text" + }, + { + "bbox": [ + 152, + 375, + 163, + 386 + ], + "score": 0.71, + "content": "\\mathbf { \\rho } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 374, + 260, + 387 + ], + "score": 1.0, + "content": ". By Lemma 5, we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 361, + 506, + 387 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 390, + 459, + 478 + ], + "lines": [ + { + "bbox": [ + 154, + 390, + 459, + 478 + ], + "spans": [ + { + "bbox": [ + 154, + 390, + 459, + 478 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } ( n ; \\lambda ) ) = R ^ { 2 } \\cdot \\frac { \\frac { 1 } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) ^ { 2 } / \\big ( \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) + \\lambda \\big ) ^ { 4 } \\right] } { \\left( \\frac { 1 } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) / \\big ( \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { = R ^ { 2 } \\cdot \\underbrace { \\frac { 1 } { d } \\mathbb { E } \\left[ \\mathrm { t r } \\left( ( \\widehat { \\pmb \\Sigma } _ { n } + \\lambda \\mathbf { I } _ { d } ) ^ { - 4 } \\widehat { \\pmb \\Sigma } _ { n } ^ { 2 } \\right) \\right] } _ { \\mathbf { I } _ { n , d } } / \\Bigg \\{ \\underbrace { \\frac { 1 } { d } \\mathbb { E } \\left[ \\mathrm { t r } \\left( ( \\widehat { \\pmb \\Sigma } _ { n } + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\widehat { \\pmb \\Sigma } _ { n } \\right) \\right] } _ { \\mathbf { I } _ { n , d } } } \\Bigg \\} ^ { 2 } . \\end{array}", + "type": "interline_equation", + "image_path": "2d740799e44e8bd37a61fd25adb958324c8fd5fa6a459a3c3ae21c048dd2c627.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 154, + 390, + 459, + 419.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 154, + 419.3333333333333, + 459, + 448.66666666666663 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 154, + 448.66666666666663, + 459, + 477.99999999999994 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 481, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 218, + 496 + ], + "score": 1.0, + "content": "We now evaluate quantities", + "type": "text" + }, + { + "bbox": [ + 218, + 482, + 236, + 494 + ], + "score": 0.91, + "content": "\\mathrm { I } _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 479, + 254, + 496 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 254, + 482, + 275, + 494 + ], + "score": 0.92, + "content": "\\Pi _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 479, + 407, + 496 + ], + "score": 1.0, + "content": "in the high-dimensional limit of", + "type": "text" + }, + { + "bbox": [ + 407, + 482, + 450, + 493 + ], + "score": 0.52, + "content": "d , n \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 479, + 455, + 496 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 455, + 482, + 505, + 494 + ], + "score": 0.79, + "content": "d / n \\to \\gamma \\in", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 492, + 491, + 509 + ], + "spans": [ + { + "bbox": [ + 107, + 495, + 135, + 507 + ], + "score": 0.91, + "content": "( 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 492, + 366, + 509 + ], + "score": 1.0, + "content": ". Consider the (slightly generalized) Stieltjes transform of", + "type": "text" + }, + { + "bbox": [ + 367, + 493, + 381, + 506 + ], + "score": 0.91, + "content": "\\widehat { \\Sigma } _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 492, + 441, + 509 + ], + "score": 1.0, + "content": "defined for all", + "type": "text" + }, + { + "bbox": [ + 441, + 495, + 486, + 506 + ], + "score": 0.91, + "content": "\\lambda _ { 1 } , \\lambda _ { 2 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 492, + 491, + 509 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 479, + 505, + 509 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 510, + 423, + 536 + ], + "lines": [ + { + "bbox": [ + 187, + 510, + 423, + 536 + ], + "spans": [ + { + "bbox": [ + 187, + 510, + 423, + 536 + ], + "score": 0.93, + "content": "s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) : = \\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Bigl [ \\mathrm { t r } \\Bigl ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Bigr ) \\Bigr ] .", + "type": "interline_equation", + "image_path": "99ab4a324fa75b38148ef6cdd8a08682515630a2132d1d56de440fd25bdbc49f.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 187, + 510, + 423, + 536 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 540, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 175, + 553 + ], + "score": 1.0, + "content": "As the entries of", + "type": "text" + }, + { + "bbox": [ + 176, + 541, + 189, + 551 + ], + "score": 0.9, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 540, + 226, + 553 + ], + "score": 1.0, + "content": "are i.i.d.", + "type": "text" + }, + { + "bbox": [ + 227, + 540, + 257, + 552 + ], + "score": 0.92, + "content": "{ \\mathsf { N } } ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 540, + 506, + 553 + ], + "score": 1.0, + "content": ", the above limiting Stieltjes transform is the Stieltjes form of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "the Marchenko-Pastur law, which has a closed form (see, e.g. (Dobriban et al., 2018, Equation (7)))", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 540, + 506, + 564 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 129, + 566, + 468, + 625 + ], + "lines": [ + { + "bbox": [ + 131, + 566, + 468, + 625 + ], + "spans": [ + { + "bbox": [ + 131, + 566, + 468, + 625 + ], + "score": 0.92, + "content": "\\begin{array} { c l } { { s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) = \\displaystyle \\lambda _ { 2 } ^ { - 1 } s ( \\lambda _ { 1 } / \\lambda _ { 2 } , 1 ) = \\displaystyle \\frac { 1 } { \\lambda _ { 2 } } \\cdot \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } / \\lambda _ { 2 } } } } \\\\ { { = \\displaystyle \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } } . } } \\end{array}", + "type": "interline_equation", + "image_path": "80f3bd441ec146dc23915c6ec3da59f7a2309a0b81cb5385fae1d2e7ce57c3c0.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 129, + 566, + 468, + 585.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 129, + 585.6666666666666, + 468, + 605.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 129, + 605.3333333333333, + 468, + 624.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 238, + 641 + ], + "score": 1.0, + "content": "Now observe that differentiating", + "type": "text" + }, + { + "bbox": [ + 238, + 628, + 276, + 640 + ], + "score": 0.93, + "content": "s ( \\lambda _ { 1 } , \\lambda _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 627, + 338, + 641 + ], + "score": 1.0, + "content": "yields quantity", + "type": "text" + }, + { + "bbox": [ + 339, + 628, + 347, + 638 + ], + "score": 0.64, + "content": "\\mathrm { I I }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 627, + 505, + 641 + ], + "score": 1.0, + "content": "(known as the derivative trick of Stielt-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 639, + 239, + 651 + ], + "spans": [ + { + "bbox": [ + 104, + 639, + 239, + 651 + ], + "score": 1.0, + "content": "jes transforms). Indeed, we have", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 104, + 627, + 505, + 651 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 653, + 453, + 736 + ], + "lines": [ + { + "bbox": [ + 158, + 653, + 453, + 736 + ], + "spans": [ + { + "bbox": [ + 158, + 653, + 453, + 736 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle - \\frac { d } { d \\lambda _ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) = - \\frac { d } { d \\lambda _ { 2 } } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Big ) \\Big ] } \\\\ { = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ - \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Big ) \\Big ] } \\\\ { = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 2 } \\widehat { \\pmb { \\Sigma } } _ { n } \\Big ) \\Big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "d5e2934daa7f9c6c01bc385420087d856280ec8c1fe37a9dffd6c992f819df64.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 158, + 653, + 453, + 680.6666666666666 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 158, + 680.6666666666666, + 453, + 708.3333333333333 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 158, + 708.3333333333333, + 453, + 735.9999999999999 + ], + "spans": [], + "index": 33 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "(Above, the exchange of differentiation and limit is due to the uniform convergence of the deriva-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 91, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 91, + 213, + 108 + ], + "score": 1.0, + "content": "tives, which holds at any", + "type": "text" + }, + { + "bbox": [ + 213, + 94, + 263, + 105 + ], + "score": 0.93, + "content": "\\lambda _ { 1 } , \\lambda _ { 2 } ~ > ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 91, + 506, + 108 + ], + "score": 1.0, + "content": ". See Appendix B.4.1 for a detailed justification.) Taking", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 218, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 137, + 115 + ], + "score": 0.92, + "content": "\\lambda _ { 1 } = \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 104, + 155, + 118 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 155, + 105, + 185, + 115 + ], + "score": 0.92, + "content": "\\lambda _ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 104, + 218, + 118 + ], + "score": 1.0, + "content": ", we get", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 120, + 503, + 146 + ], + "lines": [ + { + "bbox": [ + 111, + 120, + 503, + 146 + ], + "spans": [ + { + "bbox": [ + 111, + 120, + 503, + 146 + ], + "score": 0.9, + "content": "\\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\Pi _ { n , d } = \\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda \\mathbf { I } _ { d } + \\widehat { \\boldsymbol { \\Sigma } } _ { n } ) ^ { - 2 } \\widehat { \\boldsymbol { \\Sigma } } _ { n } \\Big ) \\Big ] = - \\frac { d } { d \\lambda _ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) | _ { \\lambda _ { 1 } = \\lambda , \\lambda _ { 2 } = 1 } .", + "type": "interline_equation", + "image_path": "ac31176b8dcc912b9fd7d8db4dbab0016fe99b744c944841d92d4f9fb71e2daf.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 111, + 120, + 503, + 146 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 150, + 181, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 149, + 181, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 181, + 163 + ], + "score": 1.0, + "content": "Similarly we have", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 166, + 514, + 194 + ], + "lines": [ + { + "bbox": [ + 111, + 166, + 514, + 194 + ], + "spans": [ + { + "bbox": [ + 111, + 166, + 514, + 194 + ], + "score": 0.86, + "content": "\\operatorname* { l i m } _ { \\substack { , n \\infty , d / n \\gamma } } \\mathrm { I } _ { n , d } = \\operatorname* { l i m } _ { \\substack { d , n \\infty , d / n \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda \\mathrm { I } _ { d } + \\widehat { \\Sigma } _ { n } ) ^ { - 4 } \\widehat { \\Sigma } _ { n } ^ { 2 } \\Big ) \\Big ] = - \\frac { 1 } { 6 } \\frac { d } { d \\lambda _ { 1 } } \\frac { d ^ { 2 } } { d \\lambda _ { 2 } ^ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) | _ { \\lambda _ { 1 } = \\lambda , \\lambda _ { 2 } = 1 }", + "type": "interline_equation", + "image_path": "607c5f73190f357bf095acb54ee799eb657a3ae66f403c6f075709538bc1eb56.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 111, + 166, + 514, + 175.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 175.33333333333334, + 514, + 184.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 111, + 184.66666666666669, + 514, + 194.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 196, + 475, + 209 + ], + "lines": [ + { + "bbox": [ + 104, + 195, + 476, + 211 + ], + "spans": [ + { + "bbox": [ + 104, + 195, + 476, + 211 + ], + "score": 1.0, + "content": "Evaluating the right-hand sides from differentiating the closed-form expression (42), we get", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 212, + 420, + 272 + ], + "lines": [ + { + "bbox": [ + 192, + 212, + 420, + 272 + ], + "spans": [ + { + "bbox": [ + 192, + 212, + 420, + 272 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle \\operatorname* { l i m } _ { { d , n \\to \\infty , d / n \\to \\gamma } } \\mathrm { I } _ { n , d } = \\frac { 1 } { 2 \\gamma } \\cdot \\frac { \\lambda + 1 + \\gamma } { \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } - \\frac { 1 } { 2 \\gamma } , } \\\\ { \\displaystyle \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\mathrm { I I } _ { n , d } = \\frac { ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 5 / 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "6e54a3a3f32ab0a78687dede1a18a7bb8e413b683adb840495b086fd35938645.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 212, + 420, + 227.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 192, + 227.0, + 420, + 242.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 192, + 242.0, + 420, + 257.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 192, + 257.0, + 420, + 272.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 274, + 251, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 274, + 252, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 252, + 287 + ], + "score": 1.0, + "content": "Substituting back to (41) yields that", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 290, + 458, + 396 + ], + "lines": [ + { + "bbox": [ + 155, + 290, + 458, + 396 + ], + "spans": [ + { + "bbox": [ + 155, + 290, + 458, + 396 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\underset { d , n \\to \\infty , d / n \\to \\gamma } { \\operatorname* { l i m } } \\mathrm { A s y m M S E } ( \\widehat { \\ w } _ { 0 , T } ^ { \\mathrm { t r } + \\mathrm { t r } } ( n ; \\lambda ) ) = \\underset { d , n \\to \\infty , d / n \\to \\gamma } { \\operatorname* { l i m } } R ^ { 2 } \\cdot \\mathrm { I } _ { n , d } / \\mathrm { I } _ { n , d } ^ { 2 } } \\\\ & { = R ^ { 2 } \\cdot \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 5 / 2 } \\cdot \\left( \\frac { \\lambda + 1 + \\gamma } { \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } - 1 \\right) ^ { 2 } } } \\\\ & { = R ^ { 2 } \\cdot \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 3 / 2 } \\cdot \\left( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } \\right) ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "22a5baab0651d692d0538f94eabc93cabaa077693f39065f793976056f4cb889.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 155, + 290, + 458, + 325.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 155, + 325.3333333333333, + 458, + 360.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 155, + 360.66666666666663, + 458, + 395.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 228, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 228, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 228, + 411 + ], + "score": 1.0, + "content": "This proves the desired result.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 106, + 444, + 384, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 444, + 385, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 385, + 455 + ], + "score": 1.0, + "content": "B.4.1 INTERCHANGING DERIVATIVE AND EXPECTATION / LIMIT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 463, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "Here we rigorously establish the interchange of the derivative and the expectation / limit used in (43).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 232, + 488 + ], + "score": 1.0, + "content": "For convenience of notation let", + "type": "text" + }, + { + "bbox": [ + 232, + 475, + 320, + 488 + ], + "score": 0.92, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 475, + 488, + 488 + ], + "score": 1.0, + "content": "denote the empirical covariance matrix of", + "type": "text" + }, + { + "bbox": [ + 488, + 479, + 501, + 487 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 475, + 505, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 487, + 195, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 195, + 499 + ], + "score": 1.0, + "content": "We wish to show that", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 501, + 499, + 528 + ], + "lines": [ + { + "bbox": [ + 111, + 501, + 499, + 528 + ], + "spans": [ + { + "bbox": [ + 111, + 501, + 499, + 528 + ], + "score": 0.94, + "content": "\\frac { d } { d \\lambda _ { 2 } } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\bigg ] .", + "type": "interline_equation", + "image_path": "d014ebf0b8ebd8a1efeef2fff1e4fa883334ab04c2dec8cc6e43afb110dde078.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 501, + 499, + 510.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 510.0, + 499, + 519.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 519.0, + 499, + 528.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 504, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "This involves the interchange of derivative and limit, and then the interchange of derivative and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 542, + 158, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 158, + 554 + ], + "score": 1.0, + "content": "expectation.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 105, + 565, + 453, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 453, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 425, + 579 + ], + "score": 1.0, + "content": "Interchange of derivative and expectation First, we show that for any fixed", + "type": "text" + }, + { + "bbox": [ + 425, + 567, + 448, + 578 + ], + "score": 0.92, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 563, + 453, + 579 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 582, + 433, + 609 + ], + "lines": [ + { + "bbox": [ + 177, + 582, + 433, + 609 + ], + "spans": [ + { + "bbox": [ + 177, + 582, + 433, + 609 + ], + "score": 0.93, + "content": "\\frac { d } { d \\lambda _ { 2 } } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\mathbb { E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\bigg ] .", + "type": "interline_equation", + "image_path": "58ee449ca56a76fd1f3a5333e2dcf2828fd411afd525fe0617b33a5edef013f7.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 177, + 582, + 433, + 591.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 177, + 591.0, + 433, + 600.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 177, + 600.0, + 433, + 609.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 266, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 266, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 266, + 625 + ], + "score": 1.0, + "content": "By definition of the derivative, we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 627, + 495, + 661 + ], + "lines": [ + { + "bbox": [ + 115, + 627, + 495, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 627, + 495, + 661 + ], + "score": 0.94, + "content": "\\frac { d } { d \\lambda _ { 2 } } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\operatorname* { l i m } _ { t \\to 0 } \\mathbb { E } \\left[ \\frac { \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } + t \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) - \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) } { t } \\right] .", + "type": "interline_equation", + "image_path": "ad9b8bb6f15f860171cd2e8afff64714fb5f921fe5a4e2e03d809118bb6ff8f1.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 115, + 627, + 495, + 638.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 115, + 638.3333333333334, + 495, + 649.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 115, + 649.6666666666667, + 495, + 661.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 139, + 678 + ], + "score": 1.0, + "content": "For any", + "type": "text" + }, + { + "bbox": [ + 139, + 667, + 167, + 676 + ], + "score": 0.84, + "content": "\\mathbf A \\succ \\mathbf 0", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 664, + 220, + 678 + ], + "score": 1.0, + "content": ", the function", + "type": "text" + }, + { + "bbox": [ + 221, + 667, + 303, + 678 + ], + "score": 0.9, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 664, + 432, + 678 + ], + "score": 1.0, + "content": "is continuously differentiable at", + "type": "text" + }, + { + "bbox": [ + 432, + 668, + 454, + 676 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 664, + 505, + 678 + ], + "score": 1.0, + "content": "with deriva-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 675, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 124, + 689 + ], + "score": 1.0, + "content": "tive", + "type": "text" + }, + { + "bbox": [ + 124, + 678, + 175, + 689 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 675, + 315, + 689 + ], + "score": 1.0, + "content": ", and thus locally Lipschitz around", + "type": "text" + }, + { + "bbox": [ + 315, + 680, + 337, + 687 + ], + "score": 0.91, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 675, + 435, + 689 + ], + "score": 1.0, + "content": "with Lipschitz constant", + "type": "text" + }, + { + "bbox": [ + 435, + 678, + 501, + 689 + ], + "score": 0.9, + "content": "\\left| \\operatorname { t r } ( \\mathbf { A } ^ { - 2 } \\mathbf { B } ) \\right| + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 675, + 505, + 689 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 284, + 700 + ], + "score": 1.0, + "content": "Applying this in the above expectation with", + "type": "text" + }, + { + "bbox": [ + 285, + 690, + 390, + 699 + ], + "score": 0.91, + "content": "\\mathbf { A } = \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } \\succeq \\lambda _ { 1 } \\mathbf { I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 686, + 409, + 700 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 410, + 690, + 440, + 698 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 686, + 505, + 700 + ], + "score": 1.0, + "content": ", we get that for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 698, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 178, + 711 + ], + "score": 1.0, + "content": "sufficiently small", + "type": "text" + }, + { + "bbox": [ + 179, + 700, + 188, + 711 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 698, + 415, + 711 + ], + "score": 1.0, + "content": ", the fraction inside the expectation is upper bounded by", + "type": "text" + }, + { + "bbox": [ + 416, + 699, + 504, + 711 + ], + "score": 0.91, + "content": "\\vert \\mathrm { t r } ( \\lambda _ { 1 } ^ { - 2 } \\pmb { \\Sigma } ) \\vert + 1 < \\infty", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 170, + 721 + ], + "score": 1.0, + "content": "uniformly over", + "type": "text" + }, + { + "bbox": [ + 171, + 713, + 174, + 720 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 710, + 505, + 721 + ], + "score": 1.0, + "content": ". Thus by the Dominated Convergence Theorem, the limit can be passed into the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 720, + 343, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 343, + 733 + ], + "score": 1.0, + "content": "expectation, which yields the expectation of the derivative.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + } + ], + "page_idx": 25, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 398, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 496, + 401, + 504, + 409 + ], + "spans": [ + { + "bbox": [ + 496, + 401, + 504, + 409 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "(Above, the exchange of differentiation and limit is due to the uniform convergence of the deriva-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 91, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 91, + 213, + 108 + ], + "score": 1.0, + "content": "tives, which holds at any", + "type": "text" + }, + { + "bbox": [ + 213, + 94, + 263, + 105 + ], + "score": 0.93, + "content": "\\lambda _ { 1 } , \\lambda _ { 2 } ~ > ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 91, + 506, + 108 + ], + "score": 1.0, + "content": ". See Appendix B.4.1 for a detailed justification.) Taking", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 218, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 137, + 115 + ], + "score": 0.92, + "content": "\\lambda _ { 1 } = \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 104, + 155, + 118 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 155, + 105, + 185, + 115 + ], + "score": 0.92, + "content": "\\lambda _ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 104, + 218, + 118 + ], + "score": 1.0, + "content": ", we get", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 104, + 81, + 506, + 118 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 120, + 503, + 146 + ], + "lines": [ + { + "bbox": [ + 111, + 120, + 503, + 146 + ], + "spans": [ + { + "bbox": [ + 111, + 120, + 503, + 146 + ], + "score": 0.9, + "content": "\\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\Pi _ { n , d } = \\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda \\mathbf { I } _ { d } + \\widehat { \\boldsymbol { \\Sigma } } _ { n } ) ^ { - 2 } \\widehat { \\boldsymbol { \\Sigma } } _ { n } \\Big ) \\Big ] = - \\frac { d } { d \\lambda _ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) | _ { \\lambda _ { 1 } = \\lambda , \\lambda _ { 2 } = 1 } .", + "type": "interline_equation", + "image_path": "ac31176b8dcc912b9fd7d8db4dbab0016fe99b744c944841d92d4f9fb71e2daf.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 111, + 120, + 503, + 146 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 150, + 181, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 149, + 181, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 181, + 163 + ], + "score": 1.0, + "content": "Similarly we have", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 149, + 181, + 163 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 166, + 514, + 194 + ], + "lines": [ + { + "bbox": [ + 111, + 166, + 514, + 194 + ], + "spans": [ + { + "bbox": [ + 111, + 166, + 514, + 194 + ], + "score": 0.86, + "content": "\\operatorname* { l i m } _ { \\substack { , n \\infty , d / n \\gamma } } \\mathrm { I } _ { n , d } = \\operatorname* { l i m } _ { \\substack { d , n \\infty , d / n \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda \\mathrm { I } _ { d } + \\widehat { \\Sigma } _ { n } ) ^ { - 4 } \\widehat { \\Sigma } _ { n } ^ { 2 } \\Big ) \\Big ] = - \\frac { 1 } { 6 } \\frac { d } { d \\lambda _ { 1 } } \\frac { d ^ { 2 } } { d \\lambda _ { 2 } ^ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) | _ { \\lambda _ { 1 } = \\lambda , \\lambda _ { 2 } = 1 }", + "type": "interline_equation", + "image_path": "607c5f73190f357bf095acb54ee799eb657a3ae66f403c6f075709538bc1eb56.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 111, + 166, + 514, + 175.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 175.33333333333334, + 514, + 184.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 111, + 184.66666666666669, + 514, + 194.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 196, + 475, + 209 + ], + "lines": [ + { + "bbox": [ + 104, + 195, + 476, + 211 + ], + "spans": [ + { + "bbox": [ + 104, + 195, + 476, + 211 + ], + "score": 1.0, + "content": "Evaluating the right-hand sides from differentiating the closed-form expression (42), we get", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 195, + 476, + 211 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 212, + 420, + 272 + ], + "lines": [ + { + "bbox": [ + 192, + 212, + 420, + 272 + ], + "spans": [ + { + "bbox": [ + 192, + 212, + 420, + 272 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle \\operatorname* { l i m } _ { { d , n \\to \\infty , d / n \\to \\gamma } } \\mathrm { I } _ { n , d } = \\frac { 1 } { 2 \\gamma } \\cdot \\frac { \\lambda + 1 + \\gamma } { \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } - \\frac { 1 } { 2 \\gamma } , } \\\\ { \\displaystyle \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\mathrm { I I } _ { n , d } = \\frac { ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 5 / 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "6e54a3a3f32ab0a78687dede1a18a7bb8e413b683adb840495b086fd35938645.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 212, + 420, + 227.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 192, + 227.0, + 420, + 242.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 192, + 242.0, + 420, + 257.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 192, + 257.0, + 420, + 272.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 274, + 251, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 274, + 252, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 252, + 287 + ], + "score": 1.0, + "content": "Substituting back to (41) yields that", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 274, + 252, + 287 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 290, + 458, + 396 + ], + "lines": [ + { + "bbox": [ + 155, + 290, + 458, + 396 + ], + "spans": [ + { + "bbox": [ + 155, + 290, + 458, + 396 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\underset { d , n \\to \\infty , d / n \\to \\gamma } { \\operatorname* { l i m } } \\mathrm { A s y m M S E } ( \\widehat { \\ w } _ { 0 , T } ^ { \\mathrm { t r } + \\mathrm { t r } } ( n ; \\lambda ) ) = \\underset { d , n \\to \\infty , d / n \\to \\gamma } { \\operatorname* { l i m } } R ^ { 2 } \\cdot \\mathrm { I } _ { n , d } / \\mathrm { I } _ { n , d } ^ { 2 } } \\\\ & { = R ^ { 2 } \\cdot \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 5 / 2 } \\cdot \\left( \\frac { \\lambda + 1 + \\gamma } { \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } - 1 \\right) ^ { 2 } } } \\\\ & { = R ^ { 2 } \\cdot \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 3 / 2 } \\cdot \\left( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } \\right) ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "22a5baab0651d692d0538f94eabc93cabaa077693f39065f793976056f4cb889.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 155, + 290, + 458, + 325.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 155, + 325.3333333333333, + 458, + 360.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 155, + 360.66666666666663, + 458, + 395.99999999999994 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 228, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 228, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 228, + 411 + ], + "score": 1.0, + "content": "This proves the desired result.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 398, + 228, + 411 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 444, + 384, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 444, + 385, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 385, + 455 + ], + "score": 1.0, + "content": "B.4.1 INTERCHANGING DERIVATIVE AND EXPECTATION / LIMIT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 463, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "Here we rigorously establish the interchange of the derivative and the expectation / limit used in (43).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 232, + 488 + ], + "score": 1.0, + "content": "For convenience of notation let", + "type": "text" + }, + { + "bbox": [ + 232, + 475, + 320, + 488 + ], + "score": 0.92, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 475, + 488, + 488 + ], + "score": 1.0, + "content": "denote the empirical covariance matrix of", + "type": "text" + }, + { + "bbox": [ + 488, + 479, + 501, + 487 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 475, + 505, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 487, + 195, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 195, + 499 + ], + "score": 1.0, + "content": "We wish to show that", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 462, + 505, + 499 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 501, + 499, + 528 + ], + "lines": [ + { + "bbox": [ + 111, + 501, + 499, + 528 + ], + "spans": [ + { + "bbox": [ + 111, + 501, + 499, + 528 + ], + "score": 0.94, + "content": "\\frac { d } { d \\lambda _ { 2 } } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\bigg ] .", + "type": "interline_equation", + "image_path": "d014ebf0b8ebd8a1efeef2fff1e4fa883334ab04c2dec8cc6e43afb110dde078.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 501, + 499, + 510.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 510.0, + 499, + 519.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 519.0, + 499, + 528.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 504, + 554 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 543 + ], + "score": 1.0, + "content": "This involves the interchange of derivative and limit, and then the interchange of derivative and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 542, + 158, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 158, + 554 + ], + "score": 1.0, + "content": "expectation.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 531, + 506, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 565, + 453, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 453, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 425, + 579 + ], + "score": 1.0, + "content": "Interchange of derivative and expectation First, we show that for any fixed", + "type": "text" + }, + { + "bbox": [ + 425, + 567, + 448, + 578 + ], + "score": 0.92, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 563, + 453, + 579 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 563, + 453, + 579 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 582, + 433, + 609 + ], + "lines": [ + { + "bbox": [ + 177, + 582, + 433, + 609 + ], + "spans": [ + { + "bbox": [ + 177, + 582, + 433, + 609 + ], + "score": 0.93, + "content": "\\frac { d } { d \\lambda _ { 2 } } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\mathbb { E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\bigg ] .", + "type": "interline_equation", + "image_path": "58ee449ca56a76fd1f3a5333e2dcf2828fd411afd525fe0617b33a5edef013f7.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 177, + 582, + 433, + 591.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 177, + 591.0, + 433, + 600.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 177, + 600.0, + 433, + 609.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 266, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 266, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 266, + 625 + ], + "score": 1.0, + "content": "By definition of the derivative, we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 612, + 266, + 625 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 627, + 495, + 661 + ], + "lines": [ + { + "bbox": [ + 115, + 627, + 495, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 627, + 495, + 661 + ], + "score": 0.94, + "content": "\\frac { d } { d \\lambda _ { 2 } } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\operatorname* { l i m } _ { t \\to 0 } \\mathbb { E } \\left[ \\frac { \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } + t \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) - \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) } { t } \\right] .", + "type": "interline_equation", + "image_path": "ad9b8bb6f15f860171cd2e8afff64714fb5f921fe5a4e2e03d809118bb6ff8f1.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 115, + 627, + 495, + 638.3333333333334 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 115, + 638.3333333333334, + 495, + 649.6666666666667 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 115, + 649.6666666666667, + 495, + 661.0000000000001 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 139, + 678 + ], + "score": 1.0, + "content": "For any", + "type": "text" + }, + { + "bbox": [ + 139, + 667, + 167, + 676 + ], + "score": 0.84, + "content": "\\mathbf A \\succ \\mathbf 0", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 664, + 220, + 678 + ], + "score": 1.0, + "content": ", the function", + "type": "text" + }, + { + "bbox": [ + 221, + 667, + 303, + 678 + ], + "score": 0.9, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 664, + 432, + 678 + ], + "score": 1.0, + "content": "is continuously differentiable at", + "type": "text" + }, + { + "bbox": [ + 432, + 668, + 454, + 676 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 664, + 505, + 678 + ], + "score": 1.0, + "content": "with deriva-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 675, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 124, + 689 + ], + "score": 1.0, + "content": "tive", + "type": "text" + }, + { + "bbox": [ + 124, + 678, + 175, + 689 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 675, + 315, + 689 + ], + "score": 1.0, + "content": ", and thus locally Lipschitz around", + "type": "text" + }, + { + "bbox": [ + 315, + 680, + 337, + 687 + ], + "score": 0.91, + "content": "t = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 675, + 435, + 689 + ], + "score": 1.0, + "content": "with Lipschitz constant", + "type": "text" + }, + { + "bbox": [ + 435, + 678, + 501, + 689 + ], + "score": 0.9, + "content": "\\left| \\operatorname { t r } ( \\mathbf { A } ^ { - 2 } \\mathbf { B } ) \\right| + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 675, + 505, + 689 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 284, + 700 + ], + "score": 1.0, + "content": "Applying this in the above expectation with", + "type": "text" + }, + { + "bbox": [ + 285, + 690, + 390, + 699 + ], + "score": 0.91, + "content": "\\mathbf { A } = \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } \\succeq \\lambda _ { 1 } \\mathbf { I } _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 686, + 409, + 700 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 410, + 690, + 440, + 698 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 686, + 505, + 700 + ], + "score": 1.0, + "content": ", we get that for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 698, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 178, + 711 + ], + "score": 1.0, + "content": "sufficiently small", + "type": "text" + }, + { + "bbox": [ + 179, + 700, + 188, + 711 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 698, + 415, + 711 + ], + "score": 1.0, + "content": ", the fraction inside the expectation is upper bounded by", + "type": "text" + }, + { + "bbox": [ + 416, + 699, + 504, + 711 + ], + "score": 0.91, + "content": "\\vert \\mathrm { t r } ( \\lambda _ { 1 } ^ { - 2 } \\pmb { \\Sigma } ) \\vert + 1 < \\infty", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 170, + 721 + ], + "score": 1.0, + "content": "uniformly over", + "type": "text" + }, + { + "bbox": [ + 171, + 713, + 174, + 720 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 710, + 505, + 721 + ], + "score": 1.0, + "content": ". Thus by the Dominated Convergence Theorem, the limit can be passed into the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 720, + 343, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 343, + 733 + ], + "score": 1.0, + "content": "expectation, which yields the expectation of the derivative.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 664, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 296, + 97 + ], + "score": 1.0, + "content": "Interchange of derivative and limit Define", + "type": "text" + }, + { + "bbox": [ + 297, + 82, + 457, + 96 + ], + "score": 0.93, + "content": "f _ { n , d } ( \\lambda _ { 2 } ) : = \\frac { 1 } { d } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ]", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 79, + 506, + 97 + ], + "score": 1.0, + "content": ". It suffices", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 158, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 158, + 105 + ], + "score": 1.0, + "content": "to show that", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 107, + 416, + 133 + ], + "lines": [ + { + "bbox": [ + 194, + 107, + 416, + 133 + ], + "spans": [ + { + "bbox": [ + 194, + 107, + 416, + 133 + ], + "score": 0.91, + "content": "\\frac { d } { d \\lambda _ { 2 } } \\operatorname * { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } f _ { n , d } ( \\lambda _ { 2 } ) = \\operatorname * { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } f _ { n , d } ^ { \\prime } ( \\lambda _ { 2 } ) ,", + "type": "interline_equation", + "image_path": "4dc38d6520fadbf0ebafb99fd04418f03afdcedea05139dd1680049b4d9dd56b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 194, + 107, + 416, + 133 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 133, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 135, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 135, + 150 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 152, + 463, + 179 + ], + "lines": [ + { + "bbox": [ + 148, + 152, + 463, + 179 + ], + "spans": [ + { + "bbox": [ + 148, + 152, + 463, + 179 + ], + "score": 0.94, + "content": "f _ { n , d } ^ { \\prime } ( \\lambda _ { 2 } ) = { \\mathbb E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\frac { 1 } { d } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\Sigma ) ^ { - 1 } ) \\bigg ] = - \\frac { 1 } { d } { \\mathbb E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\Sigma ) ^ { - 2 } \\Sigma \\big ) \\big ]", + "type": "interline_equation", + "image_path": "76701ec300f4e140534b2744e9bbcd0a524702198138146b34070a37b075df8c.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 148, + 152, + 463, + 179 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 245, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 246, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 246, + 196 + ], + "score": 1.0, + "content": "by the result of the preceding part.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 200, + 506, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 120, + 214 + ], + "score": 1.0, + "content": "As", + "type": "text" + }, + { + "bbox": [ + 121, + 202, + 209, + 213 + ], + "score": 0.93, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 199, + 272, + 214 + ], + "score": 1.0, + "content": "pointwise over", + "type": "text" + }, + { + "bbox": [ + 272, + 203, + 283, + 212 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 199, + 448, + 214 + ], + "score": 1.0, + "content": "by properties of the Wishart matrix (Bai", + "type": "text" + }, + { + "bbox": [ + 448, + 203, + 456, + 210 + ], + "score": 0.56, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 199, + 506, + 214 + ], + "score": 1.0, + "content": "Silverstein,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 212, + 504, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 218, + 228 + ], + "score": 1.0, + "content": "2010) and each individual", + "type": "text" + }, + { + "bbox": [ + 218, + 216, + 235, + 227 + ], + "score": 0.94, + "content": "f _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 212, + 468, + 228 + ], + "score": 1.0, + "content": "is differentiable, it suffices to show that the derivatives", + "type": "text" + }, + { + "bbox": [ + 468, + 213, + 504, + 228 + ], + "score": 0.94, + "content": "f _ { n , d } ^ { \\prime } ( \\widetilde { \\lambda } _ { 2 } )", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 226, + 451, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 205, + 244 + ], + "score": 1.0, + "content": "converges uniformly for", + "type": "text" + }, + { + "bbox": [ + 206, + 228, + 216, + 240 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 226, + 304, + 244 + ], + "score": 1.0, + "content": "in a neighborhood of", + "type": "text" + }, + { + "bbox": [ + 304, + 231, + 315, + 240 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 226, + 420, + 244 + ], + "score": 1.0, + "content": ". Observe that can rewrite", + "type": "text" + }, + { + "bbox": [ + 420, + 230, + 437, + 243 + ], + "score": 0.92, + "content": "f _ { n , d } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 226, + 451, + 244 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 247, + 386, + 268 + ], + "lines": [ + { + "bbox": [ + 224, + 247, + 386, + 268 + ], + "spans": [ + { + "bbox": [ + 224, + 247, + 386, + 268 + ], + "score": 0.93, + "content": "-", + "type": "interline_equation", + "image_path": "38ea93a0502eebc694a7641095170fcf8ff1202fec0d8ee9e59ed30cf4d4295c.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 224, + 247, + 386, + 268 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 381, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 381, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 134, + 285 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 275, + 152, + 285 + ], + "score": 0.93, + "content": "\\hat { \\mu } _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 271, + 352, + 285 + ], + "score": 1.0, + "content": "is the empirical distribution of the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 352, + 275, + 360, + 282 + ], + "score": 0.89, + "content": "\\Sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 271, + 381, + 285 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 289, + 403, + 317 + ], + "lines": [ + { + "bbox": [ + 208, + 289, + 403, + 317 + ], + "spans": [ + { + "bbox": [ + 208, + 289, + 403, + 317 + ], + "score": 0.94, + "content": "\\_", + "type": "interline_equation", + "image_path": "a3c786cf6c6908cd46d5d45e052c668d97fa71bfa0b121847df7c91d85214181.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 208, + 289, + 403, + 317 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 321, + 506, + 372 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 162, + 334 + ], + "score": 1.0, + "content": "Therefore, as", + "type": "text" + }, + { + "bbox": [ + 162, + 324, + 181, + 334 + ], + "score": 0.93, + "content": "\\hat { \\mu } _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "converges weakly to the Marchenko-Pastur distribution with probability one and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 334, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 107, + 340, + 120, + 349 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 334, + 225, + 349 + ], + "score": 1.0, + "content": "is uniformly bounded for", + "type": "text" + }, + { + "bbox": [ + 226, + 335, + 236, + 347 + ], + "score": 0.92, + "content": "\\widetilde { \\lambda } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 334, + 348, + 349 + ], + "score": 1.0, + "content": "in a small neighborhood of", + "type": "text" + }, + { + "bbox": [ + 348, + 338, + 358, + 347 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 334, + 409, + 349 + ], + "score": 1.0, + "content": ", we get that", + "type": "text" + }, + { + "bbox": [ + 410, + 335, + 444, + 349 + ], + "score": 0.95, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 334, + 506, + 349 + ], + "score": 1.0, + "content": "does converge", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 348, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 238, + 362 + ], + "score": 1.0, + "content": "uniformly to the expectation of", + "type": "text" + }, + { + "bbox": [ + 238, + 350, + 266, + 362 + ], + "score": 0.93, + "content": "g _ { \\widetilde { \\lambda } _ { 2 } } ^ { } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 348, + 506, + 362 + ], + "score": 1.0, + "content": "under the Marchenko-Pastur distribution. This shows the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 360, + 279, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 279, + 371 + ], + "score": 1.0, + "content": "edesired interchange of derivative and limit.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 385, + 230, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 231, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 231, + 397 + ], + "score": 1.0, + "content": "B.5 PROOF OF THEOREM 4", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 258, + 418 + ], + "score": 1.0, + "content": "Throughout this proof we assume that", + "type": "text" + }, + { + "bbox": [ + 259, + 405, + 290, + 416 + ], + "score": 0.9, + "content": "R ^ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 404, + 505, + 418 + ], + "score": 1.0, + "content": "without loss of generality (as all the rates are constant", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 416, + 178, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 157, + 428 + ], + "score": 1.0, + "content": "multiples of", + "type": "text" + }, + { + "bbox": [ + 157, + 417, + 170, + 426 + ], + "score": 0.85, + "content": "R ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 416, + 178, + 428 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 439, + 338, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 339, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 210, + 455 + ], + "score": 1.0, + "content": "Part I: Optimal rate for", + "type": "text" + }, + { + "bbox": [ + 210, + 440, + 232, + 450 + ], + "score": 0.81, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 437, + 339, + 455 + ], + "score": 1.0, + "content": "By Theorem 9, we have", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 455, + 452, + 526 + ], + "lines": [ + { + "bbox": [ + 159, + 455, + 452, + 526 + ], + "spans": [ + { + "bbox": [ + 159, + 455, + 452, + 526 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\underset { \\lambda > 0 } { \\operatorname* { i n f } } \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\overset { \\mathrm { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\right) } { \\operatorname* { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\right) } } \\\\ & { = \\underset { \\lambda > 0 } { \\operatorname* { i n f } } \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { \\displaystyle \\left( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } \\right) ^ { 2 } \\cdot \\left( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\right) ^ { 3 / 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "e3b6e28b9173f4275a26b3ff67a1ea776975094abf1d59aacf29996b681180ff.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 159, + 455, + 452, + 478.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 159, + 478.6666666666667, + 452, + 502.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 159, + 502.33333333333337, + 452, + 526.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 180, + 543 + ], + "score": 1.0, + "content": "In order to bound", + "type": "text" + }, + { + "bbox": [ + 181, + 530, + 240, + 542 + ], + "score": 0.93, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 529, + 295, + 543 + ], + "score": 1.0, + "content": ", picking any", + "type": "text" + }, + { + "bbox": [ + 295, + 530, + 336, + 542 + ], + "score": 0.93, + "content": "\\lambda = \\lambda ( \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 529, + 362, + 543 + ], + "score": 1.0, + "content": "gives", + "type": "text" + }, + { + "bbox": [ + 362, + 530, + 406, + 542 + ], + "score": 0.93, + "content": "f ( \\lambda ( \\gamma ) , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "as a valid upper bound,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 542, + 490, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 208, + 554 + ], + "score": 1.0, + "content": "and our goal is to choose", + "type": "text" + }, + { + "bbox": [ + 208, + 543, + 216, + 551 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 542, + 490, + 554 + ], + "score": 1.0, + "content": "that yields a bound as tight as possible. Here we consider the choice", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 557, + 478, + 571 + ], + "lines": [ + { + "bbox": [ + 133, + 557, + 478, + 571 + ], + "spans": [ + { + "bbox": [ + 133, + 557, + 478, + 571 + ], + "score": 0.89, + "content": "\\lambda = \\lambda ( \\gamma ) = \\operatorname* { m a x } \\left\\{ 1 - \\gamma / 2 , \\gamma - 1 / 2 \\right\\} = ( 1 - \\gamma / 2 ) \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + ( \\gamma - 1 / 2 ) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\}", + "type": "interline_equation", + "image_path": "e3da7ab3417940df3ee8bcaf7e577b2bf8535bba6f7b0e5a08f9a48aa2208984.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 133, + 557, + 478, + 571 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 575, + 320, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 319, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 319, + 588 + ], + "score": 1.0, + "content": "which we now show yields the claimed upper bound.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 426, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 428, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 140, + 614 + ], + "score": 1.0, + "content": "Case 1:", + "type": "text" + }, + { + "bbox": [ + 141, + 599, + 166, + 611 + ], + "score": 0.87, + "content": "\\gamma \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 596, + 225, + 614 + ], + "score": 1.0, + "content": "Substituting", + "type": "text" + }, + { + "bbox": [ + 226, + 599, + 279, + 611 + ], + "score": 0.92, + "content": "\\lambda = 1 - \\gamma / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 596, + 298, + 614 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 298, + 599, + 329, + 611 + ], + "score": 0.93, + "content": "f ( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 596, + 428, + 614 + ], + "score": 1.0, + "content": "and simplifying, we get", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 615, + 395, + 643 + ], + "lines": [ + { + "bbox": [ + 216, + 615, + 395, + 643 + ], + "spans": [ + { + "bbox": [ + 216, + 615, + 395, + 643 + ], + "score": 0.94, + "content": "f ( 1 - \\gamma / 2 , \\gamma ) = \\frac { 2 ( \\gamma ^ { 2 } - 3 \\gamma + 4 ) } { ( 2 - \\gamma / 2 ) ^ { 3 } } = : g _ { 1 } ( \\gamma ) .", + "type": "interline_equation", + "image_path": "5f1aa8f3da8b8c46e2f9edc73bb1c8f0b1259c9ea047e638ae9f16fc2bd23a42.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 216, + 615, + 395, + 643 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 646, + 415, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 416, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 140, + 662 + ], + "score": 1.0, + "content": "Clearly,", + "type": "text" + }, + { + "bbox": [ + 140, + 647, + 182, + 659 + ], + "score": 0.94, + "content": "g _ { 1 } ( 0 ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 645, + 200, + 662 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 200, + 647, + 261, + 659 + ], + "score": 0.92, + "content": "g _ { 1 } ( 1 ) = 3 2 / 2 7", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 645, + 356, + 662 + ], + "score": 1.0, + "content": ". Further differentiating", + "type": "text" + }, + { + "bbox": [ + 356, + 649, + 367, + 659 + ], + "score": 0.86, + "content": "g _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 645, + 416, + 662 + ], + "score": 1.0, + "content": "twice gives", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 663, + 398, + 691 + ], + "lines": [ + { + "bbox": [ + 213, + 663, + 398, + 691 + ], + "spans": [ + { + "bbox": [ + 213, + 663, + 398, + 691 + ], + "score": 0.94, + "content": "g _ { 1 } ^ { \\prime \\prime } ( \\gamma ) = \\frac { \\gamma ^ { 2 } + 7 \\gamma + 4 } { ( 2 - \\gamma / 2 ) ^ { 5 } } > 0 ~ \\mathrm { f o r ~ a l l } \\gamma \\in [ 0 , 1 ] .", + "type": "interline_equation", + "image_path": "aa25c46f2dccd863d4156a4e3c362080c404b92978c5ca02531422f5785582ef.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 213, + 663, + 398, + 691 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 695, + 336, + 708 + ], + "lines": [ + { + "bbox": [ + 106, + 695, + 337, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 129, + 709 + ], + "score": 1.0, + "content": "Thus", + "type": "text" + }, + { + "bbox": [ + 129, + 698, + 139, + 708 + ], + "score": 0.85, + "content": "g _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 695, + 193, + 709 + ], + "score": 1.0, + "content": "is convex on", + "type": "text" + }, + { + "bbox": [ + 194, + 696, + 214, + 708 + ], + "score": 0.72, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 695, + 337, + 709 + ], + "score": 1.0, + "content": ", from which we conclude that", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 712, + 404, + 736 + ], + "lines": [ + { + "bbox": [ + 207, + 712, + 404, + 736 + ], + "spans": [ + { + "bbox": [ + 207, + 712, + 404, + 736 + ], + "score": 0.88, + "content": "g _ { 1 } ( \\gamma ) \\leq ( 1 - \\gamma ) \\cdot g _ { 1 } ( 0 ) + \\gamma \\cdot g _ { 1 } ( 1 ) = 1 + \\frac { 5 } { 2 7 } \\gamma .", + "type": "interline_equation", + "image_path": "ed062d93d9e491dbba9a3cc94a8bd9f2a8de058220e4bad1231928bd844c19c5.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 207, + 712, + 404, + 736 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 26, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 296, + 97 + ], + "score": 1.0, + "content": "Interchange of derivative and limit Define", + "type": "text" + }, + { + "bbox": [ + 297, + 82, + 457, + 96 + ], + "score": 0.93, + "content": "f _ { n , d } ( \\lambda _ { 2 } ) : = \\frac { 1 } { d } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ]", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 79, + 506, + 97 + ], + "score": 1.0, + "content": ". It suffices", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 158, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 158, + 105 + ], + "score": 1.0, + "content": "to show that", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 104, + 79, + 506, + 105 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 107, + 416, + 133 + ], + "lines": [ + { + "bbox": [ + 194, + 107, + 416, + 133 + ], + "spans": [ + { + "bbox": [ + 194, + 107, + 416, + 133 + ], + "score": 0.91, + "content": "\\frac { d } { d \\lambda _ { 2 } } \\operatorname * { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } f _ { n , d } ( \\lambda _ { 2 } ) = \\operatorname * { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } f _ { n , d } ^ { \\prime } ( \\lambda _ { 2 } ) ,", + "type": "interline_equation", + "image_path": "4dc38d6520fadbf0ebafb99fd04418f03afdcedea05139dd1680049b4d9dd56b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 194, + 107, + 416, + 133 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 133, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 135, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 135, + 150 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 137, + 135, + 150 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 152, + 463, + 179 + ], + "lines": [ + { + "bbox": [ + 148, + 152, + 463, + 179 + ], + "spans": [ + { + "bbox": [ + 148, + 152, + 463, + 179 + ], + "score": 0.94, + "content": "f _ { n , d } ^ { \\prime } ( \\lambda _ { 2 } ) = { \\mathbb E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\frac { 1 } { d } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\Sigma ) ^ { - 1 } ) \\bigg ] = - \\frac { 1 } { d } { \\mathbb E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\Sigma ) ^ { - 2 } \\Sigma \\big ) \\big ]", + "type": "interline_equation", + "image_path": "76701ec300f4e140534b2744e9bbcd0a524702198138146b34070a37b075df8c.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 148, + 152, + 463, + 179 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 245, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 246, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 246, + 196 + ], + "score": 1.0, + "content": "by the result of the preceding part.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 182, + 246, + 196 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 200, + 506, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 120, + 214 + ], + "score": 1.0, + "content": "As", + "type": "text" + }, + { + "bbox": [ + 121, + 202, + 209, + 213 + ], + "score": 0.93, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 199, + 272, + 214 + ], + "score": 1.0, + "content": "pointwise over", + "type": "text" + }, + { + "bbox": [ + 272, + 203, + 283, + 212 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 199, + 448, + 214 + ], + "score": 1.0, + "content": "by properties of the Wishart matrix (Bai", + "type": "text" + }, + { + "bbox": [ + 448, + 203, + 456, + 210 + ], + "score": 0.56, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 199, + 506, + 214 + ], + "score": 1.0, + "content": "Silverstein,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 212, + 504, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 218, + 228 + ], + "score": 1.0, + "content": "2010) and each individual", + "type": "text" + }, + { + "bbox": [ + 218, + 216, + 235, + 227 + ], + "score": 0.94, + "content": "f _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 212, + 468, + 228 + ], + "score": 1.0, + "content": "is differentiable, it suffices to show that the derivatives", + "type": "text" + }, + { + "bbox": [ + 468, + 213, + 504, + 228 + ], + "score": 0.94, + "content": "f _ { n , d } ^ { \\prime } ( \\widetilde { \\lambda } _ { 2 } )", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 226, + 451, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 205, + 244 + ], + "score": 1.0, + "content": "converges uniformly for", + "type": "text" + }, + { + "bbox": [ + 206, + 228, + 216, + 240 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 226, + 304, + 244 + ], + "score": 1.0, + "content": "in a neighborhood of", + "type": "text" + }, + { + "bbox": [ + 304, + 231, + 315, + 240 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 226, + 420, + 244 + ], + "score": 1.0, + "content": ". Observe that can rewrite", + "type": "text" + }, + { + "bbox": [ + 420, + 230, + 437, + 243 + ], + "score": 0.92, + "content": "f _ { n , d } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 226, + 451, + 244 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 199, + 506, + 244 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 247, + 386, + 268 + ], + "lines": [ + { + "bbox": [ + 224, + 247, + 386, + 268 + ], + "spans": [ + { + "bbox": [ + 224, + 247, + 386, + 268 + ], + "score": 0.93, + "content": "-", + "type": "interline_equation", + "image_path": "38ea93a0502eebc694a7641095170fcf8ff1202fec0d8ee9e59ed30cf4d4295c.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 224, + 247, + 386, + 268 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 381, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 381, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 134, + 285 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 275, + 152, + 285 + ], + "score": 0.93, + "content": "\\hat { \\mu } _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 271, + 352, + 285 + ], + "score": 1.0, + "content": "is the empirical distribution of the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 352, + 275, + 360, + 282 + ], + "score": 0.89, + "content": "\\Sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 271, + 381, + 285 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 271, + 381, + 285 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 289, + 403, + 317 + ], + "lines": [ + { + "bbox": [ + 208, + 289, + 403, + 317 + ], + "spans": [ + { + "bbox": [ + 208, + 289, + 403, + 317 + ], + "score": 0.94, + "content": "\\_", + "type": "interline_equation", + "image_path": "a3c786cf6c6908cd46d5d45e052c668d97fa71bfa0b121847df7c91d85214181.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 208, + 289, + 403, + 317 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 321, + 506, + 372 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 162, + 334 + ], + "score": 1.0, + "content": "Therefore, as", + "type": "text" + }, + { + "bbox": [ + 162, + 324, + 181, + 334 + ], + "score": 0.93, + "content": "\\hat { \\mu } _ { n , d }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "converges weakly to the Marchenko-Pastur distribution with probability one and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 334, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 107, + 340, + 120, + 349 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 334, + 225, + 349 + ], + "score": 1.0, + "content": "is uniformly bounded for", + "type": "text" + }, + { + "bbox": [ + 226, + 335, + 236, + 347 + ], + "score": 0.92, + "content": "\\widetilde { \\lambda } _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 334, + 348, + 349 + ], + "score": 1.0, + "content": "in a small neighborhood of", + "type": "text" + }, + { + "bbox": [ + 348, + 338, + 358, + 347 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 334, + 409, + 349 + ], + "score": 1.0, + "content": ", we get that", + "type": "text" + }, + { + "bbox": [ + 410, + 335, + 444, + 349 + ], + "score": 0.95, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 334, + 506, + 349 + ], + "score": 1.0, + "content": "does converge", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 348, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 238, + 362 + ], + "score": 1.0, + "content": "uniformly to the expectation of", + "type": "text" + }, + { + "bbox": [ + 238, + 350, + 266, + 362 + ], + "score": 0.93, + "content": "g _ { \\widetilde { \\lambda } _ { 2 } } ^ { } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 348, + 506, + 362 + ], + "score": 1.0, + "content": "under the Marchenko-Pastur distribution. This shows the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 360, + 279, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 279, + 371 + ], + "score": 1.0, + "content": "edesired interchange of derivative and limit.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 320, + 506, + 371 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 385, + 230, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 231, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 231, + 397 + ], + "score": 1.0, + "content": "B.5 PROOF OF THEOREM 4", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 258, + 418 + ], + "score": 1.0, + "content": "Throughout this proof we assume that", + "type": "text" + }, + { + "bbox": [ + 259, + 405, + 290, + 416 + ], + "score": 0.9, + "content": "R ^ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 404, + 505, + 418 + ], + "score": 1.0, + "content": "without loss of generality (as all the rates are constant", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 416, + 178, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 157, + 428 + ], + "score": 1.0, + "content": "multiples of", + "type": "text" + }, + { + "bbox": [ + 157, + 417, + 170, + 426 + ], + "score": 0.85, + "content": "R ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 416, + 178, + 428 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 404, + 505, + 428 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 439, + 338, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 339, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 210, + 455 + ], + "score": 1.0, + "content": "Part I: Optimal rate for", + "type": "text" + }, + { + "bbox": [ + 210, + 440, + 232, + 450 + ], + "score": 0.81, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 437, + 339, + 455 + ], + "score": 1.0, + "content": "By Theorem 9, we have", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 437, + 339, + 455 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 455, + 452, + 526 + ], + "lines": [ + { + "bbox": [ + 159, + 455, + 452, + 526 + ], + "spans": [ + { + "bbox": [ + 159, + 455, + 452, + 526 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\underset { \\lambda > 0 } { \\operatorname* { i n f } } \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\overset { \\mathrm { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\right) } { \\operatorname* { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\right) } } \\\\ & { = \\underset { \\lambda > 0 } { \\operatorname* { i n f } } \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { \\displaystyle \\left( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } \\right) ^ { 2 } \\cdot \\left( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\right) ^ { 3 / 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "e3b6e28b9173f4275a26b3ff67a1ea776975094abf1d59aacf29996b681180ff.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 159, + 455, + 452, + 478.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 159, + 478.6666666666667, + 452, + 502.33333333333337 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 159, + 502.33333333333337, + 452, + 526.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 180, + 543 + ], + "score": 1.0, + "content": "In order to bound", + "type": "text" + }, + { + "bbox": [ + 181, + 530, + 240, + 542 + ], + "score": 0.93, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 529, + 295, + 543 + ], + "score": 1.0, + "content": ", picking any", + "type": "text" + }, + { + "bbox": [ + 295, + 530, + 336, + 542 + ], + "score": 0.93, + "content": "\\lambda = \\lambda ( \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 529, + 362, + 543 + ], + "score": 1.0, + "content": "gives", + "type": "text" + }, + { + "bbox": [ + 362, + 530, + 406, + 542 + ], + "score": 0.93, + "content": "f ( \\lambda ( \\gamma ) , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 529, + 505, + 543 + ], + "score": 1.0, + "content": "as a valid upper bound,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 542, + 490, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 208, + 554 + ], + "score": 1.0, + "content": "and our goal is to choose", + "type": "text" + }, + { + "bbox": [ + 208, + 543, + 216, + 551 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 542, + 490, + 554 + ], + "score": 1.0, + "content": "that yields a bound as tight as possible. Here we consider the choice", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 529, + 505, + 554 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 557, + 478, + 571 + ], + "lines": [ + { + "bbox": [ + 133, + 557, + 478, + 571 + ], + "spans": [ + { + "bbox": [ + 133, + 557, + 478, + 571 + ], + "score": 0.89, + "content": "\\lambda = \\lambda ( \\gamma ) = \\operatorname* { m a x } \\left\\{ 1 - \\gamma / 2 , \\gamma - 1 / 2 \\right\\} = ( 1 - \\gamma / 2 ) \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + ( \\gamma - 1 / 2 ) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\}", + "type": "interline_equation", + "image_path": "e3da7ab3417940df3ee8bcaf7e577b2bf8535bba6f7b0e5a08f9a48aa2208984.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 133, + 557, + 478, + 571 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 575, + 320, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 575, + 319, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 319, + 588 + ], + "score": 1.0, + "content": "which we now show yields the claimed upper bound.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 575, + 319, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 426, + 612 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 428, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 140, + 614 + ], + "score": 1.0, + "content": "Case 1:", + "type": "text" + }, + { + "bbox": [ + 141, + 599, + 166, + 611 + ], + "score": 0.87, + "content": "\\gamma \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 596, + 225, + 614 + ], + "score": 1.0, + "content": "Substituting", + "type": "text" + }, + { + "bbox": [ + 226, + 599, + 279, + 611 + ], + "score": 0.92, + "content": "\\lambda = 1 - \\gamma / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 596, + 298, + 614 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 298, + 599, + 329, + 611 + ], + "score": 0.93, + "content": "f ( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 596, + 428, + 614 + ], + "score": 1.0, + "content": "and simplifying, we get", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 596, + 428, + 614 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 615, + 395, + 643 + ], + "lines": [ + { + "bbox": [ + 216, + 615, + 395, + 643 + ], + "spans": [ + { + "bbox": [ + 216, + 615, + 395, + 643 + ], + "score": 0.94, + "content": "f ( 1 - \\gamma / 2 , \\gamma ) = \\frac { 2 ( \\gamma ^ { 2 } - 3 \\gamma + 4 ) } { ( 2 - \\gamma / 2 ) ^ { 3 } } = : g _ { 1 } ( \\gamma ) .", + "type": "interline_equation", + "image_path": "5f1aa8f3da8b8c46e2f9edc73bb1c8f0b1259c9ea047e638ae9f16fc2bd23a42.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 216, + 615, + 395, + 643 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 646, + 415, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 416, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 140, + 662 + ], + "score": 1.0, + "content": "Clearly,", + "type": "text" + }, + { + "bbox": [ + 140, + 647, + 182, + 659 + ], + "score": 0.94, + "content": "g _ { 1 } ( 0 ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 645, + 200, + 662 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 200, + 647, + 261, + 659 + ], + "score": 0.92, + "content": "g _ { 1 } ( 1 ) = 3 2 / 2 7", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 645, + 356, + 662 + ], + "score": 1.0, + "content": ". Further differentiating", + "type": "text" + }, + { + "bbox": [ + 356, + 649, + 367, + 659 + ], + "score": 0.86, + "content": "g _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 645, + 416, + 662 + ], + "score": 1.0, + "content": "twice gives", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 645, + 416, + 662 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 663, + 398, + 691 + ], + "lines": [ + { + "bbox": [ + 213, + 663, + 398, + 691 + ], + "spans": [ + { + "bbox": [ + 213, + 663, + 398, + 691 + ], + "score": 0.94, + "content": "g _ { 1 } ^ { \\prime \\prime } ( \\gamma ) = \\frac { \\gamma ^ { 2 } + 7 \\gamma + 4 } { ( 2 - \\gamma / 2 ) ^ { 5 } } > 0 ~ \\mathrm { f o r ~ a l l } \\gamma \\in [ 0 , 1 ] .", + "type": "interline_equation", + "image_path": "aa25c46f2dccd863d4156a4e3c362080c404b92978c5ca02531422f5785582ef.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 213, + 663, + 398, + 691 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 695, + 336, + 708 + ], + "lines": [ + { + "bbox": [ + 106, + 695, + 337, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 129, + 709 + ], + "score": 1.0, + "content": "Thus", + "type": "text" + }, + { + "bbox": [ + 129, + 698, + 139, + 708 + ], + "score": 0.85, + "content": "g _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 695, + 193, + 709 + ], + "score": 1.0, + "content": "is convex on", + "type": "text" + }, + { + "bbox": [ + 194, + 696, + 214, + 708 + ], + "score": 0.72, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 695, + 337, + 709 + ], + "score": 1.0, + "content": ", from which we conclude that", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 695, + 337, + 709 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 712, + 404, + 736 + ], + "lines": [ + { + "bbox": [ + 207, + 712, + 404, + 736 + ], + "spans": [ + { + "bbox": [ + 207, + 712, + 404, + 736 + ], + "score": 0.88, + "content": "g _ { 1 } ( \\gamma ) \\leq ( 1 - \\gamma ) \\cdot g _ { 1 } ( 0 ) + \\gamma \\cdot g _ { 1 } ( 1 ) = 1 + \\frac { 5 } { 2 7 } \\gamma .", + "type": "interline_equation", + "image_path": "ed062d93d9e491dbba9a3cc94a8bd9f2a8de058220e4bad1231928bd844c19c5.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 207, + 712, + 404, + 736 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 427, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 428, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 140, + 97 + ], + "score": 1.0, + "content": "Case 2:", + "type": "text" + }, + { + "bbox": [ + 141, + 83, + 167, + 94 + ], + "score": 0.88, + "content": "\\gamma > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 80, + 225, + 97 + ], + "score": 1.0, + "content": "Substituting", + "type": "text" + }, + { + "bbox": [ + 226, + 82, + 279, + 95 + ], + "score": 0.92, + "content": "\\lambda = \\gamma - 1 / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 80, + 298, + 97 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 298, + 82, + 329, + 95 + ], + "score": 0.93, + "content": "f ( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 80, + 428, + 97 + ], + "score": 1.0, + "content": "and simplifying, we get", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 99, + 402, + 127 + ], + "lines": [ + { + "bbox": [ + 208, + 99, + 402, + 127 + ], + "spans": [ + { + "bbox": [ + 208, + 99, + 402, + 127 + ], + "score": 0.94, + "content": "f ( \\gamma - 1 / 2 , \\gamma ) = \\frac { 2 \\gamma ^ { 2 } ( 4 \\gamma ^ { 2 } - 3 \\gamma + 1 ) } { ( 2 \\gamma - 1 / 2 ) ^ { 3 } } = : g _ { 2 } ( \\gamma ) .", + "type": "interline_equation", + "image_path": "7bb007fd9b273ae1df3ea20d471eadf46648c51793f50817b0b30fd75aeba590.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 208, + 99, + 402, + 127 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 131, + 370, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 130, + 370, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 143, + 146 + ], + "score": 1.0, + "content": "We have", + "type": "text" + }, + { + "bbox": [ + 143, + 132, + 240, + 145 + ], + "score": 0.94, + "content": "g _ { 2 } ( 1 ) = g _ { 1 } ( 1 ) = 3 2 / 2 7 .", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 130, + 335, + 146 + ], + "score": 1.0, + "content": ". Further differentiating", + "type": "text" + }, + { + "bbox": [ + 335, + 134, + 345, + 144 + ], + "score": 0.83, + "content": "g _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 130, + 370, + 146 + ], + "score": 1.0, + "content": "gives", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 148, + 453, + 175 + ], + "lines": [ + { + "bbox": [ + 158, + 148, + 453, + 175 + ], + "spans": [ + { + "bbox": [ + 158, + 148, + 453, + 175 + ], + "score": 0.91, + "content": "g _ { 2 } ^ { \\prime } ( \\gamma ) = - \\frac { 1 } { ( 4 \\gamma - 1 ) ^ { 2 } } - \\frac { 6 } { ( 4 \\gamma - 1 ) ^ { 3 } } - \\frac { 6 } { ( 4 \\gamma - 1 ) ^ { 4 } } + 1 < 1 \\mathrm { f o r } \\mathrm { a l l } \\gamma > 1 .", + "type": "interline_equation", + "image_path": "6ca8f0cb50be8a4a8e93c3b1283fec594ca001d89ae38e745a269aa53896a47b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 158, + 148, + 453, + 175 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 179, + 254, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 254, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 210, + 192 + ], + "score": 1.0, + "content": "Therefore we have for all", + "type": "text" + }, + { + "bbox": [ + 210, + 180, + 235, + 191 + ], + "score": 0.92, + "content": "\\gamma > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 178, + 254, + 192 + ], + "score": 1.0, + "content": "that", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 195, + 424, + 223 + ], + "lines": [ + { + "bbox": [ + 187, + 195, + 424, + 223 + ], + "spans": [ + { + "bbox": [ + 187, + 195, + 424, + 223 + ], + "score": 0.93, + "content": "g _ { 2 } ( \\gamma ) = g _ { 2 } ( 1 ) + \\int _ { 1 } ^ { \\gamma } g _ { 2 } ^ { \\prime } ( t ) d t \\leq g _ { 2 } ( 1 ) + \\gamma - 1 = \\gamma + \\frac { 5 } { 2 7 } .", + "type": "interline_equation", + "image_path": "3cb3773e4c84b78cb35fcc4f36a98c3ce99cebb9626a65c2c7bbd90427deef78.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 187, + 195, + 424, + 223 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 239, + 245 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 239, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 239, + 246 + ], + "score": 1.0, + "content": "Combining Case 1 and 2, we get", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 249, + 475, + 326 + ], + "lines": [ + { + "bbox": [ + 138, + 249, + 475, + 326 + ], + "spans": [ + { + "bbox": [ + 138, + 249, + 475, + 326 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\displaystyle \\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , \\gamma ) \\leq g _ { 1 } ( \\gamma ) } \\\\ & { \\leq \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + g _ { 2 } ( \\gamma ) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\} \\leq \\left( 1 + \\frac { 5 } { 2 7 } \\gamma \\right) \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + \\left( \\frac { 5 } { 2 7 } + \\gamma \\right) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\} } \\\\ & { = \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} . } \\end{array}", + "type": "interline_equation", + "image_path": "7c687891365d11fbdccaf697c93bbd91ddbc93114a05c6db0ab432b49b3f3207.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 138, + 249, + 475, + 274.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 138, + 274.6666666666667, + 475, + 300.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 138, + 300.33333333333337, + 475, + 326.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 330, + 273, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 273, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 248, + 342 + ], + "score": 1.0, + "content": "This is the desired upper bound for", + "type": "text" + }, + { + "bbox": [ + 249, + 330, + 270, + 340 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 329, + 273, + 342 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 353, + 504, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 156, + 367 + ], + "score": 1.0, + "content": "Equality at", + "type": "text" + }, + { + "bbox": [ + 156, + 354, + 182, + 365 + ], + "score": 0.89, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 352, + 475, + 367 + ], + "score": 1.0, + "content": "We finally show that the above upper bound becomes an equality when", + "type": "text" + }, + { + "bbox": [ + 476, + 354, + 501, + 365 + ], + "score": 0.91, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 352, + 505, + 367 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 365, + 183, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 118, + 377 + ], + "score": 1.0, + "content": "At", + "type": "text" + }, + { + "bbox": [ + 119, + 365, + 144, + 376 + ], + "score": 0.91, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 365, + 183, + 377 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 380, + 486, + 411 + ], + "lines": [ + { + "bbox": [ + 124, + 380, + 486, + 411 + ], + "spans": [ + { + "bbox": [ + 124, + 380, + 486, + 411 + ], + "score": 0.93, + "content": "f ( \\lambda , 1 ) = \\frac { 8 \\lambda } { ( \\lambda + 2 - \\sqrt { \\lambda ^ { 2 } + 4 \\lambda } ) ^ { 2 } ( \\lambda ^ { 2 } + 4 \\lambda ) ^ { 3 / 2 } } = \\frac { 8 \\lambda ^ { - 4 } } { ( 1 + 2 / \\lambda - \\sqrt { 1 + 4 / \\lambda } ) ^ { 2 } ( 1 + 4 / \\lambda ) ^ { 3 / 2 } } .", + "type": "interline_equation", + "image_path": "ce1b25fe12080cd9f71507b7088a301c6dc7e02bf3f38d20865ff4f3f305c0b7.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 124, + 380, + 486, + 390.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 124, + 390.3333333333333, + 486, + 400.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 124, + 400.66666666666663, + 486, + 410.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 104, + 414, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 104, + 414, + 228, + 432 + ], + "score": 1.0, + "content": "Make the change of variable", + "type": "text" + }, + { + "bbox": [ + 228, + 416, + 294, + 430 + ], + "score": 0.93, + "content": "t = \\sqrt { 1 + 4 / \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 414, + 327, + 432 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 328, + 416, + 408, + 430 + ], + "score": 0.93, + "content": "\\lambda ^ { - 1 } = ( t ^ { 2 } - 1 ) / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 414, + 506, + 432 + ], + "score": 1.0, + "content": ", minimizing the above", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 428, + 263, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 263, + 442 + ], + "score": 1.0, + "content": "expression is equivalent to minimizing", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 445, + 373, + 473 + ], + "lines": [ + { + "bbox": [ + 238, + 445, + 373, + 473 + ], + "spans": [ + { + "bbox": [ + 238, + 445, + 373, + 473 + ], + "score": 0.94, + "content": "{ \\frac { ( t ^ { 2 } - 1 ) ^ { 4 } / 3 2 } { ( t ^ { 2 } / 2 - t + 1 / 2 ) ^ { 2 } t ^ { 3 } } } = { \\frac { ( t + 1 ) ^ { 4 } } { 8 t ^ { 3 } } }", + "type": "interline_equation", + "image_path": "63713602e54dd6d1940ec8c57464fee38dc5da9db5778850528f92e54b93def1.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 238, + 445, + 373, + 473 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 477, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 127, + 490 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 127, + 478, + 152, + 488 + ], + "score": 0.89, + "content": "t > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 477, + 505, + 490 + ], + "score": 1.0, + "content": ". It is straightforward to check (by computing the first and second derivatives) that the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 488, + 457, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 231, + 501 + ], + "score": 1.0, + "content": "above quantity is minimized at", + "type": "text" + }, + { + "bbox": [ + 232, + 489, + 255, + 498 + ], + "score": 0.89, + "content": "t = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 488, + 457, + 501 + ], + "score": 1.0, + "content": "with value 32/27. In other words, we have shown", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 505, + 412, + 534 + ], + "lines": [ + { + "bbox": [ + 198, + 505, + 412, + 534 + ], + "spans": [ + { + "bbox": [ + 198, + 505, + 412, + 534 + ], + "score": 0.92, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , 1 ) = \\frac { 3 2 } { 2 7 } = \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} \\Biggl | _ { \\gamma = 1 } ,", + "type": "interline_equation", + "image_path": "1e08526e1d300fb96cd147abcac5a049c5a0406c430c5e9c532fe2ac8b3fe6c3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 198, + 505, + 412, + 534 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 246, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 244, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 218, + 553 + ], + "score": 1.0, + "content": "that is, the equality holds at", + "type": "text" + }, + { + "bbox": [ + 218, + 540, + 244, + 550 + ], + "score": 0.91, + "content": "\\gamma = 1", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 417, + 575 + ], + "lines": [ + { + "bbox": [ + 104, + 559, + 419, + 577 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 213, + 577 + ], + "score": 1.0, + "content": "Part II: Optimal rate for", + "type": "text" + }, + { + "bbox": [ + 214, + 563, + 239, + 573 + ], + "score": 0.62, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 559, + 359, + 577 + ], + "score": 1.0, + "content": "We now prove the result on", + "type": "text" + }, + { + "bbox": [ + 360, + 563, + 384, + 573 + ], + "score": 0.86, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 559, + 419, + 577 + ], + "score": 1.0, + "content": ", that is,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 579, + 453, + 646 + ], + "lines": [ + { + "bbox": [ + 161, + 579, + 453, + 646 + ], + "spans": [ + { + "bbox": [ + 161, + 579, + 453, + 646 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\underset { \\lambda > 0 , s \\in ( 0 , 1 ) } { \\operatorname* { i n f } } \\ \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\ \\underset { \\lambda \\in \\gamma } { \\operatorname { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n s , n ( 1 - s ) ; \\lambda ) \\big ) } \\\\ & { \\stackrel { ( i ) } { = } \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\underset { \\lambda > 0 , n _ { 1 } + n _ { 2 } = n } { \\operatorname* { i n f } } \\ \\underset { \\frac { d + n + 1 } { n } } { \\operatorname { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) \\overset { ( i i ) } { = } 1 + \\gamma . } \\end{array}", + "type": "interline_equation", + "image_path": "2215f90a71a6a62c7fee9b593d47ff51932c0f3aaaa7486f528ade57e8c8498a.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 161, + 579, + 453, + 601.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 161, + 601.3333333333334, + 453, + 623.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 161, + 623.6666666666667, + 453, + 646.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 650, + 504, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 351, + 663 + ], + "score": 1.0, + "content": "First, equality (ii) follows from Corollary 8 and the fact that", + "type": "text" + }, + { + "bbox": [ + 351, + 651, + 451, + 663 + ], + "score": 0.9, + "content": "( d + n + 1 ) / n \\to 1 + \\gamma ,", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 650, + 505, + 663 + ], + "score": 1.0, + "content": ". Second, the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 660, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 125, + 673 + ], + "score": 0.48, + "content": "\\because '", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 660, + 371, + 675 + ], + "score": 1.0, + "content": "direction of equality (i) is trivial (since we always have “inf l", + "type": "text" + }, + { + "bbox": [ + 372, + 664, + 401, + 672 + ], + "score": 0.3, + "content": "\\mathrm { ~ m ~ } { \\geq } \\operatorname { l i l }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 660, + 506, + 675 + ], + "score": 1.0, + "content": "m inf”). Therefore we get", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 672, + 438, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 125, + 685 + ], + "score": 1.0, + "content": "the “", + "type": "text" + }, + { + "bbox": [ + 125, + 673, + 135, + 684 + ], + "score": 0.43, + "content": "\\because", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 672, + 383, + 685 + ], + "score": 1.0, + "content": "” direction of the overall equality, and it remains to prove the “", + "type": "text" + }, + { + "bbox": [ + 383, + 673, + 397, + 684 + ], + "score": 0.67, + "content": "\\because", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 672, + 438, + 685 + ], + "score": 1.0, + "content": "direction.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 688, + 503, + 713 + ], + "lines": [ + { + "bbox": [ + 104, + 685, + 506, + 706 + ], + "spans": [ + { + "bbox": [ + 104, + 685, + 144, + 706 + ], + "score": 1.0, + "content": "For the “", + "type": "text" + }, + { + "bbox": [ + 144, + 690, + 158, + 701 + ], + "score": 0.64, + "content": "\\because", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 685, + 248, + 706 + ], + "score": 1.0, + "content": "direction, we fix any", + "type": "text" + }, + { + "bbox": [ + 248, + 690, + 277, + 700 + ], + "score": 0.9, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 685, + 377, + 706 + ], + "score": 1.0, + "content": ", and bound AsymMSE", + "type": "text" + }, + { + "bbox": [ + 378, + 689, + 452, + 703 + ], + "score": 0.72, + "content": "( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 685, + 506, + 706 + ], + "score": 1.0, + "content": "(and conse-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 701, + 350, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 183, + 714 + ], + "score": 1.0, + "content": "quently its limit as", + "type": "text" + }, + { + "bbox": [ + 183, + 702, + 226, + 713 + ], + "score": 0.9, + "content": "d , n \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 701, + 350, + 714 + ], + "score": 1.0, + "content": ".) We have from Lemma 5 that", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 718, + 288, + 734 + ], + "lines": [ + { + "bbox": [ + 162, + 718, + 288, + 734 + ], + "spans": [ + { + "bbox": [ + 162, + 718, + 288, + 734 + ], + "score": 0.86, + "content": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) )", + "type": "interline_equation", + "image_path": "251de32e818b6060ce7c7829204851d5a98c97fa8343d1719a6a3db94b3e647c.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 162, + 718, + 288, + 734 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 27, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "28", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 427, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 428, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 140, + 97 + ], + "score": 1.0, + "content": "Case 2:", + "type": "text" + }, + { + "bbox": [ + 141, + 83, + 167, + 94 + ], + "score": 0.88, + "content": "\\gamma > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 80, + 225, + 97 + ], + "score": 1.0, + "content": "Substituting", + "type": "text" + }, + { + "bbox": [ + 226, + 82, + 279, + 95 + ], + "score": 0.92, + "content": "\\lambda = \\gamma - 1 / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 80, + 298, + 97 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 298, + 82, + 329, + 95 + ], + "score": 0.93, + "content": "f ( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 80, + 428, + 97 + ], + "score": 1.0, + "content": "and simplifying, we get", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 80, + 428, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 99, + 402, + 127 + ], + "lines": [ + { + "bbox": [ + 208, + 99, + 402, + 127 + ], + "spans": [ + { + "bbox": [ + 208, + 99, + 402, + 127 + ], + "score": 0.94, + "content": "f ( \\gamma - 1 / 2 , \\gamma ) = \\frac { 2 \\gamma ^ { 2 } ( 4 \\gamma ^ { 2 } - 3 \\gamma + 1 ) } { ( 2 \\gamma - 1 / 2 ) ^ { 3 } } = : g _ { 2 } ( \\gamma ) .", + "type": "interline_equation", + "image_path": "7bb007fd9b273ae1df3ea20d471eadf46648c51793f50817b0b30fd75aeba590.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 208, + 99, + 402, + 127 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 131, + 370, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 130, + 370, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 143, + 146 + ], + "score": 1.0, + "content": "We have", + "type": "text" + }, + { + "bbox": [ + 143, + 132, + 240, + 145 + ], + "score": 0.94, + "content": "g _ { 2 } ( 1 ) = g _ { 1 } ( 1 ) = 3 2 / 2 7 .", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 130, + 335, + 146 + ], + "score": 1.0, + "content": ". Further differentiating", + "type": "text" + }, + { + "bbox": [ + 335, + 134, + 345, + 144 + ], + "score": 0.83, + "content": "g _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 130, + 370, + 146 + ], + "score": 1.0, + "content": "gives", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 130, + 370, + 146 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 148, + 453, + 175 + ], + "lines": [ + { + "bbox": [ + 158, + 148, + 453, + 175 + ], + "spans": [ + { + "bbox": [ + 158, + 148, + 453, + 175 + ], + "score": 0.91, + "content": "g _ { 2 } ^ { \\prime } ( \\gamma ) = - \\frac { 1 } { ( 4 \\gamma - 1 ) ^ { 2 } } - \\frac { 6 } { ( 4 \\gamma - 1 ) ^ { 3 } } - \\frac { 6 } { ( 4 \\gamma - 1 ) ^ { 4 } } + 1 < 1 \\mathrm { f o r } \\mathrm { a l l } \\gamma > 1 .", + "type": "interline_equation", + "image_path": "6ca8f0cb50be8a4a8e93c3b1283fec594ca001d89ae38e745a269aa53896a47b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 158, + 148, + 453, + 175 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 179, + 254, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 178, + 254, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 210, + 192 + ], + "score": 1.0, + "content": "Therefore we have for all", + "type": "text" + }, + { + "bbox": [ + 210, + 180, + 235, + 191 + ], + "score": 0.92, + "content": "\\gamma > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 178, + 254, + 192 + ], + "score": 1.0, + "content": "that", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 178, + 254, + 192 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 195, + 424, + 223 + ], + "lines": [ + { + "bbox": [ + 187, + 195, + 424, + 223 + ], + "spans": [ + { + "bbox": [ + 187, + 195, + 424, + 223 + ], + "score": 0.93, + "content": "g _ { 2 } ( \\gamma ) = g _ { 2 } ( 1 ) + \\int _ { 1 } ^ { \\gamma } g _ { 2 } ^ { \\prime } ( t ) d t \\leq g _ { 2 } ( 1 ) + \\gamma - 1 = \\gamma + \\frac { 5 } { 2 7 } .", + "type": "interline_equation", + "image_path": "3cb3773e4c84b78cb35fcc4f36a98c3ce99cebb9626a65c2c7bbd90427deef78.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 187, + 195, + 424, + 223 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 239, + 245 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 239, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 239, + 246 + ], + "score": 1.0, + "content": "Combining Case 1 and 2, we get", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 231, + 239, + 246 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 249, + 475, + 326 + ], + "lines": [ + { + "bbox": [ + 138, + 249, + 475, + 326 + ], + "spans": [ + { + "bbox": [ + 138, + 249, + 475, + 326 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\quad \\displaystyle \\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , \\gamma ) \\leq g _ { 1 } ( \\gamma ) } \\\\ & { \\leq \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + g _ { 2 } ( \\gamma ) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\} \\leq \\left( 1 + \\frac { 5 } { 2 7 } \\gamma \\right) \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + \\left( \\frac { 5 } { 2 7 } + \\gamma \\right) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\} } \\\\ & { = \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} . } \\end{array}", + "type": "interline_equation", + "image_path": "7c687891365d11fbdccaf697c93bbd91ddbc93114a05c6db0ab432b49b3f3207.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 138, + 249, + 475, + 274.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 138, + 274.6666666666667, + 475, + 300.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 138, + 300.33333333333337, + 475, + 326.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 330, + 273, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 273, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 248, + 342 + ], + "score": 1.0, + "content": "This is the desired upper bound for", + "type": "text" + }, + { + "bbox": [ + 249, + 330, + 270, + 340 + ], + "score": 0.89, + "content": "L ^ { \\mathrm { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 329, + 273, + 342 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 329, + 273, + 342 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 353, + 504, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 156, + 367 + ], + "score": 1.0, + "content": "Equality at", + "type": "text" + }, + { + "bbox": [ + 156, + 354, + 182, + 365 + ], + "score": 0.89, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 352, + 475, + 367 + ], + "score": 1.0, + "content": "We finally show that the above upper bound becomes an equality when", + "type": "text" + }, + { + "bbox": [ + 476, + 354, + 501, + 365 + ], + "score": 0.91, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 352, + 505, + 367 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 365, + 183, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 118, + 377 + ], + "score": 1.0, + "content": "At", + "type": "text" + }, + { + "bbox": [ + 119, + 365, + 144, + 376 + ], + "score": 0.91, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 365, + 183, + 377 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 352, + 505, + 377 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 380, + 486, + 411 + ], + "lines": [ + { + "bbox": [ + 124, + 380, + 486, + 411 + ], + "spans": [ + { + "bbox": [ + 124, + 380, + 486, + 411 + ], + "score": 0.93, + "content": "f ( \\lambda , 1 ) = \\frac { 8 \\lambda } { ( \\lambda + 2 - \\sqrt { \\lambda ^ { 2 } + 4 \\lambda } ) ^ { 2 } ( \\lambda ^ { 2 } + 4 \\lambda ) ^ { 3 / 2 } } = \\frac { 8 \\lambda ^ { - 4 } } { ( 1 + 2 / \\lambda - \\sqrt { 1 + 4 / \\lambda } ) ^ { 2 } ( 1 + 4 / \\lambda ) ^ { 3 / 2 } } .", + "type": "interline_equation", + "image_path": "ce1b25fe12080cd9f71507b7088a301c6dc7e02bf3f38d20865ff4f3f305c0b7.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 124, + 380, + 486, + 390.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 124, + 390.3333333333333, + 486, + 400.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 124, + 400.66666666666663, + 486, + 410.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 104, + 414, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 104, + 414, + 228, + 432 + ], + "score": 1.0, + "content": "Make the change of variable", + "type": "text" + }, + { + "bbox": [ + 228, + 416, + 294, + 430 + ], + "score": 0.93, + "content": "t = \\sqrt { 1 + 4 / \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 414, + 327, + 432 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 328, + 416, + 408, + 430 + ], + "score": 0.93, + "content": "\\lambda ^ { - 1 } = ( t ^ { 2 } - 1 ) / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 414, + 506, + 432 + ], + "score": 1.0, + "content": ", minimizing the above", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 428, + 263, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 263, + 442 + ], + "score": 1.0, + "content": "expression is equivalent to minimizing", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 414, + 506, + 442 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 445, + 373, + 473 + ], + "lines": [ + { + "bbox": [ + 238, + 445, + 373, + 473 + ], + "spans": [ + { + "bbox": [ + 238, + 445, + 373, + 473 + ], + "score": 0.94, + "content": "{ \\frac { ( t ^ { 2 } - 1 ) ^ { 4 } / 3 2 } { ( t ^ { 2 } / 2 - t + 1 / 2 ) ^ { 2 } t ^ { 3 } } } = { \\frac { ( t + 1 ) ^ { 4 } } { 8 t ^ { 3 } } }", + "type": "interline_equation", + "image_path": "63713602e54dd6d1940ec8c57464fee38dc5da9db5778850528f92e54b93def1.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 238, + 445, + 373, + 473 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 477, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 127, + 490 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 127, + 478, + 152, + 488 + ], + "score": 0.89, + "content": "t > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 477, + 505, + 490 + ], + "score": 1.0, + "content": ". It is straightforward to check (by computing the first and second derivatives) that the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 488, + 457, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 231, + 501 + ], + "score": 1.0, + "content": "above quantity is minimized at", + "type": "text" + }, + { + "bbox": [ + 232, + 489, + 255, + 498 + ], + "score": 0.89, + "content": "t = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 488, + 457, + 501 + ], + "score": 1.0, + "content": "with value 32/27. In other words, we have shown", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 477, + 505, + 501 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 505, + 412, + 534 + ], + "lines": [ + { + "bbox": [ + 198, + 505, + 412, + 534 + ], + "spans": [ + { + "bbox": [ + 198, + 505, + 412, + 534 + ], + "score": 0.92, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , 1 ) = \\frac { 3 2 } { 2 7 } = \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} \\Biggl | _ { \\gamma = 1 } ,", + "type": "interline_equation", + "image_path": "1e08526e1d300fb96cd147abcac5a049c5a0406c430c5e9c532fe2ac8b3fe6c3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 198, + 505, + 412, + 534 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 246, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 244, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 218, + 553 + ], + "score": 1.0, + "content": "that is, the equality holds at", + "type": "text" + }, + { + "bbox": [ + 218, + 540, + 244, + 550 + ], + "score": 0.91, + "content": "\\gamma = 1", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 537, + 244, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 561, + 417, + 575 + ], + "lines": [ + { + "bbox": [ + 104, + 559, + 419, + 577 + ], + "spans": [ + { + "bbox": [ + 104, + 559, + 213, + 577 + ], + "score": 1.0, + "content": "Part II: Optimal rate for", + "type": "text" + }, + { + "bbox": [ + 214, + 563, + 239, + 573 + ], + "score": 0.62, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 559, + 359, + 577 + ], + "score": 1.0, + "content": "We now prove the result on", + "type": "text" + }, + { + "bbox": [ + 360, + 563, + 384, + 573 + ], + "score": 0.86, + "content": "L ^ { \\mathrm { t r - v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 559, + 419, + 577 + ], + "score": 1.0, + "content": ", that is,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 559, + 419, + 577 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 579, + 453, + 646 + ], + "lines": [ + { + "bbox": [ + 161, + 579, + 453, + 646 + ], + "spans": [ + { + "bbox": [ + 161, + 579, + 453, + 646 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\underset { \\lambda > 0 , s \\in ( 0 , 1 ) } { \\operatorname* { i n f } } \\ \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\ \\underset { \\lambda \\in \\gamma } { \\operatorname { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n s , n ( 1 - s ) ; \\lambda ) \\big ) } \\\\ & { \\stackrel { ( i ) } { = } \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\underset { \\lambda > 0 , n _ { 1 } + n _ { 2 } = n } { \\operatorname* { i n f } } \\ \\underset { \\frac { d + n + 1 } { n } } { \\operatorname { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) \\overset { ( i i ) } { = } 1 + \\gamma . } \\end{array}", + "type": "interline_equation", + "image_path": "2215f90a71a6a62c7fee9b593d47ff51932c0f3aaaa7486f528ade57e8c8498a.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 161, + 579, + 453, + 601.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 161, + 601.3333333333334, + 453, + 623.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 161, + 623.6666666666667, + 453, + 646.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 650, + 504, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 351, + 663 + ], + "score": 1.0, + "content": "First, equality (ii) follows from Corollary 8 and the fact that", + "type": "text" + }, + { + "bbox": [ + 351, + 651, + 451, + 663 + ], + "score": 0.9, + "content": "( d + n + 1 ) / n \\to 1 + \\gamma ,", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 650, + 505, + 663 + ], + "score": 1.0, + "content": ". Second, the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 660, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 125, + 673 + ], + "score": 0.48, + "content": "\\because '", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 660, + 371, + 675 + ], + "score": 1.0, + "content": "direction of equality (i) is trivial (since we always have “inf l", + "type": "text" + }, + { + "bbox": [ + 372, + 664, + 401, + 672 + ], + "score": 0.3, + "content": "\\mathrm { ~ m ~ } { \\geq } \\operatorname { l i l }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 660, + 506, + 675 + ], + "score": 1.0, + "content": "m inf”). Therefore we get", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 672, + 438, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 672, + 125, + 685 + ], + "score": 1.0, + "content": "the “", + "type": "text" + }, + { + "bbox": [ + 125, + 673, + 135, + 684 + ], + "score": 0.43, + "content": "\\because", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 672, + 383, + 685 + ], + "score": 1.0, + "content": "” direction of the overall equality, and it remains to prove the “", + "type": "text" + }, + { + "bbox": [ + 383, + 673, + 397, + 684 + ], + "score": 0.67, + "content": "\\because", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 672, + 438, + 685 + ], + "score": 1.0, + "content": "direction.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 650, + 506, + 685 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 688, + 503, + 713 + ], + "lines": [ + { + "bbox": [ + 104, + 685, + 506, + 706 + ], + "spans": [ + { + "bbox": [ + 104, + 685, + 144, + 706 + ], + "score": 1.0, + "content": "For the “", + "type": "text" + }, + { + "bbox": [ + 144, + 690, + 158, + 701 + ], + "score": 0.64, + "content": "\\because", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 685, + 248, + 706 + ], + "score": 1.0, + "content": "direction, we fix any", + "type": "text" + }, + { + "bbox": [ + 248, + 690, + 277, + 700 + ], + "score": 0.9, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 685, + 377, + 706 + ], + "score": 1.0, + "content": ", and bound AsymMSE", + "type": "text" + }, + { + "bbox": [ + 378, + 689, + 452, + 703 + ], + "score": 0.72, + "content": "( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 685, + 506, + 706 + ], + "score": 1.0, + "content": "(and conse-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 701, + 350, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 183, + 714 + ], + "score": 1.0, + "content": "quently its limit as", + "type": "text" + }, + { + "bbox": [ + 183, + 702, + 226, + 713 + ], + "score": 0.9, + "content": "d , n \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 701, + 350, + 714 + ], + "score": 1.0, + "content": ".) We have from Lemma 5 that", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 104, + 685, + 506, + 714 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 718, + 288, + 734 + ], + "lines": [ + { + "bbox": [ + 162, + 718, + 288, + 734 + ], + "spans": [ + { + "bbox": [ + 162, + 718, + 288, + 734 + ], + "score": 0.86, + "content": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) )", + "type": "interline_equation", + "image_path": "251de32e818b6060ce7c7829204851d5a98c97fa8343d1719a6a3db94b3e647c.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 162, + 718, + 288, + 734 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 154, + 79, + 456, + 205 + ], + "lines": [ + { + "bbox": [ + 154, + 79, + 456, + 205 + ], + "spans": [ + { + "bbox": [ + 154, + 79, + 456, + 205 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { = \\frac { d } { n _ { 2 } } \\cdot \\frac { \\mathbb { E } \\left[ \\left( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { \\leq \\frac { d } { n _ { 2 } } \\cdot \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { d + n _ { 2 } + 1 } { n _ { 2 } } \\cdot \\frac { 1 } { \\left( \\mathbb { E } \\left[ \\frac { 1 } { d } \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "b2858906135a467e4424d980ec35e81b48ca041e654e389fbd40b7e148dc6a58.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 154, + 79, + 456, + 121.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 154, + 121.0, + 456, + 163.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 154, + 163.0, + 456, + 205.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 225, + 159, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 160, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 160, + 237 + ], + "score": 1.0, + "content": "Observe that", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 243, + 424, + 327 + ], + "lines": [ + { + "bbox": [ + 188, + 243, + 424, + 327 + ], + "spans": [ + { + "bbox": [ + 188, + 243, + 424, + 327 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbb { E } \\Bigg [ \\frac { 1 } { d } \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\Bigg ] \\stackrel { ( i ) } { \\geq } \\mathbb { E } \\left[ \\frac { \\lambda ^ { 2 } } { \\Big ( \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } / d + \\lambda \\Big ) ^ { 2 } } \\right] } \\\\ & { \\stackrel { ( i i ) } { \\geq } \\frac { \\lambda ^ { 2 } } { \\Big ( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } / d \\right] + \\lambda \\Big ) ^ { 2 } } \\stackrel { ( i i ) } { = } \\frac { \\lambda ^ { 2 } } { ( 1 + \\lambda ) ^ { 2 } } , } \\end{array}", + "type": "interline_equation", + "image_path": "c400eb61b676f774b9dbc36d1d58a91d652e933ae2cbc3c16d99981bf3687b8b.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 188, + 243, + 424, + 257.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 188, + 257.0, + 424, + 271.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 188, + 271.0, + 424, + 285.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 188, + 285.0, + 424, + 299.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 188, + 299.0, + 424, + 313.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 188, + 313.0, + 424, + 327.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 506, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 280, + 347 + ], + "score": 1.0, + "content": "where (i) follows from the convexity of", + "type": "text" + }, + { + "bbox": [ + 280, + 334, + 360, + 347 + ], + "score": 0.89, + "content": "t \\ \\mapsto \\ \\lambda ^ { 2 } / ( t + \\lambda ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 332, + 377, + 347 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 378, + 335, + 408, + 345 + ], + "score": 0.88, + "content": "t ~ \\geq ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 332, + 506, + 347 + ], + "score": 1.0, + "content": "; (ii) follows from the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 103, + 341, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 103, + 341, + 340, + 369 + ], + "score": 1.0, + "content": "same convexity and Jensen’s inequality, and (iii) is since", + "type": "text" + }, + { + "bbox": [ + 341, + 345, + 505, + 365 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } \\Big ] \\ = \\ \\mathbb { E } \\Big [ \\mathrm { t r } ( \\frac { 1 } { n _ { 1 } } { \\bf X } _ { t } ^ { \\top } { \\bf X } _ { t } ) \\Big ] \\ = } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 363, + 378, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 189, + 384 + ], + "score": 0.91, + "content": "\\mathbb { E } \\Big [ \\| \\mathbf { X } _ { t } \\| _ { \\mathsf { F r } } ^ { 2 } / n _ { 1 } \\Big ] = d .", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 364, + 378, + 385 + ], + "score": 1.0, + "content": ". Applying this in the preceeding bound yields", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 392, + 423, + 418 + ], + "lines": [ + { + "bbox": [ + 188, + 392, + 423, + 418 + ], + "spans": [ + { + "bbox": [ + 188, + 392, + 423, + 418 + ], + "score": 0.92, + "content": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) ) \\leq \\frac { d + n _ { 2 } + 1 } { n _ { 2 } } \\cdot \\frac { ( 1 + \\lambda ) ^ { 2 } } { \\lambda ^ { 2 } } .", + "type": "interline_equation", + "image_path": "5457f2d8c252b0417a619b3cae60cf786beae05ba3105d1e580cfc528352bf14.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 188, + 392, + 423, + 418 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 401, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 401, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 186, + 439 + ], + "score": 1.0, + "content": "Further plugging in", + "type": "text" + }, + { + "bbox": [ + 187, + 428, + 222, + 437 + ], + "score": 0.9, + "content": "n _ { 1 } = n s", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 424, + 240, + 439 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 240, + 425, + 300, + 438 + ], + "score": 0.94, + "content": "n _ { 2 } = n ( 1 - s )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 424, + 333, + 439 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 333, + 426, + 373, + 438 + ], + "score": 0.93, + "content": "s \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 424, + 401, + 439 + ], + "score": 1.0, + "content": "yields", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 445, + 462, + 472 + ], + "lines": [ + { + "bbox": [ + 149, + 445, + 462, + 472 + ], + "spans": [ + { + "bbox": [ + 149, + 445, + 462, + 472 + ], + "score": 0.9, + "content": "\\operatorname* { l i m } _ { \\substack { d , n \\infty , d / n \\gamma } } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s u l } } ( n s , n ( 1 - s ) ; \\lambda ) ) \\leq \\frac { \\gamma + 1 - s } { 1 - s } \\cdot \\frac { ( 1 + \\lambda ) ^ { 2 } } { \\lambda ^ { 2 } } .", + "type": "interline_equation", + "image_path": "1d9ceacb42f5b8be7100d3f4137b964c2a62f31e0ac06142543906e75ec3ff8c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 149, + 445, + 462, + 454.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 149, + 454.0, + 462, + 463.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 149, + 463.0, + 462, + 472.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 479, + 477, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 478, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 280, + 492 + ], + "score": 1.0, + "content": "Finally, the right-hand side is minimized at", + "type": "text" + }, + { + "bbox": [ + 281, + 480, + 313, + 490 + ], + "score": 0.9, + "content": "\\lambda \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 479, + 331, + 492 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 481, + 355, + 490 + ], + "score": 0.9, + "content": "s = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 479, + 478, + 492 + ], + "score": 1.0, + "content": ", from which we conclude that", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 499, + 439, + 520 + ], + "lines": [ + { + "bbox": [ + 169, + 499, + 439, + 520 + ], + "spans": [ + { + "bbox": [ + 169, + 499, + 439, + 520 + ], + "score": 0.88, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 , s \\in ( 0 , 1 ) } \\operatorname* { l i m } _ { d , n \\to \\infty , \\ d / n \\to \\gamma } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) ) \\leq 1 + \\gamma ,", + "type": "interline_equation", + "image_path": "62ef59fc3a1b4e03ccb84fc3e6916bedb90f4cc34e7aae06b96b87099029cda4.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 169, + 499, + 439, + 520 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 247, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 247, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 192, + 540 + ], + "score": 1.0, + "content": "which is the desired", + "type": "text" + }, + { + "bbox": [ + 193, + 528, + 203, + 539 + ], + "score": 0.41, + "content": "\\because", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 527, + 247, + 540 + ], + "score": 1.0, + "content": "” direction.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 106, + 558, + 340, + 571 + ], + "lines": [ + { + "bbox": [ + 108, + 558, + 340, + 571 + ], + "spans": [ + { + "bbox": [ + 108, + 559, + 120, + 569 + ], + "score": 1.0, + "content": "C", + "type": "text" + }, + { + "bbox": [ + 125, + 558, + 340, + 571 + ], + "score": 1.0, + "content": "CONNECTIONS TO BAYESIAN ESTIMATOR", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "Here we discuss the relationship between our train-train meta-learining estimator using ridge regres-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 596, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 606 + ], + "score": 1.0, + "content": "sion solvers and a Bayesian estimator under a somewhat natural hierarchical generative model for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "the realizable setting in Section 4. We show that these two estimators are not equal in general, albeit", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 617, + 299, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 299, + 629 + ], + "score": 1.0, + "content": "they have some similarities in their expressions.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 351, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 351, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 351, + 646 + ], + "score": 1.0, + "content": "We consider the following hierarchical probabilitistic model:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 653, + 504, + 681 + ], + "lines": [ + { + "bbox": [ + 111, + 653, + 504, + 681 + ], + "spans": [ + { + "bbox": [ + 111, + 653, + 504, + 681 + ], + "score": 0.91, + "content": "\\mathbf { w } _ { 0 , \\star } \\sim \\mathbb { N } \\bigg ( 0 , \\frac { \\sigma _ { w } ^ { 2 } } { d } \\mathbf { I } _ { d } \\bigg ) , \\quad \\mathbf { w } _ { t } | \\mathbf { w } _ { 0 , \\star } \\overset { \\mathrm { i i d } } { \\sim } \\mathbb { N } \\bigg ( \\mathbf { w } _ { 0 , \\star } , \\frac { R ^ { 2 } } { d } \\mathbf { I } _ { d } \\bigg ) , \\quad \\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } + \\sigma \\mathbf { z } _ { t } \\mathrm { w h e r e \\mathbf { z } } _ { t } \\overset { \\mathrm { i i d } } { \\sim } \\mathbb { N } ( 0 , \\mathbf { I } _ { n } ) .", + "type": "interline_equation", + "image_path": "0aae071000565cc306c9bde8cbb4e3e2dc262c209521f6fdb16fdc0915471b20.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 111, + 653, + 504, + 662.3333333333334 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 111, + 662.3333333333334, + 504, + 671.6666666666667 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 111, + 671.6666666666667, + 504, + 681.0000000000001 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 378, + 699 + ], + "score": 1.0, + "content": "This model is similar to our realizable linear model (6), except that", + "type": "text" + }, + { + "bbox": [ + 379, + 692, + 392, + 699 + ], + "score": 0.79, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 687, + 505, + 699 + ], + "score": 1.0, + "content": "has a prior and that there is", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "observation noise in the data (such that data likelihoods and posteriors are well-defined). We also", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 161, + 722 + ], + "score": 1.0, + "content": "note that the", + "type": "text" + }, + { + "bbox": [ + 162, + 711, + 185, + 722 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 708, + 239, + 722 + ], + "score": 1.0, + "content": "variance for", + "type": "text" + }, + { + "bbox": [ + 239, + 714, + 252, + 721 + ], + "score": 0.82, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 708, + 319, + 722 + ], + "score": 1.0, + "content": "guarantees that", + "type": "text" + }, + { + "bbox": [ + 319, + 711, + 419, + 722 + ], + "score": 0.92, + "content": "-", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 708, + 506, + 722 + ], + "score": 1.0, + "content": ", consistent with our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 718, + 164, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 164, + 733 + ], + "score": 1.0, + "content": "definition (7).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + } + ], + "page_idx": 28, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 528, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 495, + 529, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 495, + 529, + 505, + 539 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "interline_equation", + "bbox": [ + 154, + 79, + 456, + 205 + ], + "lines": [ + { + "bbox": [ + 154, + 79, + 456, + 205 + ], + "spans": [ + { + "bbox": [ + 154, + 79, + 456, + 205 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { = \\frac { d } { n _ { 2 } } \\cdot \\frac { \\mathbb { E } \\left[ \\left( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { \\leq \\frac { d } { n _ { 2 } } \\cdot \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { d + n _ { 2 } + 1 } { n _ { 2 } } \\cdot \\frac { 1 } { \\left( \\mathbb { E } \\left[ \\frac { 1 } { d } \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "b2858906135a467e4424d980ec35e81b48ca041e654e389fbd40b7e148dc6a58.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 154, + 79, + 456, + 121.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 154, + 121.0, + 456, + 163.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 154, + 163.0, + 456, + 205.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 225, + 159, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 160, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 160, + 237 + ], + "score": 1.0, + "content": "Observe that", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 224, + 160, + 237 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 243, + 424, + 327 + ], + "lines": [ + { + "bbox": [ + 188, + 243, + 424, + 327 + ], + "spans": [ + { + "bbox": [ + 188, + 243, + 424, + 327 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbb { E } \\Bigg [ \\frac { 1 } { d } \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\Bigg ] \\stackrel { ( i ) } { \\geq } \\mathbb { E } \\left[ \\frac { \\lambda ^ { 2 } } { \\Big ( \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } / d + \\lambda \\Big ) ^ { 2 } } \\right] } \\\\ & { \\stackrel { ( i i ) } { \\geq } \\frac { \\lambda ^ { 2 } } { \\Big ( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } / d \\right] + \\lambda \\Big ) ^ { 2 } } \\stackrel { ( i i ) } { = } \\frac { \\lambda ^ { 2 } } { ( 1 + \\lambda ) ^ { 2 } } , } \\end{array}", + "type": "interline_equation", + "image_path": "c400eb61b676f774b9dbc36d1d58a91d652e933ae2cbc3c16d99981bf3687b8b.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 188, + 243, + 424, + 257.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 188, + 257.0, + 424, + 271.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 188, + 271.0, + 424, + 285.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 188, + 285.0, + 424, + 299.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 188, + 299.0, + 424, + 313.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 188, + 313.0, + 424, + 327.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 506, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 280, + 347 + ], + "score": 1.0, + "content": "where (i) follows from the convexity of", + "type": "text" + }, + { + "bbox": [ + 280, + 334, + 360, + 347 + ], + "score": 0.89, + "content": "t \\ \\mapsto \\ \\lambda ^ { 2 } / ( t + \\lambda ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 332, + 377, + 347 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 378, + 335, + 408, + 345 + ], + "score": 0.88, + "content": "t ~ \\geq ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 332, + 506, + 347 + ], + "score": 1.0, + "content": "; (ii) follows from the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 103, + 341, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 103, + 341, + 340, + 369 + ], + "score": 1.0, + "content": "same convexity and Jensen’s inequality, and (iii) is since", + "type": "text" + }, + { + "bbox": [ + 341, + 345, + 505, + 365 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } \\Big ] \\ = \\ \\mathbb { E } \\Big [ \\mathrm { t r } ( \\frac { 1 } { n _ { 1 } } { \\bf X } _ { t } ^ { \\top } { \\bf X } _ { t } ) \\Big ] \\ = } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 363, + 378, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 189, + 384 + ], + "score": 0.91, + "content": "\\mathbb { E } \\Big [ \\| \\mathbf { X } _ { t } \\| _ { \\mathsf { F r } } ^ { 2 } / n _ { 1 } \\Big ] = d .", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 364, + 378, + 385 + ], + "score": 1.0, + "content": ". Applying this in the preceeding bound yields", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 103, + 332, + 506, + 385 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 392, + 423, + 418 + ], + "lines": [ + { + "bbox": [ + 188, + 392, + 423, + 418 + ], + "spans": [ + { + "bbox": [ + 188, + 392, + 423, + 418 + ], + "score": 0.92, + "content": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) ) \\leq \\frac { d + n _ { 2 } + 1 } { n _ { 2 } } \\cdot \\frac { ( 1 + \\lambda ) ^ { 2 } } { \\lambda ^ { 2 } } .", + "type": "interline_equation", + "image_path": "5457f2d8c252b0417a619b3cae60cf786beae05ba3105d1e580cfc528352bf14.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 188, + 392, + 423, + 418 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 425, + 401, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 401, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 186, + 439 + ], + "score": 1.0, + "content": "Further plugging in", + "type": "text" + }, + { + "bbox": [ + 187, + 428, + 222, + 437 + ], + "score": 0.9, + "content": "n _ { 1 } = n s", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 424, + 240, + 439 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 240, + 425, + 300, + 438 + ], + "score": 0.94, + "content": "n _ { 2 } = n ( 1 - s )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 424, + 333, + 439 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 333, + 426, + 373, + 438 + ], + "score": 0.93, + "content": "s \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 424, + 401, + 439 + ], + "score": 1.0, + "content": "yields", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 424, + 401, + 439 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 445, + 462, + 472 + ], + "lines": [ + { + "bbox": [ + 149, + 445, + 462, + 472 + ], + "spans": [ + { + "bbox": [ + 149, + 445, + 462, + 472 + ], + "score": 0.9, + "content": "\\operatorname* { l i m } _ { \\substack { d , n \\infty , d / n \\gamma } } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s u l } } ( n s , n ( 1 - s ) ; \\lambda ) ) \\leq \\frac { \\gamma + 1 - s } { 1 - s } \\cdot \\frac { ( 1 + \\lambda ) ^ { 2 } } { \\lambda ^ { 2 } } .", + "type": "interline_equation", + "image_path": "1d9ceacb42f5b8be7100d3f4137b964c2a62f31e0ac06142543906e75ec3ff8c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 149, + 445, + 462, + 454.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 149, + 454.0, + 462, + 463.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 149, + 463.0, + 462, + 472.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 479, + 477, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 478, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 280, + 492 + ], + "score": 1.0, + "content": "Finally, the right-hand side is minimized at", + "type": "text" + }, + { + "bbox": [ + 281, + 480, + 313, + 490 + ], + "score": 0.9, + "content": "\\lambda \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 479, + 331, + 492 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 481, + 355, + 490 + ], + "score": 0.9, + "content": "s = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 479, + 478, + 492 + ], + "score": 1.0, + "content": ", from which we conclude that", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 479, + 478, + 492 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 499, + 439, + 520 + ], + "lines": [ + { + "bbox": [ + 169, + 499, + 439, + 520 + ], + "spans": [ + { + "bbox": [ + 169, + 499, + 439, + 520 + ], + "score": 0.88, + "content": "\\operatorname* { i n f } _ { \\lambda > 0 , s \\in ( 0 , 1 ) } \\operatorname* { l i m } _ { d , n \\to \\infty , \\ d / n \\to \\gamma } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) ) \\leq 1 + \\gamma ,", + "type": "interline_equation", + "image_path": "62ef59fc3a1b4e03ccb84fc3e6916bedb90f4cc34e7aae06b96b87099029cda4.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 169, + 499, + 439, + 520 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 247, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 247, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 192, + 540 + ], + "score": 1.0, + "content": "which is the desired", + "type": "text" + }, + { + "bbox": [ + 193, + 528, + 203, + 539 + ], + "score": 0.41, + "content": "\\because", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 527, + 247, + 540 + ], + "score": 1.0, + "content": "” direction.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 527, + 247, + 540 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 558, + 340, + 571 + ], + "lines": [ + { + "bbox": [ + 108, + 558, + 340, + 571 + ], + "spans": [ + { + "bbox": [ + 108, + 559, + 120, + 569 + ], + "score": 1.0, + "content": "C", + "type": "text" + }, + { + "bbox": [ + 125, + 558, + 340, + 571 + ], + "score": 1.0, + "content": "CONNECTIONS TO BAYESIAN ESTIMATOR", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "Here we discuss the relationship between our train-train meta-learining estimator using ridge regres-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 596, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 606 + ], + "score": 1.0, + "content": "sion solvers and a Bayesian estimator under a somewhat natural hierarchical generative model for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "the realizable setting in Section 4. We show that these two estimators are not equal in general, albeit", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 617, + 299, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 299, + 629 + ], + "score": 1.0, + "content": "they have some similarities in their expressions.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 584, + 506, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 351, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 351, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 351, + 646 + ], + "score": 1.0, + "content": "We consider the following hierarchical probabilitistic model:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 633, + 351, + 646 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 653, + 504, + 681 + ], + "lines": [ + { + "bbox": [ + 111, + 653, + 504, + 681 + ], + "spans": [ + { + "bbox": [ + 111, + 653, + 504, + 681 + ], + "score": 0.91, + "content": "\\mathbf { w } _ { 0 , \\star } \\sim \\mathbb { N } \\bigg ( 0 , \\frac { \\sigma _ { w } ^ { 2 } } { d } \\mathbf { I } _ { d } \\bigg ) , \\quad \\mathbf { w } _ { t } | \\mathbf { w } _ { 0 , \\star } \\overset { \\mathrm { i i d } } { \\sim } \\mathbb { N } \\bigg ( \\mathbf { w } _ { 0 , \\star } , \\frac { R ^ { 2 } } { d } \\mathbf { I } _ { d } \\bigg ) , \\quad \\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } + \\sigma \\mathbf { z } _ { t } \\mathrm { w h e r e \\mathbf { z } } _ { t } \\overset { \\mathrm { i i d } } { \\sim } \\mathbb { N } ( 0 , \\mathbf { I } _ { n } ) .", + "type": "interline_equation", + "image_path": "0aae071000565cc306c9bde8cbb4e3e2dc262c209521f6fdb16fdc0915471b20.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 111, + 653, + 504, + 662.3333333333334 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 111, + 662.3333333333334, + 504, + 671.6666666666667 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 111, + 671.6666666666667, + 504, + 681.0000000000001 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 378, + 699 + ], + "score": 1.0, + "content": "This model is similar to our realizable linear model (6), except that", + "type": "text" + }, + { + "bbox": [ + 379, + 692, + 392, + 699 + ], + "score": 0.79, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 687, + 505, + 699 + ], + "score": 1.0, + "content": "has a prior and that there is", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "observation noise in the data (such that data likelihoods and posteriors are well-defined). We also", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 104, + 708, + 161, + 722 + ], + "score": 1.0, + "content": "note that the", + "type": "text" + }, + { + "bbox": [ + 162, + 711, + 185, + 722 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 708, + 239, + 722 + ], + "score": 1.0, + "content": "variance for", + "type": "text" + }, + { + "bbox": [ + 239, + 714, + 252, + 721 + ], + "score": 0.82, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 708, + 319, + 722 + ], + "score": 1.0, + "content": "guarantees that", + "type": "text" + }, + { + "bbox": [ + 319, + 711, + 419, + 722 + ], + "score": 0.92, + "content": "-", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 708, + 506, + 722 + ], + "score": 1.0, + "content": ", consistent with our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 718, + 164, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 164, + 733 + ], + "score": 1.0, + "content": "definition (7).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 109 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 420, + 96 + ], + "score": 1.0, + "content": "Bayesian estimator We now derive the Bayesian posterior mean estimator of", + "type": "text" + }, + { + "bbox": [ + 421, + 84, + 441, + 95 + ], + "score": 0.85, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 81, + 505, + 96 + ], + "score": 1.0, + "content": ", which requires", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 91, + 423, + 112 + ], + "spans": [ + { + "bbox": [ + 104, + 91, + 276, + 112 + ], + "score": 1.0, + "content": "us to compute the posterior distribution of", + "type": "text" + }, + { + "bbox": [ + 277, + 97, + 297, + 109 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 91, + 356, + 112 + ], + "score": 1.0, + "content": "given the data", + "type": "text" + }, + { + "bbox": [ + 357, + 95, + 418, + 109 + ], + "score": 0.91, + "content": "4", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 91, + 423, + 112 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 113, + 414, + 125 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 411, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 398, + 127 + ], + "score": 1.0, + "content": "We begin by computing the likelihood of one task by marginalizing over", + "type": "text" + }, + { + "bbox": [ + 398, + 115, + 411, + 124 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 126, + 506, + 254 + ], + "lines": [ + { + "bbox": [ + 111, + 126, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 506, + 254 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { p ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } | \\mathbf { w } _ { 0 , \\star } ) \\propto \\displaystyle \\int p ( \\mathbf { w } _ { t } | \\mathbf { w } _ { 0 , \\star } ) \\cdot p ( \\mathbf { y } _ { t } | \\mathbf { X } _ { t } , \\mathbf { w } _ { t } ) d \\mathbf { w } _ { t } } \\\\ & { \\displaystyle \\times \\displaystyle \\int \\exp ( - \\frac { \\| \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { 2 R ^ { 2 } / d } ) \\cdot \\exp ( - \\frac { \\| \\mathbf { y } _ { t } - \\mathbf { X } _ { t } \\mathbf { w } _ { t } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } ) d \\mathbf { w } _ { t } } \\\\ & { \\displaystyle \\overset { ( i ) } { \\propto } \\exp ( - \\frac { \\| \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { 2 R ^ { 2 } / d } + \\frac { 1 } { 2 } \\Big ( \\frac { \\mathbf { w } _ { 0 , \\star } } { R ^ { 2 } / d } + \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { \\sigma ^ { 2 } } \\Big ) ^ { \\top } \\Big ( \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { \\sigma ^ { 2 } } + \\frac { \\mathbf { I } _ { d } } { R ^ { 2 } / d } \\Big ) ^ { - 1 } \\Big ( \\frac { \\mathbf { w } _ { 0 , \\star } } { R ^ { 2 } / d } + \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { \\sigma ^ { 2 } } \\Big ) ) } \\\\ & \\displaystyle \\times \\exp ( - \\frac { 1 } { 2 } \\mathbf { w } _ { 0 , \\star } ^ { \\top } ( ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { R ^ { 2 } / d } ) \\mathbf { w } _ { 0 , \\star } + \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\Big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\Big ) ^ { - 1 } \\frac \\mathbf { X } _ { t } ^ \\top \\end{array}", + "type": "interline_equation", + "image_path": "496cf2be8a1bb485ad0d20abb78f73664d8b28ade9ef4f7ae5ee45de4d817e0f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 111, + 126, + 506, + 168.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 111, + 168.66666666666666, + 506, + 211.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 111, + 211.33333333333331, + 506, + 253.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 506, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 399, + 266 + ], + "score": 1.0, + "content": "where (i) is obtained by integrating a multivariate Gaussian density over", + "type": "text" + }, + { + "bbox": [ + 399, + 256, + 412, + 266 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 254, + 438, + 266 + ], + "score": 1.0, + "content": ", and “", + "type": "text" + }, + { + "bbox": [ + 438, + 256, + 447, + 264 + ], + "score": 0.54, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 254, + 506, + 266 + ], + "score": 1.0, + "content": "” drops all the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 220, + 277 + ], + "score": 1.0, + "content": "terms that do not depend on", + "type": "text" + }, + { + "bbox": [ + 220, + 266, + 240, + 277 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 264, + 505, + 277 + ], + "score": 1.0, + "content": ". Therefore, by the Bayes rule, the overall posterior distribution of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 276, + 175, + 289 + ], + "spans": [ + { + "bbox": [ + 107, + 281, + 127, + 289 + ], + "score": 0.84, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 276, + 175, + 289 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 109, + 289, + 514, + 393 + ], + "lines": [ + { + "bbox": [ + 111, + 289, + 514, + 393 + ], + "spans": [ + { + "bbox": [ + 111, + 289, + 514, + 393 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { p \\Big ( \\mathbf { w } _ { 0 , \\star } | \\{ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\} _ { t = 1 } ^ { T } \\Big ) \\propto p ( \\mathbf { w } _ { 0 , \\star } ) \\cdot \\displaystyle \\prod _ { t = 1 } ^ { T } p ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } | \\mathbf { w } _ { 0 , \\star } ) } \\\\ & { \\propto \\exp \\left( - \\frac { \\displaystyle \\| \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { \\displaystyle 2 \\sigma _ { w } ^ { 2 } / d } \\right) \\cdot } \\\\ & { \\qquad \\displaystyle \\prod _ { t = 1 } ^ { T } \\exp \\left( - \\frac { 1 } { 2 } \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\left( \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\right) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { R ^ { 2 } / d } \\right) \\mathbf { w } _ { 0 , \\star } + \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\right) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { R ^ { 2 } / d } \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "97745759b4ad8a5db4ae975338713a83936bf5c5de9b7f924e1d0f787f451bc6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 109, + 289, + 514, + 323.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 109, + 323.6666666666667, + 514, + 358.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 109, + 358.33333333333337, + 514, + 393.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 394, + 509, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 283, + 406 + ], + "score": 1.0, + "content": "This means that the posterior distribution of", + "type": "text" + }, + { + "bbox": [ + 284, + 398, + 303, + 406 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "is Gaussian, with mean , i.e. the Bayesian estima-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 405, + 160, + 418 + ], + "spans": [ + { + "bbox": [ + 104, + 405, + 160, + 418 + ], + "score": 1.0, + "content": "tor, equal to5", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 419, + 419, + 439 + ], + "lines": [ + { + "bbox": [ + 190, + 419, + 419, + 439 + ], + "spans": [ + { + "bbox": [ + 190, + 419, + 419, + 439 + ], + "score": 0.86, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { B a y e s } } : = \\mathbb { E } \\Big [ \\mathbf { w } _ { 0 , \\star } \\ | \\ \\{ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\} _ { t = 1 } ^ { T } \\Big ] = ( \\mathbf { A } _ { T } ^ { \\mathsf { B a y e s } } ) ^ { - 1 } \\mathbf { c } _ { T } ^ { \\mathsf { B a y e s } } ,", + "type": "interline_equation", + "image_path": "4beeae1af89269a1f491f3c304d64e128abb386924f2d9b5391b0929f3f7a05d.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 190, + 419, + 419, + 439 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 133, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 135, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 135, + 453 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 452, + 416, + 522 + ], + "lines": [ + { + "bbox": [ + 194, + 452, + 416, + 522 + ], + "spans": [ + { + "bbox": [ + 194, + 452, + 416, + 522 + ], + "score": 0.88, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "e318130a816b75c02e275534db2a6a3d8e65ca84668f81766c2d8e6a1bbcf575.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 194, + 452, + 416, + 466.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 194, + 466.0, + 416, + 480.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 194, + 480.0, + 416, + 494.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 194, + 494.0, + 416, + 508.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 194, + 508.0, + 416, + 522.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 504, + 548 + ], + "lines": [ + { + "bbox": [ + 103, + 519, + 507, + 539 + ], + "spans": [ + { + "bbox": [ + 103, + 519, + 163, + 539 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 163, + 524, + 190, + 538 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 519, + 507, + 539 + ], + "score": 1.0, + "content": "has a similar form as our train-train estimator, but is not exactly the same.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 535, + 384, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 384, + 549 + ], + "score": 1.0, + "content": "Indeed, recall the closed form of our train-train estimator is (cf. (10))", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 548, + 354, + 564 + ], + "lines": [ + { + "bbox": [ + 255, + 548, + 354, + 564 + ], + "spans": [ + { + "bbox": [ + 255, + 548, + 354, + 564 + ], + "score": 0.85, + "content": "\\_", + "type": "interline_equation", + "image_path": "9e47834a51e8c08936aa39b50ba161f0a16913556b11f23f11ad33ddb8a1ed7e.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 255, + 548, + 354, + 564 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 133, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 134, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 134, + 576 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 575, + 388, + 646 + ], + "lines": [ + { + "bbox": [ + 223, + 575, + 388, + 646 + ], + "spans": [ + { + "bbox": [ + 223, + 575, + 388, + 646 + ], + "score": 0.92, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "1cb9e01e675e90c528a5913923c53e142b7d8dbff1e6e04a1c578b482eae30be.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 223, + 575, + 388, + 589.2 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 223, + 589.2, + 388, + 603.4000000000001 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 223, + 603.4000000000001, + 388, + 617.6000000000001 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 223, + 617.6000000000001, + 388, + 631.8000000000002 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 223, + 631.8000000000002, + 388, + 646.0000000000002 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 506, + 694 + ], + "lines": [ + { + "bbox": [ + 106, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 150, + 662 + ], + "score": 1.0, + "content": "As w Bayes0,T", + "type": "text" + }, + { + "bbox": [ + 148, + 646, + 233, + 662 + ], + "score": 1.0, + "content": "uses the inverse and", + "type": "text" + }, + { + "bbox": [ + 233, + 648, + 256, + 662 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "uses the squared inverse, these two sets of estimators are not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 297, + 673 + ], + "score": 1.0, + "content": "the same in general, no matter how we tune the", + "type": "text" + }, + { + "bbox": [ + 297, + 662, + 304, + 671 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "in the train-train estimator. This is true even if we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 120, + 684 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 121, + 673, + 159, + 683 + ], + "score": 0.86, + "content": "\\sigma _ { w } = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 672, + 240, + 684 + ], + "score": 1.0, + "content": "so that the prior of", + "type": "text" + }, + { + "bbox": [ + 240, + 675, + 260, + 685 + ], + "score": 0.81, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 672, + 506, + 684 + ], + "score": 1.0, + "content": "becomes degenerate (and the Bayesian estimator reduces to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 681, + 151, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 151, + 695 + ], + "score": 1.0, + "content": "the MLE).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + } + ], + "page_idx": 29, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 700, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 698, + 446, + 712 + ], + "spans": [ + { + "bbox": [ + 119, + 698, + 190, + 712 + ], + "score": 1.0, + "content": "4Hereafter we treat", + "type": "text" + }, + { + "bbox": [ + 190, + 702, + 202, + 711 + ], + "score": 0.79, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 698, + 296, + 712 + ], + "score": 1.0, + "content": "as fixed, as the density of", + "type": "text" + }, + { + "bbox": [ + 297, + 703, + 308, + 711 + ], + "score": 0.88, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 698, + 446, + 712 + ], + "score": 1.0, + "content": "won’t affect the Bayesian calculation.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 168, + 723 + ], + "score": 1.0, + "content": "5Any density", + "type": "text" + }, + { + "bbox": [ + 169, + 712, + 299, + 722 + ], + "score": 0.88, + "content": "p ( \\mathbf { w } ) \\propto \\mathrm { e x p } ( - \\mathbf { w } ^ { \\top } \\mathbf { A } \\mathbf { w } / 2 + \\mathbf { w } ^ { \\top } \\mathbf { c } )", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 709, + 424, + 723 + ], + "score": 1.0, + "content": "specifies a Gaussian distreibution", + "type": "text" + }, + { + "bbox": [ + 424, + 713, + 456, + 723 + ], + "score": 0.91, + "content": "\\mathsf { N } ( { \\boldsymbol { \\mu } } , { \\boldsymbol { \\Sigma } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 709, + 484, + 723 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 485, + 712, + 506, + 722 + ], + "score": 0.69, + "content": "\\mathbf { A } =", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 107, + 720, + 260, + 732 + ], + "spans": [ + { + "bbox": [ + 107, + 721, + 125, + 731 + ], + "score": 0.85, + "content": "\\Sigma ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 720, + 141, + 732 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 142, + 722, + 183, + 732 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 720, + 213, + 732 + ], + "score": 1.0, + "content": ", so that", + "type": "text" + }, + { + "bbox": [ + 214, + 722, + 255, + 732 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 720, + 260, + 732 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "30", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 109 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 420, + 96 + ], + "score": 1.0, + "content": "Bayesian estimator We now derive the Bayesian posterior mean estimator of", + "type": "text" + }, + { + "bbox": [ + 421, + 84, + 441, + 95 + ], + "score": 0.85, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 81, + 505, + 96 + ], + "score": 1.0, + "content": ", which requires", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 91, + 423, + 112 + ], + "spans": [ + { + "bbox": [ + 104, + 91, + 276, + 112 + ], + "score": 1.0, + "content": "us to compute the posterior distribution of", + "type": "text" + }, + { + "bbox": [ + 277, + 97, + 297, + 109 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 91, + 356, + 112 + ], + "score": 1.0, + "content": "given the data", + "type": "text" + }, + { + "bbox": [ + 357, + 95, + 418, + 109 + ], + "score": 0.91, + "content": "4", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 91, + 423, + 112 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 104, + 81, + 505, + 112 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 113, + 414, + 125 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 411, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 398, + 127 + ], + "score": 1.0, + "content": "We begin by computing the likelihood of one task by marginalizing over", + "type": "text" + }, + { + "bbox": [ + 398, + 115, + 411, + 124 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 111, + 411, + 127 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 126, + 506, + 254 + ], + "lines": [ + { + "bbox": [ + 111, + 126, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 111, + 126, + 506, + 254 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { p ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } | \\mathbf { w } _ { 0 , \\star } ) \\propto \\displaystyle \\int p ( \\mathbf { w } _ { t } | \\mathbf { w } _ { 0 , \\star } ) \\cdot p ( \\mathbf { y } _ { t } | \\mathbf { X } _ { t } , \\mathbf { w } _ { t } ) d \\mathbf { w } _ { t } } \\\\ & { \\displaystyle \\times \\displaystyle \\int \\exp ( - \\frac { \\| \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { 2 R ^ { 2 } / d } ) \\cdot \\exp ( - \\frac { \\| \\mathbf { y } _ { t } - \\mathbf { X } _ { t } \\mathbf { w } _ { t } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } ) d \\mathbf { w } _ { t } } \\\\ & { \\displaystyle \\overset { ( i ) } { \\propto } \\exp ( - \\frac { \\| \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { 2 R ^ { 2 } / d } + \\frac { 1 } { 2 } \\Big ( \\frac { \\mathbf { w } _ { 0 , \\star } } { R ^ { 2 } / d } + \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { \\sigma ^ { 2 } } \\Big ) ^ { \\top } \\Big ( \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { \\sigma ^ { 2 } } + \\frac { \\mathbf { I } _ { d } } { R ^ { 2 } / d } \\Big ) ^ { - 1 } \\Big ( \\frac { \\mathbf { w } _ { 0 , \\star } } { R ^ { 2 } / d } + \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { \\sigma ^ { 2 } } \\Big ) ) } \\\\ & \\displaystyle \\times \\exp ( - \\frac { 1 } { 2 } \\mathbf { w } _ { 0 , \\star } ^ { \\top } ( ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { R ^ { 2 } / d } ) \\mathbf { w } _ { 0 , \\star } + \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\Big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\Big ) ^ { - 1 } \\frac \\mathbf { X } _ { t } ^ \\top \\end{array}", + "type": "interline_equation", + "image_path": "496cf2be8a1bb485ad0d20abb78f73664d8b28ade9ef4f7ae5ee45de4d817e0f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 111, + 126, + 506, + 168.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 111, + 168.66666666666666, + 506, + 211.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 111, + 211.33333333333331, + 506, + 253.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 506, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 399, + 266 + ], + "score": 1.0, + "content": "where (i) is obtained by integrating a multivariate Gaussian density over", + "type": "text" + }, + { + "bbox": [ + 399, + 256, + 412, + 266 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 254, + 438, + 266 + ], + "score": 1.0, + "content": ", and “", + "type": "text" + }, + { + "bbox": [ + 438, + 256, + 447, + 264 + ], + "score": 0.54, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 254, + 506, + 266 + ], + "score": 1.0, + "content": "” drops all the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 220, + 277 + ], + "score": 1.0, + "content": "terms that do not depend on", + "type": "text" + }, + { + "bbox": [ + 220, + 266, + 240, + 277 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 264, + 505, + 277 + ], + "score": 1.0, + "content": ". Therefore, by the Bayes rule, the overall posterior distribution of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 276, + 175, + 289 + ], + "spans": [ + { + "bbox": [ + 107, + 281, + 127, + 289 + ], + "score": 0.84, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 276, + 175, + 289 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 254, + 506, + 289 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 109, + 289, + 514, + 393 + ], + "lines": [ + { + "bbox": [ + 111, + 289, + 514, + 393 + ], + "spans": [ + { + "bbox": [ + 111, + 289, + 514, + 393 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { p \\Big ( \\mathbf { w } _ { 0 , \\star } | \\{ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\} _ { t = 1 } ^ { T } \\Big ) \\propto p ( \\mathbf { w } _ { 0 , \\star } ) \\cdot \\displaystyle \\prod _ { t = 1 } ^ { T } p ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } | \\mathbf { w } _ { 0 , \\star } ) } \\\\ & { \\propto \\exp \\left( - \\frac { \\displaystyle \\| \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { \\displaystyle 2 \\sigma _ { w } ^ { 2 } / d } \\right) \\cdot } \\\\ & { \\qquad \\displaystyle \\prod _ { t = 1 } ^ { T } \\exp \\left( - \\frac { 1 } { 2 } \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\left( \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\right) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { R ^ { 2 } / d } \\right) \\mathbf { w } _ { 0 , \\star } + \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\right) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { R ^ { 2 } / d } \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "97745759b4ad8a5db4ae975338713a83936bf5c5de9b7f924e1d0f787f451bc6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 109, + 289, + 514, + 323.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 109, + 323.6666666666667, + 514, + 358.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 109, + 358.33333333333337, + 514, + 393.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 394, + 509, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 283, + 406 + ], + "score": 1.0, + "content": "This means that the posterior distribution of", + "type": "text" + }, + { + "bbox": [ + 284, + 398, + 303, + 406 + ], + "score": 0.87, + "content": "\\mathbf { w } _ { 0 , \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "is Gaussian, with mean , i.e. the Bayesian estima-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 405, + 160, + 418 + ], + "spans": [ + { + "bbox": [ + 104, + 405, + 160, + 418 + ], + "score": 1.0, + "content": "tor, equal to5", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 392, + 505, + 418 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 419, + 419, + 439 + ], + "lines": [ + { + "bbox": [ + 190, + 419, + 419, + 439 + ], + "spans": [ + { + "bbox": [ + 190, + 419, + 419, + 439 + ], + "score": 0.86, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { B a y e s } } : = \\mathbb { E } \\Big [ \\mathbf { w } _ { 0 , \\star } \\ | \\ \\{ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\} _ { t = 1 } ^ { T } \\Big ] = ( \\mathbf { A } _ { T } ^ { \\mathsf { B a y e s } } ) ^ { - 1 } \\mathbf { c } _ { T } ^ { \\mathsf { B a y e s } } ,", + "type": "interline_equation", + "image_path": "4beeae1af89269a1f491f3c304d64e128abb386924f2d9b5391b0929f3f7a05d.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 190, + 419, + 419, + 439 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 133, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 135, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 135, + 453 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 440, + 135, + 453 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 452, + 416, + 522 + ], + "lines": [ + { + "bbox": [ + 194, + 452, + 416, + 522 + ], + "spans": [ + { + "bbox": [ + 194, + 452, + 416, + 522 + ], + "score": 0.88, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "e318130a816b75c02e275534db2a6a3d8e65ca84668f81766c2d8e6a1bbcf575.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 194, + 452, + 416, + 466.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 194, + 466.0, + 416, + 480.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 194, + 480.0, + 416, + 494.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 194, + 494.0, + 416, + 508.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 194, + 508.0, + 416, + 522.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 504, + 548 + ], + "lines": [ + { + "bbox": [ + 103, + 519, + 507, + 539 + ], + "spans": [ + { + "bbox": [ + 103, + 519, + 163, + 539 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 163, + 524, + 190, + 538 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 519, + 507, + 539 + ], + "score": 1.0, + "content": "has a similar form as our train-train estimator, but is not exactly the same.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 535, + 384, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 384, + 549 + ], + "score": 1.0, + "content": "Indeed, recall the closed form of our train-train estimator is (cf. (10))", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 103, + 519, + 507, + 549 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 255, + 548, + 354, + 564 + ], + "lines": [ + { + "bbox": [ + 255, + 548, + 354, + 564 + ], + "spans": [ + { + "bbox": [ + 255, + 548, + 354, + 564 + ], + "score": 0.85, + "content": "\\_", + "type": "interline_equation", + "image_path": "9e47834a51e8c08936aa39b50ba161f0a16913556b11f23f11ad33ddb8a1ed7e.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 255, + 548, + 354, + 564 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 133, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 134, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 134, + 576 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 565, + 134, + 576 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 575, + 388, + 646 + ], + "lines": [ + { + "bbox": [ + 223, + 575, + 388, + 646 + ], + "spans": [ + { + "bbox": [ + 223, + 575, + 388, + 646 + ], + "score": 0.92, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "1cb9e01e675e90c528a5913923c53e142b7d8dbff1e6e04a1c578b482eae30be.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 223, + 575, + 388, + 589.2 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 223, + 589.2, + 388, + 603.4000000000001 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 223, + 603.4000000000001, + 388, + 617.6000000000001 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 223, + 617.6000000000001, + 388, + 631.8000000000002 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 223, + 631.8000000000002, + 388, + 646.0000000000002 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 506, + 694 + ], + "lines": [ + { + "bbox": [ + 106, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 150, + 662 + ], + "score": 1.0, + "content": "As w Bayes0,T", + "type": "text" + }, + { + "bbox": [ + 148, + 646, + 233, + 662 + ], + "score": 1.0, + "content": "uses the inverse and", + "type": "text" + }, + { + "bbox": [ + 233, + 648, + 256, + 662 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "uses the squared inverse, these two sets of estimators are not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 297, + 673 + ], + "score": 1.0, + "content": "the same in general, no matter how we tune the", + "type": "text" + }, + { + "bbox": [ + 297, + 662, + 304, + 671 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "in the train-train estimator. This is true even if we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 120, + 684 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 121, + 673, + 159, + 683 + ], + "score": 0.86, + "content": "\\sigma _ { w } = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 672, + 240, + 684 + ], + "score": 1.0, + "content": "so that the prior of", + "type": "text" + }, + { + "bbox": [ + 240, + 675, + 260, + 685 + ], + "score": 0.81, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 672, + 506, + 684 + ], + "score": 1.0, + "content": "becomes degenerate (and the Bayesian estimator reduces to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 681, + 151, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 151, + 695 + ], + "score": 1.0, + "content": "the MLE).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 646, + 506, + 695 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 105, + 82, + 464, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 466, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 466, + 96 + ], + "score": 1.0, + "content": "D DETAILS ON THE FEW-SHOT IMAGE CLASSIFICATION EXPERIMENT", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 108, + 495, + 119 + ], + "lines": [ + { + "bbox": [ + 106, + 107, + 496, + 121 + ], + "spans": [ + { + "bbox": [ + 106, + 107, + 496, + 121 + ], + "score": 1.0, + "content": "Here we provide additional details of the few-shot image classification experiment in Section 5.2.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 135, + 504, + 171 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 148 + ], + "score": 1.0, + "content": "Optimization and architecture For both methods, we run a few gradient steps on the inner argmin", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 144, + 506, + 165 + ], + "spans": [ + { + "bbox": [ + 104, + 144, + 277, + 165 + ], + "score": 1.0, + "content": "problem to obtain (an approximation of)", + "type": "text" + }, + { + "bbox": [ + 277, + 150, + 290, + 160 + ], + "score": 0.84, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 144, + 335, + 165 + ], + "score": 1.0, + "content": ", and plug", + "type": "text" + }, + { + "bbox": [ + 335, + 150, + 349, + 160 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 144, + 386, + 165 + ], + "score": 1.0, + "content": "into the", + "type": "text" + }, + { + "bbox": [ + 403, + 144, + 506, + 162 + ], + "score": 1.0, + "content": "`{tr-val,tr-tr}t (w0) (which", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 158, + 468, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 141, + 174 + ], + "score": 1.0, + "content": "involves", + "type": "text" + }, + { + "bbox": [ + 142, + 161, + 155, + 171 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 158, + 381, + 174 + ], + "score": 1.0, + "content": "through implicit function differentiation) for optimizing", + "type": "text" + }, + { + "bbox": [ + 381, + 162, + 395, + 171 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 158, + 468, + 174 + ], + "score": 1.0, + "content": "in the outer loop.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 177, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 177, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 505, + 188 + ], + "score": 1.0, + "content": "For both train-train and train-val methods, we use the standard 4-layer convolutional network", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 187, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 437, + 199 + ], + "score": 1.0, + "content": "in (Finn et al., 2017; Zhou et al., 2019) as the backbone (i.e. the architecture for", + "type": "text" + }, + { + "bbox": [ + 437, + 189, + 450, + 199 + ], + "score": 0.81, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 187, + 506, + 199 + ], + "score": 1.0, + "content": "). We further", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 198, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 362, + 212 + ], + "score": 1.0, + "content": "tune their hyper-parameters, such as the regularization constant", + "type": "text" + }, + { + "bbox": [ + 362, + 199, + 369, + 209 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 198, + 505, + 212 + ], + "score": 1.0, + "content": ", the learning rate (initial learning", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 210, + 362, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 362, + 221 + ], + "score": 1.0, + "content": "rate and its decay strategy), and the gradient clipping threshold.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "Datasets We experiment on miniImageNet (Ravi & Larochelle, 2017) and tieredImageNet (Ren", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "et al., 2018). MiniImageNet consists of 100 classes of images from ImageNet (Krizhevsky et al.,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 311, + 271 + ], + "score": 1.0, + "content": "2012) and each class has 600 images of resolution", + "type": "text" + }, + { + "bbox": [ + 311, + 259, + 362, + 269 + ], + "score": 0.91, + "content": "8 4 \\times 8 4 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 257, + 505, + 271 + ], + "score": 1.0, + "content": ". We use 64 classes for training, 16", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "classes for validation, and the remaining 20 classes for testing (Ravi & Larochelle, 2017). Tiered-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "ImageNet consists of 608 classes from the ILSVRC-12 data set (Russakovsky et al., 2015) and each", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 290, + 504, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 219, + 303 + ], + "score": 1.0, + "content": "image is also of resolution", + "type": "text" + }, + { + "bbox": [ + 220, + 291, + 274, + 302 + ], + "score": 0.92, + "content": "8 4 \\times 8 4 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 290, + 504, + 303 + ], + "score": 1.0, + "content": ". TieredImageNet groups classes into broader hierarchy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "categories corresponding to higher-level nodes in the ImageNet. Specifically, its top hierarchy has", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "20 training categories (351 classes), 6 validation categories (97 classes) and 8 test categories (160", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "classes). This structure ensures that all training classes are distinct from the testing classes, provid-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 335, + 296, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 296, + 348 + ], + "score": 1.0, + "content": "ing a more realistic few-shot learning scenario.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 364, + 383, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 384, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 384, + 376 + ], + "score": 1.0, + "content": "D.1 EFFECT OF THE SPLIT RATIO FOR THE TRAIN-VAL METHOD", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 385, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 208, + 398 + ], + "score": 1.0, + "content": "We further tune the split", + "type": "text" + }, + { + "bbox": [ + 209, + 386, + 242, + 398 + ], + "score": 0.93, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "in the train-val method and report the results in Table 2. As can", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 397, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 262, + 408 + ], + "score": 1.0, + "content": "be seen, as the number of test samples", + "type": "text" + }, + { + "bbox": [ + 263, + 398, + 275, + 407 + ], + "score": 0.84, + "content": "n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 397, + 505, + 408 + ], + "score": 1.0, + "content": "increases, the percent classification accuracy on both the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "miniImageNet and tieredImageNet datasets becomes higher. This testifies our theoretical affirmation", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 417, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 369, + 432 + ], + "score": 1.0, + "content": "in Corollary 8. However, note that even if we take the best split", + "type": "text" + }, + { + "bbox": [ + 370, + 418, + 446, + 430 + ], + "score": 0.93, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 5 , 2 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 417, + 505, + 432 + ], + "score": 1.0, + "content": "(and compare", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 429, + 465, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 465, + 441 + ], + "score": 1.0, + "content": "again with Table 1), the train-val method still performs worse than the train-train method.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "We remark that our theoretical results on train-train performing better than train-val (in Section 4)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "rely on the assumptions that the data can be exactly realized by the representation and contains no", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "score": 1.0, + "content": "label noise. Our experimental results here may suggest that the miniImageNet and tieredImageNet", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 479, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 504, + 491 + ], + "score": 1.0, + "content": "few-shot tasks may have a similar structure (there exists a NN representation that almost perfectly", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 491, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 502 + ], + "score": 1.0, + "content": "realizes the label with no noise) that allows the train-train method to perform better than the train-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 501, + 155, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 155, + 512 + ], + "score": 1.0, + "content": "val method.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + }, + { + "type": "table", + "bbox": [ + 107, + 550, + 505, + 590 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 525, + 503, + 547 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "Table 2: Investigation of the effects of training/validation splitting ratio in the train-val method", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 536, + 477, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 304, + 547 + ], + "score": 1.0, + "content": "(iMAML) to the few-shot classification accuracy", + "type": "text" + }, + { + "bbox": [ + 304, + 536, + 320, + 547 + ], + "score": 0.81, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 536, + 477, + 547 + ], + "score": 1.0, + "content": "on miniImageNet and tieredImageNet.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 550, + 505, + 590 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 550, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 107, + 550, + 505, + 590 + ], + "score": 0.973, + "html": "
datasetsn1 =25,n2=5n1 =15,n2=15n1=5,n2=25
miniImageNet62.09 ± 0.9763.56 ± 0.9563.92 ± 1.04
tieredImageNet66.45 ± 1.0567.30 ± 0.9867.50 ± 0.94
", + "type": "table", + "image_path": "9b3589ab9c67f312176bc17e9f674f76a73b91e8199969341ce8dbcf007a5d24.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 107, + 550, + 505, + 563.3333333333334 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 107, + 563.3333333333334, + 505, + 576.6666666666667 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 107, + 576.6666666666667, + 505, + 590.0000000000001 + ], + "spans": [], + "index": 35 + } + ] + } + ], + "index": 32.75 + }, + { + "type": "title", + "bbox": [ + 108, + 622, + 445, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 447, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 447, + 636 + ], + "score": 1.0, + "content": "E COMPARISON WITH CROSS-VALIDATION ON SYNTHETIC DATA", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 650, + 503, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "We test the effect of using cross-validation for the train-val method on the same synthetic data", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 660, + 344, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 344, + 673 + ], + "score": 1.0, + "content": "(realizable linear centroid meta-learning) as in Section 5.1.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 688, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 295, + 699 + ], + "score": 1.0, + "content": "Method We fix the number of per-task data", + "type": "text" + }, + { + "bbox": [ + 296, + 690, + 328, + 698 + ], + "score": 0.86, + "content": "n = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 686, + 505, + 699 + ], + "score": 1.0, + "content": ", and use 4-fold cross validation in the fol-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 194, + 711 + ], + "score": 1.0, + "content": "lowing two settings:", + "type": "text" + }, + { + "bbox": [ + 194, + 700, + 271, + 711 + ], + "score": 0.91, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 698, + 294, + 711 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 294, + 700, + 371, + 711 + ], + "score": 0.91, + "content": "( n _ { 1 } , n _ { 2 } ) \\ : = \\ : ( 1 5 , 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 698, + 506, + 711 + ], + "score": 1.0, + "content": ". In both cases, we partition the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "score": 1.0, + "content": "data into 4 parts each with 5 data points, and we roulette over 4 possible partitions of which one as", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 336, + 733 + ], + "score": 1.0, + "content": "train and which one as validation. The estimated optimal", + "type": "text" + }, + { + "bbox": [ + 336, + 723, + 352, + 733 + ], + "score": 0.92, + "content": "\\hat { \\mathbf { w } } _ { 0 } ^ { \\mathrm { c v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "is obtained by minimize the averaged", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + } + ], + "page_idx": 30, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 105, + 82, + 464, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 466, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 466, + 96 + ], + "score": 1.0, + "content": "D DETAILS ON THE FEW-SHOT IMAGE CLASSIFICATION EXPERIMENT", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 108, + 495, + 119 + ], + "lines": [ + { + "bbox": [ + 106, + 107, + 496, + 121 + ], + "spans": [ + { + "bbox": [ + 106, + 107, + 496, + 121 + ], + "score": 1.0, + "content": "Here we provide additional details of the few-shot image classification experiment in Section 5.2.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 107, + 496, + 121 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 135, + 504, + 171 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 148 + ], + "score": 1.0, + "content": "Optimization and architecture For both methods, we run a few gradient steps on the inner argmin", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 144, + 506, + 165 + ], + "spans": [ + { + "bbox": [ + 104, + 144, + 277, + 165 + ], + "score": 1.0, + "content": "problem to obtain (an approximation of)", + "type": "text" + }, + { + "bbox": [ + 277, + 150, + 290, + 160 + ], + "score": 0.84, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 144, + 335, + 165 + ], + "score": 1.0, + "content": ", and plug", + "type": "text" + }, + { + "bbox": [ + 335, + 150, + 349, + 160 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 144, + 386, + 165 + ], + "score": 1.0, + "content": "into the", + "type": "text" + }, + { + "bbox": [ + 403, + 144, + 506, + 162 + ], + "score": 1.0, + "content": "`{tr-val,tr-tr}t (w0) (which", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 158, + 468, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 141, + 174 + ], + "score": 1.0, + "content": "involves", + "type": "text" + }, + { + "bbox": [ + 142, + 161, + 155, + 171 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 158, + 381, + 174 + ], + "score": 1.0, + "content": "through implicit function differentiation) for optimizing", + "type": "text" + }, + { + "bbox": [ + 381, + 162, + 395, + 171 + ], + "score": 0.86, + "content": "\\mathbf { w } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 158, + 468, + 174 + ], + "score": 1.0, + "content": "in the outer loop.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 104, + 133, + 506, + 174 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 177, + 505, + 221 + ], + "lines": [ + { + "bbox": [ + 106, + 177, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 505, + 188 + ], + "score": 1.0, + "content": "For both train-train and train-val methods, we use the standard 4-layer convolutional network", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 187, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 437, + 199 + ], + "score": 1.0, + "content": "in (Finn et al., 2017; Zhou et al., 2019) as the backbone (i.e. the architecture for", + "type": "text" + }, + { + "bbox": [ + 437, + 189, + 450, + 199 + ], + "score": 0.81, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 187, + 506, + 199 + ], + "score": 1.0, + "content": "). We further", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 198, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 362, + 212 + ], + "score": 1.0, + "content": "tune their hyper-parameters, such as the regularization constant", + "type": "text" + }, + { + "bbox": [ + 362, + 199, + 369, + 209 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 198, + 505, + 212 + ], + "score": 1.0, + "content": ", the learning rate (initial learning", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 210, + 362, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 362, + 221 + ], + "score": 1.0, + "content": "rate and its decay strategy), and the gradient clipping threshold.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 177, + 506, + 221 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "Datasets We experiment on miniImageNet (Ravi & Larochelle, 2017) and tieredImageNet (Ren", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "et al., 2018). MiniImageNet consists of 100 classes of images from ImageNet (Krizhevsky et al.,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 311, + 271 + ], + "score": 1.0, + "content": "2012) and each class has 600 images of resolution", + "type": "text" + }, + { + "bbox": [ + 311, + 259, + 362, + 269 + ], + "score": 0.91, + "content": "8 4 \\times 8 4 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 257, + 505, + 271 + ], + "score": 1.0, + "content": ". We use 64 classes for training, 16", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "classes for validation, and the remaining 20 classes for testing (Ravi & Larochelle, 2017). Tiered-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "ImageNet consists of 608 classes from the ILSVRC-12 data set (Russakovsky et al., 2015) and each", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 290, + 504, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 219, + 303 + ], + "score": 1.0, + "content": "image is also of resolution", + "type": "text" + }, + { + "bbox": [ + 220, + 291, + 274, + 302 + ], + "score": 0.92, + "content": "8 4 \\times 8 4 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 290, + 504, + 303 + ], + "score": 1.0, + "content": ". TieredImageNet groups classes into broader hierarchy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "categories corresponding to higher-level nodes in the ImageNet. Specifically, its top hierarchy has", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "20 training categories (351 classes), 6 validation categories (97 classes) and 8 test categories (160", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "classes). This structure ensures that all training classes are distinct from the testing classes, provid-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 335, + 296, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 296, + 348 + ], + "score": 1.0, + "content": "ing a more realistic few-shot learning scenario.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 236, + 506, + 348 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 364, + 383, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 384, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 384, + 376 + ], + "score": 1.0, + "content": "D.1 EFFECT OF THE SPLIT RATIO FOR THE TRAIN-VAL METHOD", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 385, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 208, + 398 + ], + "score": 1.0, + "content": "We further tune the split", + "type": "text" + }, + { + "bbox": [ + 209, + 386, + 242, + 398 + ], + "score": 0.93, + "content": "( n _ { 1 } , n _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "in the train-val method and report the results in Table 2. As can", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 397, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 262, + 408 + ], + "score": 1.0, + "content": "be seen, as the number of test samples", + "type": "text" + }, + { + "bbox": [ + 263, + 398, + 275, + 407 + ], + "score": 0.84, + "content": "n _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 397, + 505, + 408 + ], + "score": 1.0, + "content": "increases, the percent classification accuracy on both the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "miniImageNet and tieredImageNet datasets becomes higher. This testifies our theoretical affirmation", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 417, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 369, + 432 + ], + "score": 1.0, + "content": "in Corollary 8. However, note that even if we take the best split", + "type": "text" + }, + { + "bbox": [ + 370, + 418, + 446, + 430 + ], + "score": 0.93, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 5 , 2 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 417, + 505, + 432 + ], + "score": 1.0, + "content": "(and compare", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 429, + 465, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 465, + 441 + ], + "score": 1.0, + "content": "again with Table 1), the train-val method still performs worse than the train-train method.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 386, + 505, + 441 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "We remark that our theoretical results on train-train performing better than train-val (in Section 4)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "rely on the assumptions that the data can be exactly realized by the representation and contains no", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 481 + ], + "score": 1.0, + "content": "label noise. Our experimental results here may suggest that the miniImageNet and tieredImageNet", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 479, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 504, + 491 + ], + "score": 1.0, + "content": "few-shot tasks may have a similar structure (there exists a NN representation that almost perfectly", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 491, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 502 + ], + "score": 1.0, + "content": "realizes the label with no noise) that allows the train-train method to perform better than the train-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 501, + 155, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 155, + 512 + ], + "score": 1.0, + "content": "val method.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 446, + 506, + 512 + ] + }, + { + "type": "table", + "bbox": [ + 107, + 550, + 505, + 590 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 525, + 503, + 547 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "Table 2: Investigation of the effects of training/validation splitting ratio in the train-val method", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 536, + 477, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 304, + 547 + ], + "score": 1.0, + "content": "(iMAML) to the few-shot classification accuracy", + "type": "text" + }, + { + "bbox": [ + 304, + 536, + 320, + 547 + ], + "score": 0.81, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 536, + 477, + 547 + ], + "score": 1.0, + "content": "on miniImageNet and tieredImageNet.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 550, + 505, + 590 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 550, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 107, + 550, + 505, + 590 + ], + "score": 0.973, + "html": "
datasetsn1 =25,n2=5n1 =15,n2=15n1=5,n2=25
miniImageNet62.09 ± 0.9763.56 ± 0.9563.92 ± 1.04
tieredImageNet66.45 ± 1.0567.30 ± 0.9867.50 ± 0.94
", + "type": "table", + "image_path": "9b3589ab9c67f312176bc17e9f674f76a73b91e8199969341ce8dbcf007a5d24.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 107, + 550, + 505, + 563.3333333333334 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 107, + 563.3333333333334, + 505, + 576.6666666666667 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 107, + 576.6666666666667, + 505, + 590.0000000000001 + ], + "spans": [], + "index": 35 + } + ] + } + ], + "index": 32.75 + }, + { + "type": "title", + "bbox": [ + 108, + 622, + 445, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 447, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 447, + 636 + ], + "score": 1.0, + "content": "E COMPARISON WITH CROSS-VALIDATION ON SYNTHETIC DATA", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 650, + 503, + 672 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "We test the effect of using cross-validation for the train-val method on the same synthetic data", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 660, + 344, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 344, + 673 + ], + "score": 1.0, + "content": "(realizable linear centroid meta-learning) as in Section 5.1.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 649, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 688, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 295, + 699 + ], + "score": 1.0, + "content": "Method We fix the number of per-task data", + "type": "text" + }, + { + "bbox": [ + 296, + 690, + 328, + 698 + ], + "score": 0.86, + "content": "n = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 686, + 505, + 699 + ], + "score": 1.0, + "content": ", and use 4-fold cross validation in the fol-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 194, + 711 + ], + "score": 1.0, + "content": "lowing two settings:", + "type": "text" + }, + { + "bbox": [ + 194, + 700, + 271, + 711 + ], + "score": 0.91, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 698, + 294, + 711 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 294, + 700, + 371, + 711 + ], + "score": 0.91, + "content": "( n _ { 1 } , n _ { 2 } ) \\ : = \\ : ( 1 5 , 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 698, + 506, + 711 + ], + "score": 1.0, + "content": ". In both cases, we partition the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 721 + ], + "score": 1.0, + "content": "data into 4 parts each with 5 data points, and we roulette over 4 possible partitions of which one as", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 336, + 733 + ], + "score": 1.0, + "content": "train and which one as validation. The estimated optimal", + "type": "text" + }, + { + "bbox": [ + 336, + 723, + 352, + 733 + ], + "score": 0.92, + "content": "\\hat { \\mathbf { w } } _ { 0 } ^ { \\mathrm { c v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "is obtained by minimize the averaged", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 686, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 245, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 246, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 246, + 95 + ], + "score": 1.0, + "content": "train-val loss over the 4 partitions:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 167, + 99, + 443, + 170 + ], + "lines": [ + { + "bbox": [ + 167, + 99, + 443, + 170 + ], + "spans": [ + { + "bbox": [ + 167, + 99, + 443, + 170 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\ell _ { t } ^ { \\mathrm { c v } } ( \\mathbf w _ { 0 } ) : = \\displaystyle \\frac { 1 } { 4 } \\sum _ { j = 1 } ^ { 4 } \\frac { 1 } { 2 n _ { v \\mathrm { e l } } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } , j } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } , j } \\mathcal { A } _ { \\lambda } ( \\mathbf w _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } , j } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } , j } ) \\right\\| ^ { 2 } , } \\\\ & { \\quad \\widehat { \\mathbf { w } } _ { 0 } ^ { \\mathrm { c v } } = \\displaystyle \\arg \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { c v } } ( \\mathbf w _ { 0 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "78318e4c5fda4d26ac0556ba88dd5153d13f0f1c94dd39f7e8a728534f715ef0.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 167, + 99, + 443, + 122.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 167, + 122.66666666666667, + 443, + 146.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 167, + 146.33333333333334, + 443, + 170.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 173, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 179, + 187 + ], + "score": 1.0, + "content": "where superscript", + "type": "text" + }, + { + "bbox": [ + 179, + 175, + 185, + 185 + ], + "score": 0.81, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 172, + 506, + 187 + ], + "score": 1.0, + "content": "denotes the index of the cross-validation. The performance is depicted in Figure", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 184, + 117, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 117, + 196 + ], + "score": 1.0, + "content": "2.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "image", + "bbox": [ + 155, + 213, + 443, + 419 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 155, + 213, + 443, + 419 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 213, + 443, + 419 + ], + "spans": [ + { + "bbox": [ + 155, + 213, + 443, + 419 + ], + "score": 0.971, + "type": "image", + "image_path": "1413c4c29e261cb27dc4940c073d6a489f71464d80755a6423234eec9cec32ea.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 155, + 213, + 443, + 226.73333333333332 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 155, + 226.73333333333332, + 443, + 240.46666666666664 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 155, + 240.46666666666664, + 443, + 254.19999999999996 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 155, + 254.19999999999996, + 443, + 267.9333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 155, + 267.9333333333333, + 443, + 281.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 155, + 281.66666666666663, + 443, + 295.4 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 155, + 295.4, + 443, + 309.1333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 155, + 309.1333333333333, + 443, + 322.8666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 155, + 322.8666666666667, + 443, + 336.6 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 155, + 336.6, + 443, + 350.33333333333337 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 155, + 350.33333333333337, + 443, + 364.0666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 155, + 364.0666666666667, + 443, + 377.80000000000007 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 155, + 377.80000000000007, + 443, + 391.5333333333334 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 155, + 391.5333333333334, + 443, + 405.26666666666677 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 155, + 405.26666666666677, + 443, + 419.0000000000001 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 427, + 505, + 464 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 103, + 425, + 504, + 445 + ], + "spans": [ + { + "bbox": [ + 103, + 425, + 333, + 445 + ], + "score": 1.0, + "content": "Figure 2: The scaled (by T ) `2-error of w {tr-tr,tr-val,cv}0,T a", + "type": "text" + }, + { + "bbox": [ + 327, + 426, + 375, + 443 + ], + "score": 1.0, + "content": "s the ratio", + "type": "text" + }, + { + "bbox": [ + 375, + 430, + 393, + 442 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 426, + 471, + 443 + ], + "score": 1.0, + "content": "varies from 0 to 3", + "type": "text" + }, + { + "bbox": [ + 471, + 430, + 504, + 441 + ], + "score": 0.78, + "content": "( n = 2 0", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 442, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 123, + 454 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 442, + 166, + 453 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 442, + 460, + 454 + ], + "score": 1.0, + "content": "are fixed). For the cross-validation method, the regularization coefficient", + "type": "text" + }, + { + "bbox": [ + 461, + 442, + 494, + 453 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 442, + 506, + 454 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 453, + 133, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 133, + 464 + ], + "score": 1.0, + "content": "tuned.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 287, + 505 + ], + "score": 1.0, + "content": "Result As showin in Figure 2, for both", + "type": "text" + }, + { + "bbox": [ + 287, + 491, + 369, + 504 + ], + "score": 0.89, + "content": "( n _ { 1 } , n _ { 2 } ) ~ = ~ ( 1 5 , 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 489, + 392, + 505 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 392, + 491, + 474, + 504 + ], + "score": 0.89, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 489, + 506, + 505 + ], + "score": 1.0, + "content": ", using", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "cross-validation consistently beats the performance of the train-val method. This demonstrates the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "variance-reduction effect of cross-validation. Note that the best performance (among the cross-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 522, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 261, + 538 + ], + "score": 1.0, + "content": "validation methods) is still achieved at", + "type": "text" + }, + { + "bbox": [ + 262, + 525, + 291, + 536 + ], + "score": 0.9, + "content": "n _ { 1 } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 522, + 505, + 538 + ], + "score": 1.0, + "content": ", similar as for the vanilla train-val method. However,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 535, + 487, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 487, + 547 + ], + "score": 1.0, + "content": "numerically, the best cross-validation performance is still not as good as the train-train method.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 559, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "Leave-one-out cross-validation Figure 3 left further tests with an increased number of per-task", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 141, + 583 + ], + "score": 1.0, + "content": "samples", + "type": "text" + }, + { + "bbox": [ + 141, + 570, + 172, + 580 + ], + "score": 0.83, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 569, + 506, + 583 + ], + "score": 1.0, + "content": ", and incorporates the train-val method with the leave-one-out cross-validation, i.e.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 580, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 107, + 582, + 182, + 593 + ], + "score": 0.88, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 580, + 200, + 593 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 200, + 581, + 275, + 593 + ], + "score": 0.9, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 1 , 3 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 580, + 506, + 593 + ], + "score": 1.0, + "content": ". We repeat the experiment 10 times for plotting the error", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 591, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 504, + 603 + ], + "score": 1.0, + "content": "bar (shaded area). We see that the train-train method still outperforms the train-val method with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 604, + 208, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 208, + 614 + ], + "score": 1.0, + "content": "leave-one-out validation.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 292, + 632 + ], + "score": 1.0, + "content": "We further increase the per-task sample size", + "type": "text" + }, + { + "bbox": [ + 293, + 624, + 299, + 630 + ], + "score": 0.69, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "to 200, and test the leave-one-out method with a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 169, + 642 + ], + "score": 1.0, + "content": "sample split of", + "type": "text" + }, + { + "bbox": [ + 169, + 631, + 250, + 643 + ], + "score": 0.89, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 1 , 1 9 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 630, + 505, + 642 + ], + "score": 1.0, + "content": ". We adopt a matrix inverse trick to mitigate the computational", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 102, + 637, + 509, + 659 + ], + "spans": [ + { + "bbox": [ + 102, + 637, + 189, + 659 + ], + "score": 1.0, + "content": "overhead of finding", + "type": "text" + }, + { + "bbox": [ + 189, + 643, + 289, + 656 + ], + "score": 0.89, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 637, + 456, + 659 + ], + "score": 1.0, + "content": ". To ease the computation, we also vary", + "type": "text" + }, + { + "bbox": [ + 456, + 645, + 462, + 654 + ], + "score": 0.73, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 637, + 509, + 659 + ], + "score": 1.0, + "content": "from 0 to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "400 on a coarse grid (with an increment of 80). From Figure 3 right, we see that the leave-one-out", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 343, + 678 + ], + "score": 1.0, + "content": "method can slightly beat the train-train method for some", + "type": "text" + }, + { + "bbox": [ + 343, + 668, + 360, + 678 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 665, + 452, + 678 + ], + "score": 1.0, + "content": "values. Compared to", + "type": "text" + }, + { + "bbox": [ + 452, + 666, + 486, + 676 + ], + "score": 0.86, + "content": "n = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 676, + 504, + 688 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 141, + 687 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 676, + 504, + 688 + ], + "score": 1.0, + "content": "experiments, this is the first time of seeing leave-one-out method outperforms the train-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 339, + 699 + ], + "score": 1.0, + "content": "train method. We suspect that the per-task sample size", + "type": "text" + }, + { + "bbox": [ + 340, + 693, + 346, + 698 + ], + "score": 0.86, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 687, + 505, + 699 + ], + "score": 1.0, + "content": "plays a vital role in the power of the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 227, + 711 + ], + "score": 1.0, + "content": "leave-one-out method: a large", + "type": "text" + }, + { + "bbox": [ + 228, + 704, + 234, + 709 + ], + "score": 0.83, + "content": "\\textit { \\textbf { u } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "tends to have a strong variance reduction effect in the leave-one-out", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "method, so that the performance can be improved. Yet using the leave-one-out method with a large", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 720, + 267, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 724, + 114, + 730 + ], + "score": 0.68, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 720, + 267, + 733 + ], + "score": 1.0, + "content": "invokes a high computational burden.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5 + } + ], + "page_idx": 31, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 245, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 246, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 246, + 95 + ], + "score": 1.0, + "content": "train-val loss over the 4 partitions:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 246, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 167, + 99, + 443, + 170 + ], + "lines": [ + { + "bbox": [ + 167, + 99, + 443, + 170 + ], + "spans": [ + { + "bbox": [ + 167, + 99, + 443, + 170 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\ell _ { t } ^ { \\mathrm { c v } } ( \\mathbf w _ { 0 } ) : = \\displaystyle \\frac { 1 } { 4 } \\sum _ { j = 1 } ^ { 4 } \\frac { 1 } { 2 n _ { v \\mathrm { e l } } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } , j } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } , j } \\mathcal { A } _ { \\lambda } ( \\mathbf w _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } , j } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } , j } ) \\right\\| ^ { 2 } , } \\\\ & { \\quad \\widehat { \\mathbf { w } } _ { 0 } ^ { \\mathrm { c v } } = \\displaystyle \\arg \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { c v } } ( \\mathbf w _ { 0 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "78318e4c5fda4d26ac0556ba88dd5153d13f0f1c94dd39f7e8a728534f715ef0.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 167, + 99, + 443, + 122.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 167, + 122.66666666666667, + 443, + 146.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 167, + 146.33333333333334, + 443, + 170.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 173, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 179, + 187 + ], + "score": 1.0, + "content": "where superscript", + "type": "text" + }, + { + "bbox": [ + 179, + 175, + 185, + 185 + ], + "score": 0.81, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 172, + 506, + 187 + ], + "score": 1.0, + "content": "denotes the index of the cross-validation. The performance is depicted in Figure", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 184, + 117, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 117, + 196 + ], + "score": 1.0, + "content": "2.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 172, + 506, + 196 + ] + }, + { + "type": "image", + "bbox": [ + 155, + 213, + 443, + 419 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 155, + 213, + 443, + 419 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 213, + 443, + 419 + ], + "spans": [ + { + "bbox": [ + 155, + 213, + 443, + 419 + ], + "score": 0.971, + "type": "image", + "image_path": "1413c4c29e261cb27dc4940c073d6a489f71464d80755a6423234eec9cec32ea.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 155, + 213, + 443, + 226.73333333333332 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 155, + 226.73333333333332, + 443, + 240.46666666666664 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 155, + 240.46666666666664, + 443, + 254.19999999999996 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 155, + 254.19999999999996, + 443, + 267.9333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 155, + 267.9333333333333, + 443, + 281.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 155, + 281.66666666666663, + 443, + 295.4 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 155, + 295.4, + 443, + 309.1333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 155, + 309.1333333333333, + 443, + 322.8666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 155, + 322.8666666666667, + 443, + 336.6 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 155, + 336.6, + 443, + 350.33333333333337 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 155, + 350.33333333333337, + 443, + 364.0666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 155, + 364.0666666666667, + 443, + 377.80000000000007 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 155, + 377.80000000000007, + 443, + 391.5333333333334 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 155, + 391.5333333333334, + 443, + 405.26666666666677 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 155, + 405.26666666666677, + 443, + 419.0000000000001 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 427, + 505, + 464 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 103, + 425, + 504, + 445 + ], + "spans": [ + { + "bbox": [ + 103, + 425, + 333, + 445 + ], + "score": 1.0, + "content": "Figure 2: The scaled (by T ) `2-error of w {tr-tr,tr-val,cv}0,T a", + "type": "text" + }, + { + "bbox": [ + 327, + 426, + 375, + 443 + ], + "score": 1.0, + "content": "s the ratio", + "type": "text" + }, + { + "bbox": [ + 375, + 430, + 393, + 442 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 426, + 471, + 443 + ], + "score": 1.0, + "content": "varies from 0 to 3", + "type": "text" + }, + { + "bbox": [ + 471, + 430, + 504, + 441 + ], + "score": 0.78, + "content": "( n = 2 0", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 442, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 123, + 454 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 442, + 166, + 453 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 442, + 460, + 454 + ], + "score": 1.0, + "content": "are fixed). For the cross-validation method, the regularization coefficient", + "type": "text" + }, + { + "bbox": [ + 461, + 442, + 494, + 453 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 442, + 506, + 454 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 453, + 133, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 133, + 464 + ], + "score": 1.0, + "content": "tuned.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 287, + 505 + ], + "score": 1.0, + "content": "Result As showin in Figure 2, for both", + "type": "text" + }, + { + "bbox": [ + 287, + 491, + 369, + 504 + ], + "score": 0.89, + "content": "( n _ { 1 } , n _ { 2 } ) ~ = ~ ( 1 5 , 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 489, + 392, + 505 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 392, + 491, + 474, + 504 + ], + "score": 0.89, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 489, + 506, + 505 + ], + "score": 1.0, + "content": ", using", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "cross-validation consistently beats the performance of the train-val method. This demonstrates the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "variance-reduction effect of cross-validation. Note that the best performance (among the cross-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 522, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 261, + 538 + ], + "score": 1.0, + "content": "validation methods) is still achieved at", + "type": "text" + }, + { + "bbox": [ + 262, + 525, + 291, + 536 + ], + "score": 0.9, + "content": "n _ { 1 } = 5", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 522, + 505, + 538 + ], + "score": 1.0, + "content": ", similar as for the vanilla train-val method. However,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 535, + 487, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 487, + 547 + ], + "score": 1.0, + "content": "numerically, the best cross-validation performance is still not as good as the train-train method.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 489, + 506, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 559, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "Leave-one-out cross-validation Figure 3 left further tests with an increased number of per-task", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 141, + 583 + ], + "score": 1.0, + "content": "samples", + "type": "text" + }, + { + "bbox": [ + 141, + 570, + 172, + 580 + ], + "score": 0.83, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 569, + 506, + 583 + ], + "score": 1.0, + "content": ", and incorporates the train-val method with the leave-one-out cross-validation, i.e.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 580, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 107, + 582, + 182, + 593 + ], + "score": 0.88, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 580, + 200, + 593 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 200, + 581, + 275, + 593 + ], + "score": 0.9, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 1 , 3 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 580, + 506, + 593 + ], + "score": 1.0, + "content": ". We repeat the experiment 10 times for plotting the error", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 591, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 504, + 603 + ], + "score": 1.0, + "content": "bar (shaded area). We see that the train-train method still outperforms the train-val method with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 604, + 208, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 208, + 614 + ], + "score": 1.0, + "content": "leave-one-out validation.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 559, + 506, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 292, + 632 + ], + "score": 1.0, + "content": "We further increase the per-task sample size", + "type": "text" + }, + { + "bbox": [ + 293, + 624, + 299, + 630 + ], + "score": 0.69, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "to 200, and test the leave-one-out method with a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 169, + 642 + ], + "score": 1.0, + "content": "sample split of", + "type": "text" + }, + { + "bbox": [ + 169, + 631, + 250, + 643 + ], + "score": 0.89, + "content": "( n _ { 1 } , n _ { 2 } ) = ( 1 , 1 9 9 )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 630, + 505, + 642 + ], + "score": 1.0, + "content": ". We adopt a matrix inverse trick to mitigate the computational", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 102, + 637, + 509, + 659 + ], + "spans": [ + { + "bbox": [ + 102, + 637, + 189, + 659 + ], + "score": 1.0, + "content": "overhead of finding", + "type": "text" + }, + { + "bbox": [ + 189, + 643, + 289, + 656 + ], + "score": 0.89, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 637, + 456, + 659 + ], + "score": 1.0, + "content": ". To ease the computation, we also vary", + "type": "text" + }, + { + "bbox": [ + 456, + 645, + 462, + 654 + ], + "score": 0.73, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 637, + 509, + 659 + ], + "score": 1.0, + "content": "from 0 to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "400 on a coarse grid (with an increment of 80). From Figure 3 right, we see that the leave-one-out", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 343, + 678 + ], + "score": 1.0, + "content": "method can slightly beat the train-train method for some", + "type": "text" + }, + { + "bbox": [ + 343, + 668, + 360, + 678 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 665, + 452, + 678 + ], + "score": 1.0, + "content": "values. Compared to", + "type": "text" + }, + { + "bbox": [ + 452, + 666, + 486, + 676 + ], + "score": 0.86, + "content": "n = 2 0", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 676, + 504, + 688 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 141, + 687 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 676, + 504, + 688 + ], + "score": 1.0, + "content": "experiments, this is the first time of seeing leave-one-out method outperforms the train-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 339, + 699 + ], + "score": 1.0, + "content": "train method. We suspect that the per-task sample size", + "type": "text" + }, + { + "bbox": [ + 340, + 693, + 346, + 698 + ], + "score": 0.86, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 687, + 505, + 699 + ], + "score": 1.0, + "content": "plays a vital role in the power of the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 227, + 711 + ], + "score": 1.0, + "content": "leave-one-out method: a large", + "type": "text" + }, + { + "bbox": [ + 228, + 704, + 234, + 709 + ], + "score": 0.83, + "content": "\\textit { \\textbf { u } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "tends to have a strong variance reduction effect in the leave-one-out", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "method, so that the performance can be improved. Yet using the leave-one-out method with a large", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 720, + 267, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 724, + 114, + 730 + ], + "score": 0.68, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 720, + 267, + 733 + ], + "score": 1.0, + "content": "invokes a high computational burden.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5, + "bbox_fs": [ + 102, + 618, + 509, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 89, + 485, + 244 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 89, + 485, + 244 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 89, + 485, + 244 + ], + "spans": [ + { + "bbox": [ + 112, + 89, + 485, + 244 + ], + "score": 0.968, + "type": "image", + "image_path": "a7ec48a17bacf333016e73c4c25d108d4a28507720d736827797d2c569bc6621.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 89, + 485, + 140.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 140.66666666666666, + 485, + 192.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 192.33333333333331, + 485, + 243.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 253, + 505, + 302 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 102, + 251, + 504, + 270 + ], + "spans": [ + { + "bbox": [ + 102, + 251, + 307, + 270 + ], + "score": 1.0, + "content": "Figure 3: The scaled (by T ) `2-error of w {tr-tr,cv}0,T", + "type": "text" + }, + { + "bbox": [ + 304, + 252, + 351, + 268 + ], + "score": 1.0, + "content": "as the ratio", + "type": "text" + }, + { + "bbox": [ + 351, + 255, + 369, + 267 + ], + "score": 0.89, + "content": "d / n", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 252, + 443, + 268 + ], + "score": 1.0, + "content": "varies from 0 to 3", + "type": "text" + }, + { + "bbox": [ + 444, + 255, + 504, + 267 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 123, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 267, + 168, + 278 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 266, + 466, + 279 + ], + "score": 1.0, + "content": "are fixed). For the cross-validation method, the regularization coefficient", + "type": "text" + }, + { + "bbox": [ + 466, + 268, + 501, + 278 + ], + "score": 0.83, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 266, + 505, + 279 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 130, + 291 + ], + "score": 1.0, + "content": "Left:", + "type": "text" + }, + { + "bbox": [ + 131, + 279, + 164, + 289 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 277, + 462, + 291 + ], + "score": 1.0, + "content": ". Leave-out-out CV performs worse than the train-train method. Right:", + "type": "text" + }, + { + "bbox": [ + 462, + 279, + 501, + 289 + ], + "score": 0.85, + "content": "n = 2 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 277, + 506, + 291 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 289, + 437, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 363, + 302 + ], + "score": 1.0, + "content": "Leave one-out CV appears better than the train-train method for", + "type": "text" + }, + { + "bbox": [ + 364, + 290, + 433, + 302 + ], + "score": 0.91, + "content": "d / n \\in \\{ 1 . 2 , 1 . 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 289, + 437, + 302 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "title", + "bbox": [ + 105, + 324, + 468, + 336 + ], + "lines": [ + { + "bbox": [ + 104, + 322, + 468, + 337 + ], + "spans": [ + { + "bbox": [ + 104, + 322, + 434, + 337 + ], + "score": 1.0, + "content": "F NONASYMPTOTIC ANALYSIS UNDER GENERAL SCALINGS OF", + "type": "text" + }, + { + "bbox": [ + 435, + 325, + 468, + 336 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 504, + 376 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "We sketch an nonasymptotic analysis of the train-train method in the realizable linear model in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 359, + 355, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 260, + 380 + ], + "score": 1.0, + "content": "Section 4. We assume in addition that", + "type": "text" + }, + { + "bbox": [ + 260, + 361, + 351, + 377 + ], + "score": 0.9, + "content": "{ } _ { 6 } \\qquad \\quad \\cdot \\qquad ^ { 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 359, + 355, + 380 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "We begin by recalling from Appendix B.1 and B.2 that the train-train and train-val estimators have", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 391, + 207, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 207, + 404 + ], + "score": 1.0, + "content": "closed-form expressions", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 410, + 374, + 486 + ], + "lines": [ + { + "bbox": [ + 235, + 410, + 374, + 486 + ], + "spans": [ + { + "bbox": [ + 235, + 410, + 374, + 486 + ], + "score": 0.93, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "a2e15cf936cca59149bb4694b7e171061646895d214e913691f122181258a740.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 410, + 374, + 448.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 235, + 448.0, + 374, + 486.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 490, + 133, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 135, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 135, + 502 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 506, + 457, + 569 + ], + "lines": [ + { + "bbox": [ + 153, + 506, + 457, + 569 + ], + "spans": [ + { + "bbox": [ + 153, + 506, + 457, + 569 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbf { A } _ { t } : = \\lambda ^ { 2 } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } , } \\\\ & { \\mathbf { B } _ { t } : = \\lambda ^ { 2 } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } } { n _ { 1 } } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { n _ { 2 } } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } } { n _ { 1 } } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 1 } . } \\end{array}", + "type": "interline_equation", + "image_path": "f244d9bb0f2cfa47e65eeadf00bc7a10253df4987066d5cb31f8599f82f18ead.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 153, + 506, + 457, + 527.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 153, + 527.0, + 457, + 548.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 153, + 548.0, + 457, + 569.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 579, + 504, + 615 + ], + "lines": [ + { + "bbox": [ + 103, + 574, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 103, + 574, + 216, + 597 + ], + "score": 1.0, + "content": "Nonasymptotic result for", + "type": "text" + }, + { + "bbox": [ + 217, + 582, + 239, + 594 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 574, + 505, + 597 + ], + "score": 1.0, + "content": "For simplicity, we restrict attention on the analysis of the train-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 102, + 587, + 508, + 615 + ], + "spans": [ + { + "bbox": [ + 102, + 587, + 168, + 615 + ], + "score": 1.0, + "content": "train estimator", + "type": "text" + }, + { + "bbox": [ + 168, + 595, + 190, + 607 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathtt { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 587, + 508, + 615 + ], + "score": 1.0, + "content": "b , whose closed form expression is given in (44). Analysis of the train-val esti-", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 251, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 251, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 251, + 635 + ], + "score": 1.0, + "content": "We sketch a proof for the following", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 289, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 289, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 155, + 650 + ], + "score": 1.0, + "content": "Result: Let", + "type": "text" + }, + { + "bbox": [ + 155, + 639, + 197, + 650 + ], + "score": 0.94, + "content": "T = \\Omega ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 637, + 216, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 639, + 239, + 650 + ], + "score": 0.94, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 637, + 289, + 650 + ], + "score": 1.0, + "content": "is such that", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 656, + 420, + 701 + ], + "lines": [ + { + "bbox": [ + 191, + 656, + 420, + 701 + ], + "spans": [ + { + "bbox": [ + 191, + 656, + 420, + 701 + ], + "score": 0.94, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "17fb77c14f74f8b7db832e1410afdb6121cac7335cb749334f2f2eb49d88cf99.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 191, + 656, + 420, + 671.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 191, + 671.0, + 420, + 686.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 191, + 686.0, + 420, + 701.0 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "page_idx": 32, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "33", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 711, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 233, + 724 + ], + "score": 1.0, + "content": "6This Gaussian assumption on", + "type": "text" + }, + { + "bbox": [ + 233, + 716, + 244, + 721 + ], + "score": 0.85, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 709, + 478, + 724 + ], + "score": 1.0, + "content": "is mainly for technical convenience, and can be relaxed to that", + "type": "text" + }, + { + "bbox": [ + 478, + 712, + 505, + 722 + ], + "score": 0.85, + "content": "w _ { t , i } \\gets", + "type": "inline_equation" + } + ] + }, + { + "bbox": [ + 107, + 720, + 497, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 723, + 129, + 732 + ], + "score": 0.82, + "content": "w _ { 0 , \\star , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 720, + 213, + 733 + ], + "score": 1.0, + "content": "are i.i.d. with variance", + "type": "text" + }, + { + "bbox": [ + 214, + 722, + 235, + 732 + ], + "score": 0.93, + "content": "R ^ { 2 } / d", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 720, + 358, + 733 + ], + "score": 1.0, + "content": "and sub-Gaussian with parameter", + "type": "text" + }, + { + "bbox": [ + 359, + 722, + 394, + 732 + ], + "score": 0.93, + "content": "O ( R ^ { 2 } / d )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 720, + 497, + 733 + ], + "score": 1.0, + "content": "without changing the proof.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 89, + 485, + 244 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 89, + 485, + 244 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 89, + 485, + 244 + ], + "spans": [ + { + "bbox": [ + 112, + 89, + 485, + 244 + ], + "score": 0.968, + "type": "image", + "image_path": "a7ec48a17bacf333016e73c4c25d108d4a28507720d736827797d2c569bc6621.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 89, + 485, + 140.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 140.66666666666666, + 485, + 192.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 192.33333333333331, + 485, + 243.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 253, + 505, + 302 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 102, + 251, + 504, + 270 + ], + "spans": [ + { + "bbox": [ + 102, + 251, + 307, + 270 + ], + "score": 1.0, + "content": "Figure 3: The scaled (by T ) `2-error of w {tr-tr,cv}0,T", + "type": "text" + }, + { + "bbox": [ + 304, + 252, + 351, + 268 + ], + "score": 1.0, + "content": "as the ratio", + "type": "text" + }, + { + "bbox": [ + 351, + 255, + 369, + 267 + ], + "score": 0.89, + "content": "d / n", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 252, + 443, + 268 + ], + "score": 1.0, + "content": "varies from 0 to 3", + "type": "text" + }, + { + "bbox": [ + 444, + 255, + 504, + 267 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 123, + 279 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 267, + 168, + 278 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 266, + 466, + 279 + ], + "score": 1.0, + "content": "are fixed). For the cross-validation method, the regularization coefficient", + "type": "text" + }, + { + "bbox": [ + 466, + 268, + 501, + 278 + ], + "score": 0.83, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 266, + 505, + 279 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 130, + 291 + ], + "score": 1.0, + "content": "Left:", + "type": "text" + }, + { + "bbox": [ + 131, + 279, + 164, + 289 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 277, + 462, + 291 + ], + "score": 1.0, + "content": ". Leave-out-out CV performs worse than the train-train method. Right:", + "type": "text" + }, + { + "bbox": [ + 462, + 279, + 501, + 289 + ], + "score": 0.85, + "content": "n = 2 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 277, + 506, + 291 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 289, + 437, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 363, + 302 + ], + "score": 1.0, + "content": "Leave one-out CV appears better than the train-train method for", + "type": "text" + }, + { + "bbox": [ + 364, + 290, + 433, + 302 + ], + "score": 0.91, + "content": "d / n \\in \\{ 1 . 2 , 1 . 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 289, + 437, + 302 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "title", + "bbox": [ + 105, + 324, + 468, + 336 + ], + "lines": [ + { + "bbox": [ + 104, + 322, + 468, + 337 + ], + "spans": [ + { + "bbox": [ + 104, + 322, + 434, + 337 + ], + "score": 1.0, + "content": "F NONASYMPTOTIC ANALYSIS UNDER GENERAL SCALINGS OF", + "type": "text" + }, + { + "bbox": [ + 435, + 325, + 468, + 336 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 504, + 376 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "We sketch an nonasymptotic analysis of the train-train method in the realizable linear model in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 359, + 355, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 260, + 380 + ], + "score": 1.0, + "content": "Section 4. We assume in addition that", + "type": "text" + }, + { + "bbox": [ + 260, + 361, + 351, + 377 + ], + "score": 0.9, + "content": "{ } _ { 6 } \\qquad \\quad \\cdot \\qquad ^ { 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 359, + 355, + 380 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 349, + 505, + 380 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "We begin by recalling from Appendix B.1 and B.2 that the train-train and train-val estimators have", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 391, + 207, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 207, + 404 + ], + "score": 1.0, + "content": "closed-form expressions", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 380, + 506, + 404 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 410, + 374, + 486 + ], + "lines": [ + { + "bbox": [ + 235, + 410, + 374, + 486 + ], + "spans": [ + { + "bbox": [ + 235, + 410, + 374, + 486 + ], + "score": 0.93, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "a2e15cf936cca59149bb4694b7e171061646895d214e913691f122181258a740.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 410, + 374, + 448.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 235, + 448.0, + 374, + 486.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 490, + 133, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 135, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 135, + 502 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 488, + 135, + 502 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 506, + 457, + 569 + ], + "lines": [ + { + "bbox": [ + 153, + 506, + 457, + 569 + ], + "spans": [ + { + "bbox": [ + 153, + 506, + 457, + 569 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbf { A } _ { t } : = \\lambda ^ { 2 } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } , } \\\\ & { \\mathbf { B } _ { t } : = \\lambda ^ { 2 } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } } { n _ { 1 } } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { n _ { 2 } } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } } { n _ { 1 } } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 1 } . } \\end{array}", + "type": "interline_equation", + "image_path": "f244d9bb0f2cfa47e65eeadf00bc7a10253df4987066d5cb31f8599f82f18ead.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 153, + 506, + 457, + 527.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 153, + 527.0, + 457, + 548.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 153, + 548.0, + 457, + 569.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 579, + 504, + 615 + ], + "lines": [ + { + "bbox": [ + 103, + 574, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 103, + 574, + 216, + 597 + ], + "score": 1.0, + "content": "Nonasymptotic result for", + "type": "text" + }, + { + "bbox": [ + 217, + 582, + 239, + 594 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 574, + 505, + 597 + ], + "score": 1.0, + "content": "For simplicity, we restrict attention on the analysis of the train-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 102, + 587, + 508, + 615 + ], + "spans": [ + { + "bbox": [ + 102, + 587, + 168, + 615 + ], + "score": 1.0, + "content": "train estimator", + "type": "text" + }, + { + "bbox": [ + 168, + 595, + 190, + 607 + ], + "score": 0.92, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathtt { t r - t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 587, + 508, + 615 + ], + "score": 1.0, + "content": "b , whose closed form expression is given in (44). Analysis of the train-val esti-", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 102, + 574, + 508, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 621, + 251, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 251, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 251, + 635 + ], + "score": 1.0, + "content": "We sketch a proof for the following", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 618, + 251, + 635 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 289, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 289, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 155, + 650 + ], + "score": 1.0, + "content": "Result: Let", + "type": "text" + }, + { + "bbox": [ + 155, + 639, + 197, + 650 + ], + "score": 0.94, + "content": "T = \\Omega ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 637, + 216, + 650 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 639, + 239, + 650 + ], + "score": 0.94, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 637, + 289, + 650 + ], + "score": 1.0, + "content": "is such that", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 637, + 289, + 650 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 656, + 420, + 701 + ], + "lines": [ + { + "bbox": [ + 191, + 656, + 420, + 701 + ], + "spans": [ + { + "bbox": [ + 191, + 656, + 420, + 701 + ], + "score": 0.94, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "17fb77c14f74f8b7db832e1410afdb6121cac7335cb749334f2f2eb49d88cf99.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 191, + 656, + 420, + 671.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 191, + 671.0, + 420, + 686.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 191, + 686.0, + 420, + 701.0 + ], + "spans": [], + "index": 24 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 220, + 96 + ], + "score": 1.0, + "content": "(which for example holds if", + "type": "text" + }, + { + "bbox": [ + 220, + 83, + 244, + 95 + ], + "score": 0.92, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "are in the proportional limit), then with high probability we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 98, + 484, + 159 + ], + "lines": [ + { + "bbox": [ + 131, + 98, + 484, + 159 + ], + "spans": [ + { + "bbox": [ + 131, + 98, + 484, + 159 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) = \\displaystyle \\frac { R ^ { 2 } } { d } \\bigg ( 1 \\pm O \\bigg ( \\frac { 1 } { \\sqrt { d } } \\bigg ) \\bigg ) \\cdot \\bigg [ \\frac { 1 } { T } \\cdot \\bigg ( d \\cdot f _ { \\mathrm { t r - t r } } ( d , n ) \\pm O \\bigg ( d \\sqrt { \\frac { \\log ( T / \\delta ) } { T } } \\bigg ) \\bigg ) \\bigg ] } \\\\ & { \\approx \\displaystyle \\frac { R ^ { 2 } } { T } \\cdot f _ { \\mathrm { t r - t r } } ( d , n ) = \\frac { 1 } { T } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "f033a65319b6a6303af54bc6fbcdfb64d03b6b3add3e99c5bd35e98c312ff67c.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 131, + 98, + 484, + 118.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 131, + 118.33333333333333, + 484, + 138.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 131, + 138.66666666666666, + 484, + 159.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 161, + 445, + 173 + ], + "lines": [ + { + "bbox": [ + 106, + 161, + 445, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 445, + 173 + ], + "score": 1.0, + "content": "that is, the MSE for the train-train method concentrates around the asymptotic MSE.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 178, + 281, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 177, + 280, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 164, + 189 + ], + "score": 1.0, + "content": "Proof Sketch", + "type": "text" + }, + { + "bbox": [ + 175, + 177, + 280, + 190 + ], + "score": 1.0, + "content": "We first define the matrix", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 191, + 435, + 228 + ], + "lines": [ + { + "bbox": [ + 175, + 191, + 435, + 228 + ], + "spans": [ + { + "bbox": [ + 175, + 191, + 435, + 228 + ], + "score": 0.94, + "content": "\\pmb { \\Sigma } _ { T } : = \\left( \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } \\right) ^ { - 2 } \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } ^ { 2 } = \\frac { 1 } { T } \\cdot \\left( \\frac { \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } } { T } \\right) ^ { - 2 } \\frac { \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } ^ { 2 } } { T } ,", + "type": "interline_equation", + "image_path": "4d84f35f96d5c45cffb542277e3d76d6bad7f33d68b37b2021ace2f8815e1967.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 175, + 191, + 435, + 203.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 175, + 203.33333333333334, + 435, + 215.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 175, + 215.66666666666669, + 435, + 228.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 229, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 357, + 244 + ], + "score": 1.0, + "content": "which will be key to our analysis. Observe that conditioned on", + "type": "text" + }, + { + "bbox": [ + 357, + 231, + 370, + 243 + ], + "score": 0.88, + "content": "{ \\bf A } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 229, + 505, + 244 + ], + "score": 1.0, + "content": "(and only looking at the random-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 242, + 193, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 137, + 255 + ], + "score": 1.0, + "content": "ness of", + "type": "text" + }, + { + "bbox": [ + 138, + 247, + 150, + 254 + ], + "score": 0.79, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 242, + 193, + 255 + ], + "score": 1.0, + "content": "), we have", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 257, + 446, + 294 + ], + "lines": [ + { + "bbox": [ + 165, + 257, + 446, + 294 + ], + "spans": [ + { + "bbox": [ + 165, + 257, + 446, + 294 + ], + "score": 0.95, + "content": "\\_", + "type": "interline_equation", + "image_path": "0182281535ec0601644e688582611315ac2ac0774e1c5569ae1848b6c5e3badf.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 165, + 257, + 446, + 269.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 165, + 269.3333333333333, + 446, + 281.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 165, + 281.66666666666663, + 446, + 293.99999999999994 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 297, + 491, + 309 + ], + "lines": [ + { + "bbox": [ + 107, + 296, + 492, + 310 + ], + "spans": [ + { + "bbox": [ + 107, + 296, + 492, + 310 + ], + "score": 1.0, + "content": "Therefore, applying the Hanson-Wright inequality (Vershynin, 2018, Theorem 6.2.1) yields that", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 313, + 497, + 346 + ], + "lines": [ + { + "bbox": [ + 113, + 313, + 497, + 346 + ], + "spans": [ + { + "bbox": [ + 113, + 313, + 497, + 346 + ], + "score": 0.95, + "content": "-", + "type": "interline_equation", + "image_path": "9ffa7faa60c226c6a1facc7e85f341e578df1fd908bc8ab58da1c4bb7530d4ac.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 113, + 313, + 497, + 324.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 113, + 324.0, + 497, + 335.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 113, + 335.0, + 497, + 346.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 349, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 206, + 362 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 207, + 351, + 230, + 361 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 349, + 366, + 362 + ], + "score": 1.0, + "content": ". In the following, we argue that", + "type": "text" + }, + { + "bbox": [ + 366, + 351, + 397, + 362 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "is the dominating term in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "the above bound and concentrates around the asymptotic MSE in Lemma 5, whereas the error terms", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 371, + 354, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 320, + 384 + ], + "score": 1.0, + "content": "within the max are lower order errors compared with", + "type": "text" + }, + { + "bbox": [ + 320, + 374, + 351, + 384 + ], + "score": 0.91, + "content": "\\operatorname { t r } ( \\Sigma _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 371, + 354, + 384 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 448, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 451, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 181, + 408 + ], + "score": 1.0, + "content": "Concentration of", + "type": "text" + }, + { + "bbox": [ + 181, + 396, + 212, + 408 + ], + "score": 0.84, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 392, + 267, + 408 + ], + "score": 1.0, + "content": "Recall that", + "type": "text" + }, + { + "bbox": [ + 267, + 396, + 280, + 407 + ], + "score": 0.86, + "content": "{ \\bf A } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 392, + 384, + 408 + ], + "score": 1.0, + "content": "are i.i.d. PSD matrices in", + "type": "text" + }, + { + "bbox": [ + 385, + 394, + 407, + 406 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 392, + 451, + 408 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 411, + 514, + 489 + ], + "lines": [ + { + "bbox": [ + 111, + 411, + 514, + 489 + ], + "spans": [ + { + "bbox": [ + 111, + 411, + 514, + 489 + ], + "score": 0.89, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "1419b369d1cc1a590b3ea22aeaf9cc7a7267bc235cff73ec9a6021851f842caf.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 411, + 514, + 437.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 437.0, + 514, + 463.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 463.0, + 514, + 489.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 501, + 506, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 308, + 514 + ], + "score": 1.0, + "content": "We argue that I is the main term that depends on", + "type": "text" + }, + { + "bbox": [ + 308, + 503, + 332, + 514 + ], + "score": 0.91, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 501, + 424, + 514 + ], + "score": 1.0, + "content": "and is independent of", + "type": "text" + }, + { + "bbox": [ + 424, + 503, + 432, + 511 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 501, + 473, + 514 + ], + "score": 1.0, + "content": ". Further,", + "type": "text" + }, + { + "bbox": [ + 473, + 502, + 487, + 513 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "has", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 513, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 155, + 529 + ], + "score": 1.0, + "content": "eigenvalues", + "type": "text" + }, + { + "bbox": [ + 156, + 516, + 219, + 527 + ], + "score": 0.92, + "content": "\\lambda ^ { 2 } \\sigma _ { i } / ( \\lambda + \\sigma _ { i } ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 513, + 247, + 529 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 248, + 514, + 280, + 528 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 513, + 370, + 529 + ], + "score": 1.0, + "content": "are the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 371, + 514, + 411, + 527 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 513, + 432, + 529 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 432, + 515, + 446, + 526 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 513, + 506, + 529 + ], + "score": 1.0, + "content": "has uniformly", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 525, + 423, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 423, + 538 + ], + "score": 1.0, + "content": "distributed eigenvectors. Following the same analysis of Lemma 5, we see that", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 541, + 416, + 603 + ], + "lines": [ + { + "bbox": [ + 194, + 541, + 416, + 603 + ], + "spans": [ + { + "bbox": [ + 194, + 541, + 416, + 603 + ], + "score": 0.94, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "bbfb8327933255ca1dcab614547f85935289dc23cf6dee2f5b553720bd967d30.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 541, + 416, + 556.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 194, + 556.5, + 416, + 572.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 194, + 572.0, + 416, + 587.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 194, + 587.5, + 416, + 603.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 605, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "This is exactly the same quantity that appeared in the asymptotic MSE for the train-train method in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 614, + 432, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 286, + 630 + ], + "score": 1.0, + "content": "Theorem 4. In the following we assume that", + "type": "text" + }, + { + "bbox": [ + 286, + 619, + 302, + 628 + ], + "score": 0.91, + "content": "d , n", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 614, + 351, + 630 + ], + "score": 1.0, + "content": "is such that", + "type": "text" + }, + { + "bbox": [ + 351, + 618, + 428, + 629 + ], + "score": 0.93, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 614, + 432, + 630 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 506, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 223, + 645 + ], + "score": 1.0, + "content": "We further argue that terms", + "type": "text" + }, + { + "bbox": [ + 223, + 634, + 232, + 644 + ], + "score": 0.26, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "and III are low-order terms compared with term I. Indeed, term I", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 117, + 657 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 118, + 646, + 138, + 657 + ], + "score": 0.93, + "content": "O ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 644, + 506, + 657 + ], + "score": 1.0, + "content": ". Applying matrix concentrations (e.g. the matrix Bernstein inequality), we can get that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 656, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 221, + 670 + ], + "score": 1.0, + "content": "terms II and III are of order", + "type": "text" + }, + { + "bbox": [ + 222, + 657, + 378, + 670 + ], + "score": 0.91, + "content": "-", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 656, + 478, + 670 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 478, + 660, + 501, + 668 + ], + "score": 0.91, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 656, + 506, + 670 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 668, + 238, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 238, + 680 + ], + "score": 1.0, + "content": "Combining the terms yields that", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 685, + 401, + 717 + ], + "lines": [ + { + "bbox": [ + 210, + 685, + 401, + 717 + ], + "spans": [ + { + "bbox": [ + 210, + 685, + 401, + 717 + ], + "score": 0.93, + "content": "\\_", + "type": "interline_equation", + "image_path": "d30b13fde3f484646c70e3a685f151b4d9313e0cb97ec8f2463b15ed239ce272.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 685, + 401, + 701.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 210, + 701.0, + 401, + 717.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 194, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 718, + 195, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 195, + 734 + ], + "score": 1.0, + "content": "with high probability.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + } + ], + "page_idx": 33, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 220, + 96 + ], + "score": 1.0, + "content": "(which for example holds if", + "type": "text" + }, + { + "bbox": [ + 220, + 83, + 244, + 95 + ], + "score": 0.92, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "are in the proportional limit), then with high probability we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 506, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 98, + 484, + 159 + ], + "lines": [ + { + "bbox": [ + 131, + 98, + 484, + 159 + ], + "spans": [ + { + "bbox": [ + 131, + 98, + 484, + 159 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\quad \\mathrm { M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) = \\displaystyle \\frac { R ^ { 2 } } { d } \\bigg ( 1 \\pm O \\bigg ( \\frac { 1 } { \\sqrt { d } } \\bigg ) \\bigg ) \\cdot \\bigg [ \\frac { 1 } { T } \\cdot \\bigg ( d \\cdot f _ { \\mathrm { t r - t r } } ( d , n ) \\pm O \\bigg ( d \\sqrt { \\frac { \\log ( T / \\delta ) } { T } } \\bigg ) \\bigg ) \\bigg ] } \\\\ & { \\approx \\displaystyle \\frac { R ^ { 2 } } { T } \\cdot f _ { \\mathrm { t r - t r } } ( d , n ) = \\frac { 1 } { T } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "f033a65319b6a6303af54bc6fbcdfb64d03b6b3add3e99c5bd35e98c312ff67c.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 131, + 98, + 484, + 118.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 131, + 118.33333333333333, + 484, + 138.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 131, + 138.66666666666666, + 484, + 159.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 161, + 445, + 173 + ], + "lines": [ + { + "bbox": [ + 106, + 161, + 445, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 445, + 173 + ], + "score": 1.0, + "content": "that is, the MSE for the train-train method concentrates around the asymptotic MSE.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 161, + 445, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 178, + 281, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 177, + 280, + 190 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 164, + 189 + ], + "score": 1.0, + "content": "Proof Sketch", + "type": "text" + }, + { + "bbox": [ + 175, + 177, + 280, + 190 + ], + "score": 1.0, + "content": "We first define the matrix", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 177, + 280, + 190 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 191, + 435, + 228 + ], + "lines": [ + { + "bbox": [ + 175, + 191, + 435, + 228 + ], + "spans": [ + { + "bbox": [ + 175, + 191, + 435, + 228 + ], + "score": 0.94, + "content": "\\pmb { \\Sigma } _ { T } : = \\left( \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } \\right) ^ { - 2 } \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } ^ { 2 } = \\frac { 1 } { T } \\cdot \\left( \\frac { \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } } { T } \\right) ^ { - 2 } \\frac { \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } ^ { 2 } } { T } ,", + "type": "interline_equation", + "image_path": "4d84f35f96d5c45cffb542277e3d76d6bad7f33d68b37b2021ace2f8815e1967.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 175, + 191, + 435, + 203.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 175, + 203.33333333333334, + 435, + 215.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 175, + 215.66666666666669, + 435, + 228.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 229, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 357, + 244 + ], + "score": 1.0, + "content": "which will be key to our analysis. Observe that conditioned on", + "type": "text" + }, + { + "bbox": [ + 357, + 231, + 370, + 243 + ], + "score": 0.88, + "content": "{ \\bf A } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 229, + 505, + 244 + ], + "score": 1.0, + "content": "(and only looking at the random-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 242, + 193, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 137, + 255 + ], + "score": 1.0, + "content": "ness of", + "type": "text" + }, + { + "bbox": [ + 138, + 247, + 150, + 254 + ], + "score": 0.79, + "content": "\\mathbf { w } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 242, + 193, + 255 + ], + "score": 1.0, + "content": "), we have", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 229, + 505, + 255 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 257, + 446, + 294 + ], + "lines": [ + { + "bbox": [ + 165, + 257, + 446, + 294 + ], + "spans": [ + { + "bbox": [ + 165, + 257, + 446, + 294 + ], + "score": 0.95, + "content": "\\_", + "type": "interline_equation", + "image_path": "0182281535ec0601644e688582611315ac2ac0774e1c5569ae1848b6c5e3badf.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 165, + 257, + 446, + 269.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 165, + 269.3333333333333, + 446, + 281.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 165, + 281.66666666666663, + 446, + 293.99999999999994 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 297, + 491, + 309 + ], + "lines": [ + { + "bbox": [ + 107, + 296, + 492, + 310 + ], + "spans": [ + { + "bbox": [ + 107, + 296, + 492, + 310 + ], + "score": 1.0, + "content": "Therefore, applying the Hanson-Wright inequality (Vershynin, 2018, Theorem 6.2.1) yields that", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 107, + 296, + 492, + 310 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 313, + 497, + 346 + ], + "lines": [ + { + "bbox": [ + 113, + 313, + 497, + 346 + ], + "spans": [ + { + "bbox": [ + 113, + 313, + 497, + 346 + ], + "score": 0.95, + "content": "-", + "type": "interline_equation", + "image_path": "9ffa7faa60c226c6a1facc7e85f341e578df1fd908bc8ab58da1c4bb7530d4ac.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 113, + 313, + 497, + 324.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 113, + 324.0, + 497, + 335.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 113, + 335.0, + 497, + 346.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 349, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 206, + 362 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 207, + 351, + 230, + 361 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 349, + 366, + 362 + ], + "score": 1.0, + "content": ". In the following, we argue that", + "type": "text" + }, + { + "bbox": [ + 366, + 351, + 397, + 362 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "is the dominating term in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "the above bound and concentrates around the asymptotic MSE in Lemma 5, whereas the error terms", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 371, + 354, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 320, + 384 + ], + "score": 1.0, + "content": "within the max are lower order errors compared with", + "type": "text" + }, + { + "bbox": [ + 320, + 374, + 351, + 384 + ], + "score": 0.91, + "content": "\\operatorname { t r } ( \\Sigma _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 371, + 354, + 384 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 349, + 505, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 448, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 451, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 181, + 408 + ], + "score": 1.0, + "content": "Concentration of", + "type": "text" + }, + { + "bbox": [ + 181, + 396, + 212, + 408 + ], + "score": 0.84, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 392, + 267, + 408 + ], + "score": 1.0, + "content": "Recall that", + "type": "text" + }, + { + "bbox": [ + 267, + 396, + 280, + 407 + ], + "score": 0.86, + "content": "{ \\bf A } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 392, + 384, + 408 + ], + "score": 1.0, + "content": "are i.i.d. PSD matrices in", + "type": "text" + }, + { + "bbox": [ + 385, + 394, + 407, + 406 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 392, + 451, + 408 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 392, + 451, + 408 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 411, + 514, + 489 + ], + "lines": [ + { + "bbox": [ + 111, + 411, + 514, + 489 + ], + "spans": [ + { + "bbox": [ + 111, + 411, + 514, + 489 + ], + "score": 0.89, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "1419b369d1cc1a590b3ea22aeaf9cc7a7267bc235cff73ec9a6021851f842caf.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 411, + 514, + 437.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 437.0, + 514, + 463.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 463.0, + 514, + 489.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 501, + 506, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 308, + 514 + ], + "score": 1.0, + "content": "We argue that I is the main term that depends on", + "type": "text" + }, + { + "bbox": [ + 308, + 503, + 332, + 514 + ], + "score": 0.91, + "content": "( d , n )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 501, + 424, + 514 + ], + "score": 1.0, + "content": "and is independent of", + "type": "text" + }, + { + "bbox": [ + 424, + 503, + 432, + 511 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 501, + 473, + 514 + ], + "score": 1.0, + "content": ". Further,", + "type": "text" + }, + { + "bbox": [ + 473, + 502, + 487, + 513 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "has", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 513, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 155, + 529 + ], + "score": 1.0, + "content": "eigenvalues", + "type": "text" + }, + { + "bbox": [ + 156, + 516, + 219, + 527 + ], + "score": 0.92, + "content": "\\lambda ^ { 2 } \\sigma _ { i } / ( \\lambda + \\sigma _ { i } ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 513, + 247, + 529 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 248, + 514, + 280, + 528 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 513, + 370, + 529 + ], + "score": 1.0, + "content": "are the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 371, + 514, + 411, + 527 + ], + "score": 0.9, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 513, + 432, + 529 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 432, + 515, + 446, + 526 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 513, + 506, + 529 + ], + "score": 1.0, + "content": "has uniformly", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 525, + 423, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 423, + 538 + ], + "score": 1.0, + "content": "distributed eigenvectors. Following the same analysis of Lemma 5, we see that", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 501, + 506, + 538 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 541, + 416, + 603 + ], + "lines": [ + { + "bbox": [ + 194, + 541, + 416, + 603 + ], + "spans": [ + { + "bbox": [ + 194, + 541, + 416, + 603 + ], + "score": 0.94, + "content": "\\cdot", + "type": "interline_equation", + "image_path": "bbfb8327933255ca1dcab614547f85935289dc23cf6dee2f5b553720bd967d30.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 541, + 416, + 556.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 194, + 556.5, + 416, + 572.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 194, + 572.0, + 416, + 587.5 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 194, + 587.5, + 416, + 603.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 605, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "This is exactly the same quantity that appeared in the asymptotic MSE for the train-train method in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 614, + 432, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 286, + 630 + ], + "score": 1.0, + "content": "Theorem 4. In the following we assume that", + "type": "text" + }, + { + "bbox": [ + 286, + 619, + 302, + 628 + ], + "score": 0.91, + "content": "d , n", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 614, + 351, + 630 + ], + "score": 1.0, + "content": "is such that", + "type": "text" + }, + { + "bbox": [ + 351, + 618, + 428, + 629 + ], + "score": 0.93, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 614, + 432, + 630 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 605, + 506, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 506, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 223, + 645 + ], + "score": 1.0, + "content": "We further argue that terms", + "type": "text" + }, + { + "bbox": [ + 223, + 634, + 232, + 644 + ], + "score": 0.26, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "and III are low-order terms compared with term I. Indeed, term I", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 117, + 657 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 118, + 646, + 138, + 657 + ], + "score": 0.93, + "content": "O ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 644, + 506, + 657 + ], + "score": 1.0, + "content": ". Applying matrix concentrations (e.g. the matrix Bernstein inequality), we can get that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 656, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 221, + 670 + ], + "score": 1.0, + "content": "terms II and III are of order", + "type": "text" + }, + { + "bbox": [ + 222, + 657, + 378, + 670 + ], + "score": 0.91, + "content": "-", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 656, + 478, + 670 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 478, + 660, + 501, + 668 + ], + "score": 0.91, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 656, + 506, + 670 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 668, + 238, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 238, + 680 + ], + "score": 1.0, + "content": "Combining the terms yields that", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 632, + 506, + 680 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 685, + 401, + 717 + ], + "lines": [ + { + "bbox": [ + 210, + 685, + 401, + 717 + ], + "spans": [ + { + "bbox": [ + 210, + 685, + 401, + 717 + ], + "score": 0.93, + "content": "\\_", + "type": "interline_equation", + "image_path": "d30b13fde3f484646c70e3a685f151b4d9313e0cb97ec8f2463b15ed239ce272.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 685, + 401, + 701.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 210, + 701.0, + 401, + 717.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 194, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 718, + 195, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 195, + 734 + ], + "score": 1.0, + "content": "with high probability.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 718, + 195, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 331, + 98 + ], + "score": 1.0, + "content": "Controlling the error in the MSE We now control", + "type": "text" + }, + { + "bbox": [ + 332, + 83, + 365, + 95 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 79, + 447, + 98 + ], + "score": 1.0, + "content": "and (consequently)", + "type": "text" + }, + { + "bbox": [ + 448, + 82, + 482, + 96 + ], + "score": 0.91, + "content": "\\| \\Sigma _ { T } \\| _ { \\mathrm { o p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 79, + 505, + 98 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 180, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 180, + 106 + ], + "score": 1.0, + "content": "wish to show that", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 109, + 367, + 137 + ], + "lines": [ + { + "bbox": [ + 244, + 109, + 367, + 137 + ], + "spans": [ + { + "bbox": [ + 244, + 109, + 367, + 137 + ], + "score": 0.94, + "content": "\\left\\| \\Sigma _ { T } \\right\\| _ { \\mathsf { F r } } \\leq O \\left( { \\frac { 1 } { \\sqrt { d } } } \\right) \\cdot \\operatorname { t r } ( \\Sigma _ { T } )", + "type": "interline_equation", + "image_path": "65e449ebb7c5e9ae616762ea516b8aa790b2af1fea11e27ccd3359f8c4116277.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 244, + 109, + 367, + 137 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 504, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 425, + 156 + ], + "score": 1.0, + "content": "with high probability. This can be seen from the combination of two results: (1)", + "type": "text" + }, + { + "bbox": [ + 425, + 142, + 504, + 155 + ], + "score": 0.89, + "content": "\\mathrm { t r } ( \\Sigma _ { T } ) = \\Omega ( d / T )", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 152, + 226, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 226, + 165 + ], + "score": 1.0, + "content": "by the preceding part, and (2)", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 170, + 434, + 205 + ], + "lines": [ + { + "bbox": [ + 177, + 170, + 434, + 205 + ], + "spans": [ + { + "bbox": [ + 177, + 170, + 434, + 205 + ], + "score": 0.94, + "content": "\\_", + "type": "interline_equation", + "image_path": "179e5f8854be5c57fcb16b2b24c6d08047477db47db8021c13c0adc5c209e315.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 177, + 170, + 434, + 181.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 177, + 181.66666666666666, + 434, + 193.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 177, + 193.33333333333331, + 434, + 204.99999999999997 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 506, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 203, + 226 + ], + "score": 1.0, + "content": "The above requires (1)", + "type": "text" + }, + { + "bbox": [ + 203, + 212, + 279, + 224 + ], + "score": 0.92, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 209, + 400, + 226 + ], + "score": 1.0, + "content": ", which is true since we have", + "type": "text" + }, + { + "bbox": [ + 401, + 211, + 466, + 224 + ], + "score": 0.9, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 209, + 506, + 226 + ], + "score": 1.0, + "content": "and thus", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 222, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 107, + 225, + 176, + 239 + ], + "score": 0.92, + "content": "\\left\\| \\mathbf { A } _ { t } ^ { 2 } \\right\\| _ { \\mathsf { F r } } \\leq \\lambda ^ { 2 } \\sqrt { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 222, + 210, + 241 + ], + "score": 1.0, + "content": ", and (2)", + "type": "text" + }, + { + "bbox": [ + 210, + 226, + 323, + 239 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\lambda _ { \\operatorname* { m i n } } \\bigl ( \\sum _ { t \\leq T } \\mathbf { A } _ { t } / T \\bigr ) = \\Omega ( 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 222, + 506, + 241 + ], + "score": 1.0, + "content": "with high probability, which is true whenever", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 235, + 437, + 251 + ], + "spans": [ + { + "bbox": [ + 107, + 239, + 148, + 250 + ], + "score": 0.92, + "content": "T = \\Omega ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 235, + 346, + 251 + ], + "score": 1.0, + "content": "because of matrix concentration and the fact that", + "type": "text" + }, + { + "bbox": [ + 346, + 239, + 433, + 250 + ], + "score": 0.91, + "content": "\\lambda _ { \\operatorname* { m i n } } ( \\mathbb { E } [ \\mathbf { A } _ { 1 } ] ) = \\Omega ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 235, + 437, + 251 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 327, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 261, + 327, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 327, + 274 + ], + "score": 1.0, + "content": "Putting together We have with high probability that", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 278, + 480, + 312 + ], + "lines": [ + { + "bbox": [ + 130, + 278, + 480, + 312 + ], + "spans": [ + { + "bbox": [ + 130, + 278, + 480, + 312 + ], + "score": 0.93, + "content": "\\mathrm { M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) = \\frac { R ^ { 2 } } { d } \\bigg ( 1 \\pm O \\bigg ( \\frac { 1 } { \\sqrt { d } } \\bigg ) \\bigg ) \\cdot \\bigg [ \\frac { 1 } { T } \\cdot \\bigg ( d \\cdot f _ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( d , n ) \\pm O \\bigg ( d \\sqrt { \\frac { \\log ( T / \\delta ) } { T } } \\bigg ) \\bigg ) \\bigg ] .", + "type": "interline_equation", + "image_path": "05ba56851b7da3ca51fc572e4ad5a1747e36942944d0402170489edc1b549b61.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 130, + 278, + 480, + 289.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 130, + 289.3333333333333, + 480, + 300.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 130, + 300.66666666666663, + 480, + 311.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 353, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 350, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 149, + 331 + ], + "score": 1.0, + "content": "as long as", + "type": "text" + }, + { + "bbox": [ + 149, + 318, + 190, + 329 + ], + "score": 0.92, + "content": "T = \\Omega ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 315, + 209, + 331 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 209, + 318, + 225, + 329 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 315, + 274, + 331 + ], + "score": 1.0, + "content": "is such that", + "type": "text" + }, + { + "bbox": [ + 274, + 317, + 350, + 329 + ], + "score": 0.9, + "content": "\\_", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 365, + 241, + 376 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 241, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 123, + 375 + ], + "score": 1.0, + "content": "F.1", + "type": "text" + }, + { + "bbox": [ + 130, + 366, + 241, + 375 + ], + "score": 1.0, + "content": "SYNTHETIC EXPERIMENT", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 506, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 350, + 398 + ], + "score": 1.0, + "content": "We verify our theoretical findings under general scalings of", + "type": "text" + }, + { + "bbox": [ + 351, + 387, + 378, + 397 + ], + "score": 0.88, + "content": "d , n , T", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 383, + 506, + 398 + ], + "score": 1.0, + "content": ". We adopt the data generating", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "model in Section 5.1 again. To compare the performance of the train-train and train-val methods,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 234, + 420 + ], + "score": 1.0, + "content": "we choose the number of tasks", + "type": "text" + }, + { + "bbox": [ + 235, + 407, + 273, + 418 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 406, + 376, + 420 + ], + "score": 1.0, + "content": "and per-task sample size", + "type": "text" + }, + { + "bbox": [ + 376, + 408, + 414, + 417 + ], + "score": 0.87, + "content": "n = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 406, + 456, + 420 + ], + "score": 1.0, + "content": ". We vary", + "type": "text" + }, + { + "bbox": [ + 456, + 408, + 463, + 417 + ], + "score": 0.77, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "from 0 to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 187, + 431 + ], + "score": 1.0, + "content": "300. Note that now", + "type": "text" + }, + { + "bbox": [ + 187, + 419, + 195, + 429 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 417, + 266, + 431 + ], + "score": 1.0, + "content": "is comparable to", + "type": "text" + }, + { + "bbox": [ + 266, + 420, + 273, + 429 + ], + "score": 0.76, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 417, + 291, + 431 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 292, + 419, + 298, + 429 + ], + "score": 0.77, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 417, + 393, + 431 + ], + "score": 1.0, + "content": "and much smaller than", + "type": "text" + }, + { + "bbox": [ + 393, + 419, + 436, + 429 + ], + "score": 0.89, + "content": "T = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "used in previous", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 428, + 456, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 417, + 442 + ], + "score": 1.0, + "content": "experiments. Figure 4 shows the close fit of reference curves to the simulated", + "type": "text" + }, + { + "bbox": [ + 417, + 430, + 427, + 441 + ], + "score": 0.85, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 428, + 456, + 442 + ], + "score": 1.0, + "content": "errors.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "image", + "bbox": [ + 155, + 461, + 453, + 666 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 155, + 461, + 453, + 666 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 461, + 453, + 666 + ], + "spans": [ + { + "bbox": [ + 155, + 461, + 453, + 666 + ], + "score": 0.974, + "type": "image", + "image_path": "884f48f2f05610e81ad493ff8e7d6acb8f08491991b24912cf3460342ab3e75b.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 155, + 461, + 453, + 475.64285714285717 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 155, + 475.64285714285717, + 453, + 490.28571428571433 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 155, + 490.28571428571433, + 453, + 504.9285714285715 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 155, + 504.9285714285715, + 453, + 519.5714285714287 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 155, + 519.5714285714287, + 453, + 534.2142857142858 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 155, + 534.2142857142858, + 453, + 548.8571428571429 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 155, + 548.8571428571429, + 453, + 563.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 155, + 563.5, + 453, + 578.1428571428571 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 155, + 578.1428571428571, + 453, + 592.7857142857142 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 155, + 592.7857142857142, + 453, + 607.4285714285713 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 155, + 607.4285714285713, + 453, + 622.0714285714284 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 155, + 622.0714285714284, + 453, + 636.7142857142856 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 155, + 636.7142857142856, + 453, + 651.3571428571427 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 155, + 651.3571428571427, + 453, + 665.9999999999998 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 673, + 506, + 712 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 101, + 667, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 101, + 667, + 205, + 697 + ], + "score": 1.0, + "content": "Figure 4: The scaled (by", + "type": "text" + }, + { + "bbox": [ + 205, + 677, + 214, + 687 + ], + "score": 0.66, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 667, + 218, + 697 + ], + "score": 1.0, + "content": ")", + "type": "text" + }, + { + "bbox": [ + 218, + 677, + 228, + 688 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 667, + 262, + 697 + ], + "score": 1.0, + "content": "-error of", + "type": "text" + }, + { + "bbox": [ + 263, + 674, + 312, + 691 + ], + "score": 0.88, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 667, + 359, + 697 + ], + "score": 1.0, + "content": "as the ratio", + "type": "text" + }, + { + "bbox": [ + 359, + 677, + 377, + 689 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 667, + 506, + 697 + ], + "score": 1.0, + "content": "varies from 0 to 3 in the general", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 207, + 688, + 430, + 701 + ], + "spans": [ + { + "bbox": [ + 207, + 688, + 225, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 688, + 430, + 701 + ], + "score": 1.0, + "content": "are fixed). The regularization coefficient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 353, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 213, + 712 + ], + "score": 1.0, + "content": "the train-train method and", + "type": "text" + }, + { + "bbox": [ + 213, + 700, + 253, + 711 + ], + "score": 0.87, + "content": "\\lambda = 2 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 699, + 353, + 712 + ], + "score": 1.0, + "content": "for the train-val method.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + } + ], + "index": 32.75 + } + ], + "page_idx": 34, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 307, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 317, + 505, + 327 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 331, + 98 + ], + "score": 1.0, + "content": "Controlling the error in the MSE We now control", + "type": "text" + }, + { + "bbox": [ + 332, + 83, + 365, + 95 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 79, + 447, + 98 + ], + "score": 1.0, + "content": "and (consequently)", + "type": "text" + }, + { + "bbox": [ + 448, + 82, + 482, + 96 + ], + "score": 0.91, + "content": "\\| \\Sigma _ { T } \\| _ { \\mathrm { o p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 79, + 505, + 98 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 180, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 180, + 106 + ], + "score": 1.0, + "content": "wish to show that", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 104, + 79, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 109, + 367, + 137 + ], + "lines": [ + { + "bbox": [ + 244, + 109, + 367, + 137 + ], + "spans": [ + { + "bbox": [ + 244, + 109, + 367, + 137 + ], + "score": 0.94, + "content": "\\left\\| \\Sigma _ { T } \\right\\| _ { \\mathsf { F r } } \\leq O \\left( { \\frac { 1 } { \\sqrt { d } } } \\right) \\cdot \\operatorname { t r } ( \\Sigma _ { T } )", + "type": "interline_equation", + "image_path": "65e449ebb7c5e9ae616762ea516b8aa790b2af1fea11e27ccd3359f8c4116277.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 244, + 109, + 367, + 137 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 140, + 504, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 425, + 156 + ], + "score": 1.0, + "content": "with high probability. This can be seen from the combination of two results: (1)", + "type": "text" + }, + { + "bbox": [ + 425, + 142, + 504, + 155 + ], + "score": 0.89, + "content": "\\mathrm { t r } ( \\Sigma _ { T } ) = \\Omega ( d / T )", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 152, + 226, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 226, + 165 + ], + "score": 1.0, + "content": "by the preceding part, and (2)", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 140, + 504, + 165 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 170, + 434, + 205 + ], + "lines": [ + { + "bbox": [ + 177, + 170, + 434, + 205 + ], + "spans": [ + { + "bbox": [ + 177, + 170, + 434, + 205 + ], + "score": 0.94, + "content": "\\_", + "type": "interline_equation", + "image_path": "179e5f8854be5c57fcb16b2b24c6d08047477db47db8021c13c0adc5c209e315.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 177, + 170, + 434, + 181.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 177, + 181.66666666666666, + 434, + 193.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 177, + 193.33333333333331, + 434, + 204.99999999999997 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 506, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 203, + 226 + ], + "score": 1.0, + "content": "The above requires (1)", + "type": "text" + }, + { + "bbox": [ + 203, + 212, + 279, + 224 + ], + "score": 0.92, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 209, + 400, + 226 + ], + "score": 1.0, + "content": ", which is true since we have", + "type": "text" + }, + { + "bbox": [ + 401, + 211, + 466, + 224 + ], + "score": 0.9, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 209, + 506, + 226 + ], + "score": 1.0, + "content": "and thus", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 222, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 107, + 225, + 176, + 239 + ], + "score": 0.92, + "content": "\\left\\| \\mathbf { A } _ { t } ^ { 2 } \\right\\| _ { \\mathsf { F r } } \\leq \\lambda ^ { 2 } \\sqrt { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 222, + 210, + 241 + ], + "score": 1.0, + "content": ", and (2)", + "type": "text" + }, + { + "bbox": [ + 210, + 226, + 323, + 239 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\lambda _ { \\operatorname* { m i n } } \\bigl ( \\sum _ { t \\leq T } \\mathbf { A } _ { t } / T \\bigr ) = \\Omega ( 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 222, + 506, + 241 + ], + "score": 1.0, + "content": "with high probability, which is true whenever", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 235, + 437, + 251 + ], + "spans": [ + { + "bbox": [ + 107, + 239, + 148, + 250 + ], + "score": 0.92, + "content": "T = \\Omega ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 235, + 346, + 251 + ], + "score": 1.0, + "content": "because of matrix concentration and the fact that", + "type": "text" + }, + { + "bbox": [ + 346, + 239, + 433, + 250 + ], + "score": 0.91, + "content": "\\lambda _ { \\operatorname* { m i n } } ( \\mathbb { E } [ \\mathbf { A } _ { 1 } ] ) = \\Omega ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 235, + 437, + 251 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 209, + 506, + 251 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 327, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 261, + 327, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 327, + 274 + ], + "score": 1.0, + "content": "Putting together We have with high probability that", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 261, + 327, + 274 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 278, + 480, + 312 + ], + "lines": [ + { + "bbox": [ + 130, + 278, + 480, + 312 + ], + "spans": [ + { + "bbox": [ + 130, + 278, + 480, + 312 + ], + "score": 0.93, + "content": "\\mathrm { M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) = \\frac { R ^ { 2 } } { d } \\bigg ( 1 \\pm O \\bigg ( \\frac { 1 } { \\sqrt { d } } \\bigg ) \\bigg ) \\cdot \\bigg [ \\frac { 1 } { T } \\cdot \\bigg ( d \\cdot f _ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( d , n ) \\pm O \\bigg ( d \\sqrt { \\frac { \\log ( T / \\delta ) } { T } } \\bigg ) \\bigg ) \\bigg ] .", + "type": "interline_equation", + "image_path": "05ba56851b7da3ca51fc572e4ad5a1747e36942944d0402170489edc1b549b61.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 130, + 278, + 480, + 289.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 130, + 289.3333333333333, + 480, + 300.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 130, + 300.66666666666663, + 480, + 311.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 353, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 350, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 149, + 331 + ], + "score": 1.0, + "content": "as long as", + "type": "text" + }, + { + "bbox": [ + 149, + 318, + 190, + 329 + ], + "score": 0.92, + "content": "T = \\Omega ( d )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 315, + 209, + 331 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 209, + 318, + 225, + 329 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 315, + 274, + 331 + ], + "score": 1.0, + "content": "is such that", + "type": "text" + }, + { + "bbox": [ + 274, + 317, + 350, + 329 + ], + "score": 0.9, + "content": "\\_", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 315, + 350, + 331 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 365, + 241, + 376 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 241, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 123, + 375 + ], + "score": 1.0, + "content": "F.1", + "type": "text" + }, + { + "bbox": [ + 130, + 366, + 241, + 375 + ], + "score": 1.0, + "content": "SYNTHETIC EXPERIMENT", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 506, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 383, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 350, + 398 + ], + "score": 1.0, + "content": "We verify our theoretical findings under general scalings of", + "type": "text" + }, + { + "bbox": [ + 351, + 387, + 378, + 397 + ], + "score": 0.88, + "content": "d , n , T", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 383, + 506, + 398 + ], + "score": 1.0, + "content": ". We adopt the data generating", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "model in Section 5.1 again. To compare the performance of the train-train and train-val methods,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 234, + 420 + ], + "score": 1.0, + "content": "we choose the number of tasks", + "type": "text" + }, + { + "bbox": [ + 235, + 407, + 273, + 418 + ], + "score": 0.88, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 406, + 376, + 420 + ], + "score": 1.0, + "content": "and per-task sample size", + "type": "text" + }, + { + "bbox": [ + 376, + 408, + 414, + 417 + ], + "score": 0.87, + "content": "n = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 406, + 456, + 420 + ], + "score": 1.0, + "content": ". We vary", + "type": "text" + }, + { + "bbox": [ + 456, + 408, + 463, + 417 + ], + "score": 0.77, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "from 0 to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 187, + 431 + ], + "score": 1.0, + "content": "300. Note that now", + "type": "text" + }, + { + "bbox": [ + 187, + 419, + 195, + 429 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 417, + 266, + 431 + ], + "score": 1.0, + "content": "is comparable to", + "type": "text" + }, + { + "bbox": [ + 266, + 420, + 273, + 429 + ], + "score": 0.76, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 417, + 291, + 431 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 292, + 419, + 298, + 429 + ], + "score": 0.77, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 417, + 393, + 431 + ], + "score": 1.0, + "content": "and much smaller than", + "type": "text" + }, + { + "bbox": [ + 393, + 419, + 436, + 429 + ], + "score": 0.89, + "content": "T = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "used in previous", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 428, + 456, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 417, + 442 + ], + "score": 1.0, + "content": "experiments. Figure 4 shows the close fit of reference curves to the simulated", + "type": "text" + }, + { + "bbox": [ + 417, + 430, + 427, + 441 + ], + "score": 0.85, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 428, + 456, + 442 + ], + "score": 1.0, + "content": "errors.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 383, + 506, + 442 + ] + }, + { + "type": "image", + "bbox": [ + 155, + 461, + 453, + 666 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 155, + 461, + 453, + 666 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 461, + 453, + 666 + ], + "spans": [ + { + "bbox": [ + 155, + 461, + 453, + 666 + ], + "score": 0.974, + "type": "image", + "image_path": "884f48f2f05610e81ad493ff8e7d6acb8f08491991b24912cf3460342ab3e75b.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 155, + 461, + 453, + 475.64285714285717 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 155, + 475.64285714285717, + 453, + 490.28571428571433 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 155, + 490.28571428571433, + 453, + 504.9285714285715 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 155, + 504.9285714285715, + 453, + 519.5714285714287 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 155, + 519.5714285714287, + 453, + 534.2142857142858 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 155, + 534.2142857142858, + 453, + 548.8571428571429 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 155, + 548.8571428571429, + 453, + 563.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 155, + 563.5, + 453, + 578.1428571428571 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 155, + 578.1428571428571, + 453, + 592.7857142857142 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 155, + 592.7857142857142, + 453, + 607.4285714285713 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 155, + 607.4285714285713, + 453, + 622.0714285714284 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 155, + 622.0714285714284, + 453, + 636.7142857142856 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 155, + 636.7142857142856, + 453, + 651.3571428571427 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 155, + 651.3571428571427, + 453, + 665.9999999999998 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 673, + 506, + 712 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 101, + 667, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 101, + 667, + 205, + 697 + ], + "score": 1.0, + "content": "Figure 4: The scaled (by", + "type": "text" + }, + { + "bbox": [ + 205, + 677, + 214, + 687 + ], + "score": 0.66, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 667, + 218, + 697 + ], + "score": 1.0, + "content": ")", + "type": "text" + }, + { + "bbox": [ + 218, + 677, + 228, + 688 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 667, + 262, + 697 + ], + "score": 1.0, + "content": "-error of", + "type": "text" + }, + { + "bbox": [ + 263, + 674, + 312, + 691 + ], + "score": 0.88, + "content": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 667, + 359, + 697 + ], + "score": 1.0, + "content": "as the ratio", + "type": "text" + }, + { + "bbox": [ + 359, + 677, + 377, + 689 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 667, + 506, + 697 + ], + "score": 1.0, + "content": "varies from 0 to 3 in the general", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 207, + 688, + 430, + 701 + ], + "spans": [ + { + "bbox": [ + 207, + 688, + 225, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 688, + 430, + 701 + ], + "score": 1.0, + "content": "are fixed). The regularization coefficient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 353, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 213, + 712 + ], + "score": 1.0, + "content": "the train-train method and", + "type": "text" + }, + { + "bbox": [ + 213, + 700, + 253, + 711 + ], + "score": 0.87, + "content": "\\lambda = 2 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 699, + 353, + 712 + ], + "score": 1.0, + "content": "for the train-val method.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + } + ], + "index": 32.75 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_model.json b/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_model.json new file mode 100644 index 0000000000000000000000000000000000000000..04511e0fbe56c85561cb8710115c2b90f44fcdfb --- /dev/null +++ b/parse/train/qG4ZVCCyCB0/qG4ZVCCyCB0_model.json @@ -0,0 +1,52693 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1360, + 1403, + 1360, + 1403, + 1636, + 297, + 1636 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1651, + 1402, + 1651, + 1402, + 1925, + 298, + 1925 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 398, + 807, + 1302, + 807, + 1302, + 1233, + 398, + 1233 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 398, + 588, + 1301, + 588, + 1301, + 802, + 398, + 802 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1401, + 1942, + 1401, + 2034, + 301, + 2034 + ], + "score": 0.969 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1400, + 219, + 1400, + 322, + 300, + 322 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 315, + 378, + 679, + 378, + 679, + 438, + 315, + 438 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 302, + 1291, + 572, + 1291, + 572, + 1326, + 302, + 1326 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 773, + 520, + 926, + 520, + 926, + 553, + 773, + 553 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.616 + }, + { + "category_id": 13, + "poly": [ + 541, + 1775, + 560, + 1775, + 560, + 1801, + 541, + 1801 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 654, + 1804, + 688, + 1804, + 688, + 1832, + 654, + 1832 + ], + "score": 0.8, + "latex": "5 k" + }, + { + "category_id": 13, + "poly": [ + 467, + 1836, + 487, + 1836, + 487, + 1863, + 467, + 1863 + ], + "score": 0.61, + "latex": "k" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 215.0, + 1405.0, + 215.0, + 1405.0, + 273.0, + 291.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 274.0, + 691.0, + 274.0, + 691.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1288.0, + 579.0, + 1288.0, + 579.0, + 1335.0, + 293.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 519.0, + 932.0, + 519.0, + 932.0, + 556.0, + 769.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 858.0, + 2088.0, + 858.0, + 2116.0, + 841.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1361.0, + 1403.0, + 1361.0, + 1403.0, + 1394.0, + 295.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1390.0, + 1403.0, + 1390.0, + 1403.0, + 1426.0, + 295.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1420.0, + 1405.0, + 1420.0, + 1405.0, + 1458.0, + 292.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1454.0, + 1404.0, + 1454.0, + 1404.0, + 1486.0, + 295.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1519.0, + 292.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1512.0, + 1401.0, + 1512.0, + 1401.0, + 1549.0, + 295.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1544.0, + 1405.0, + 1544.0, + 1405.0, + 1578.0, + 292.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1609.0, + 295.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1602.0, + 1031.0, + 1602.0, + 1031.0, + 1639.0, + 293.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1650.0, + 1406.0, + 1650.0, + 1406.0, + 1687.0, + 294.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1679.0, + 1406.0, + 1679.0, + 1406.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1710.0, + 1403.0, + 1710.0, + 1403.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1740.0, + 1406.0, + 1740.0, + 1406.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1775.0, + 540.0, + 1775.0, + 540.0, + 1807.0, + 294.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1775.0, + 1404.0, + 1775.0, + 1404.0, + 1807.0, + 561.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1804.0, + 653.0, + 1804.0, + 653.0, + 1836.0, + 296.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1804.0, + 1403.0, + 1804.0, + 1403.0, + 1836.0, + 689.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1836.0, + 466.0, + 1836.0, + 466.0, + 1869.0, + 296.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1836.0, + 1404.0, + 1836.0, + 1404.0, + 1869.0, + 488.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1866.0, + 1404.0, + 1866.0, + 1404.0, + 1898.0, + 296.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1896.0, + 1339.0, + 1896.0, + 1339.0, + 1928.0, + 296.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 806.0, + 1305.0, + 806.0, + 1305.0, + 841.0, + 396.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 836.0, + 1305.0, + 836.0, + 1305.0, + 873.0, + 393.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 868.0, + 1306.0, + 868.0, + 1306.0, + 902.0, + 393.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 900.0, + 1305.0, + 900.0, + 1305.0, + 933.0, + 394.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 931.0, + 1306.0, + 931.0, + 1306.0, + 960.0, + 393.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 959.0, + 1307.0, + 959.0, + 1307.0, + 993.0, + 393.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 991.0, + 1305.0, + 991.0, + 1305.0, + 1023.0, + 395.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1021.0, + 1305.0, + 1021.0, + 1305.0, + 1053.0, + 393.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1052.0, + 1305.0, + 1052.0, + 1305.0, + 1084.0, + 393.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1080.0, + 1305.0, + 1080.0, + 1305.0, + 1115.0, + 394.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1111.0, + 1303.0, + 1111.0, + 1303.0, + 1145.0, + 394.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1141.0, + 1305.0, + 1141.0, + 1305.0, + 1175.0, + 395.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1172.0, + 1305.0, + 1172.0, + 1305.0, + 1209.0, + 393.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1203.0, + 1043.0, + 1203.0, + 1043.0, + 1237.0, + 394.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 586.0, + 1307.0, + 586.0, + 1307.0, + 626.0, + 392.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 618.0, + 1307.0, + 618.0, + 1307.0, + 655.0, + 395.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 649.0, + 1306.0, + 649.0, + 1306.0, + 684.0, + 393.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 679.0, + 1305.0, + 679.0, + 1305.0, + 715.0, + 393.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 711.0, + 1305.0, + 711.0, + 1305.0, + 745.0, + 394.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 741.0, + 1305.0, + 741.0, + 1305.0, + 777.0, + 394.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 770.0, + 1208.0, + 770.0, + 1208.0, + 805.0, + 395.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2001.0, + 1404.0, + 2001.0, + 1404.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 379.0, + 560.0, + 379.0, + 560.0, + 411.0, + 314.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 407.0, + 683.0, + 407.0, + 683.0, + 440.0, + 309.0, + 440.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1608, + 1403, + 1608, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 585, + 1403, + 585, + 1403, + 920, + 298, + 920 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1137, + 1402, + 1137, + 1402, + 1381, + 298, + 1381 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 944, + 1402, + 944, + 1402, + 1128, + 299, + 1128 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 1391, + 1402, + 1391, + 1402, + 1512, + 300, + 1512 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 398, + 529, + 1268, + 529, + 1268, + 560, + 398, + 560 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.87 + }, + { + "category_id": 0, + "poly": [ + 301, + 1551, + 557, + 1551, + 557, + 1580, + 301, + 1580 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 505, + 298, + 505 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.702 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 859, + 2089, + 859, + 2112, + 841, + 2112 + ], + "score": 0.132 + }, + { + "category_id": 13, + "poly": [ + 685, + 977, + 782, + 977, + 782, + 1003, + 685, + 1003 + ], + "score": 0.89, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 567, + 231, + 600, + 231, + 600, + 259, + 567, + 259 + ], + "score": 0.8, + "latex": "6 k" + }, + { + "category_id": 13, + "poly": [ + 598, + 860, + 623, + 860, + 623, + 886, + 598, + 886 + ], + "score": 0.79, + "latex": "T" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1547.0, + 564.0, + 1547.0, + 564.0, + 1585.0, + 296.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2121.0, + 839.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2121.0, + 838.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 1404.0, + 1606.0, + 1404.0, + 1640.0, + 294.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1636.0, + 1405.0, + 1636.0, + 1405.0, + 1672.0, + 294.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1669.0, + 1404.0, + 1669.0, + 1404.0, + 1701.0, + 296.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1697.0, + 1403.0, + 1697.0, + 1403.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1727.0, + 1404.0, + 1727.0, + 1404.0, + 1762.0, + 292.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1404.0, + 1759.0, + 1404.0, + 1794.0, + 293.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1786.0, + 1407.0, + 1786.0, + 1407.0, + 1827.0, + 293.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1884.0, + 292.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1878.0, + 1407.0, + 1878.0, + 1407.0, + 1918.0, + 291.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1945.0, + 296.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1975.0, + 294.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 584.0, + 1403.0, + 584.0, + 1403.0, + 619.0, + 294.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 615.0, + 1405.0, + 615.0, + 1405.0, + 650.0, + 296.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 645.0, + 1405.0, + 645.0, + 1405.0, + 680.0, + 296.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 676.0, + 1405.0, + 676.0, + 1405.0, + 712.0, + 293.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 707.0, + 1405.0, + 707.0, + 1405.0, + 741.0, + 294.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 770.0, + 294.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 767.0, + 1405.0, + 767.0, + 1405.0, + 802.0, + 294.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 798.0, + 1405.0, + 798.0, + 1405.0, + 833.0, + 294.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 827.0, + 1405.0, + 827.0, + 1405.0, + 864.0, + 293.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 858.0, + 597.0, + 858.0, + 597.0, + 895.0, + 293.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 858.0, + 1403.0, + 858.0, + 1403.0, + 895.0, + 624.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 887.0, + 1240.0, + 887.0, + 1240.0, + 924.0, + 293.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1136.0, + 1406.0, + 1136.0, + 1406.0, + 1171.0, + 293.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1167.0, + 1406.0, + 1167.0, + 1406.0, + 1202.0, + 292.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1200.0, + 1403.0, + 1200.0, + 1403.0, + 1230.0, + 296.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1228.0, + 1404.0, + 1228.0, + 1404.0, + 1263.0, + 293.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1261.0, + 1404.0, + 1261.0, + 1404.0, + 1291.0, + 296.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1406.0, + 1290.0, + 1406.0, + 1323.0, + 294.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1319.0, + 1406.0, + 1319.0, + 1406.0, + 1353.0, + 294.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1351.0, + 1019.0, + 1351.0, + 1019.0, + 1384.0, + 293.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 940.0, + 1404.0, + 940.0, + 1404.0, + 983.0, + 293.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 976.0, + 684.0, + 976.0, + 684.0, + 1008.0, + 295.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 976.0, + 1404.0, + 976.0, + 1404.0, + 1008.0, + 783.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1004.0, + 1406.0, + 1004.0, + 1406.0, + 1041.0, + 293.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1035.0, + 1406.0, + 1035.0, + 1406.0, + 1073.0, + 294.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1066.0, + 1406.0, + 1066.0, + 1406.0, + 1102.0, + 294.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1096.0, + 927.0, + 1096.0, + 927.0, + 1132.0, + 294.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1390.0, + 1404.0, + 1390.0, + 1404.0, + 1423.0, + 296.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1420.0, + 1403.0, + 1420.0, + 1403.0, + 1453.0, + 295.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1453.0, + 1401.0, + 1453.0, + 1401.0, + 1485.0, + 296.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1481.0, + 1403.0, + 1481.0, + 1403.0, + 1516.0, + 295.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 526.0, + 1274.0, + 526.0, + 1274.0, + 568.0, + 395.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 566.0, + 230.0, + 566.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 264.0, + 601.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1407.0, + 260.0, + 1407.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1404.0, + 291.0, + 1404.0, + 324.0, + 294.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 317.0, + 1405.0, + 317.0, + 1405.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 354.0, + 1404.0, + 354.0, + 1404.0, + 387.0, + 296.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 380.0, + 1405.0, + 380.0, + 1405.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 411.0, + 1405.0, + 411.0, + 1405.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 443.0, + 1405.0, + 443.0, + 1405.0, + 479.0, + 294.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 473.0, + 1093.0, + 473.0, + 1093.0, + 513.0, + 294.0, + 513.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 695, + 1404, + 695, + 1404, + 973, + 298, + 973 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 325, + 1404, + 325, + 1404, + 663, + 297, + 663 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1684, + 1405, + 1684, + 1405, + 1840, + 297, + 1840 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1211, + 1404, + 1211, + 1404, + 1336, + 296, + 1336 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1419, + 1405, + 1419, + 1405, + 1514, + 298, + 1514 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1936, + 1406, + 1936, + 1406, + 2036, + 298, + 2036 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 1084, + 1403, + 1084, + 1403, + 1178, + 300, + 1178 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 295, + 1589, + 1406, + 1589, + 1406, + 1654, + 295, + 1654 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1400, + 229, + 1400, + 293, + 294, + 293 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 483, + 1534, + 1211, + 1534, + 1211, + 1580, + 483, + 1580 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 383, + 1352, + 1310, + 1352, + 1310, + 1388, + 383, + 1388 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 300, + 1016, + 578, + 1016, + 578, + 1051, + 300, + 1051 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1542, + 1400, + 1542, + 1400, + 1572, + 1366, + 1572 + ], + "score": 0.871 + }, + { + "category_id": 8, + "poly": [ + 294, + 1857, + 1456, + 1857, + 1456, + 1922, + 294, + 1922 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.657 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.413 + }, + { + "category_id": 13, + "poly": [ + 446, + 1147, + 536, + 1147, + 536, + 1179, + 446, + 1179 + ], + "score": 0.95, + "latex": "( T + 1 )" + }, + { + "category_id": 13, + "poly": [ + 336, + 1969, + 470, + 1969, + 470, + 2006, + 336, + 2006 + ], + "score": 0.95, + "latex": "{ \\left\\| { \\bf w } - { \\bf w } _ { 0 } \\right\\} | ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 410, + 1480, + 671, + 1480, + 671, + 1515, + 410, + 1515 + ], + "score": 0.94, + "latex": "( { \\bf X } _ { t } , { \\bf y } _ { t } ) \\in \\mathbb { R } ^ { n \\times d } \\times \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1120, + 1777, + 1225, + 1777, + 1225, + 1809, + 1120, + 1809 + ], + "score": 0.93, + "latex": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 795, + 1271, + 901, + 1271, + 901, + 1304, + 795, + 1304 + ], + "score": 0.92, + "latex": "\\mathbf { w } _ { t } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1351, + 739, + 1351, + 739, + 1386, + 634, + 1386 + ], + "score": 0.92, + "latex": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 751, + 1591, + 817, + 1591, + 817, + 1623, + 751, + 1623 + ], + "score": 0.92, + "latex": "( n , d )" + }, + { + "category_id": 13, + "poly": [ + 373, + 1938, + 446, + 1938, + 446, + 1966, + 373, + 1966 + ], + "score": 0.92, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1621, + 1383, + 1621, + 1383, + 1652, + 1251, + 1652 + ], + "score": 0.92, + "latex": "\\mathbf { X } _ { t } \\widetilde { \\mathbf { w } } _ { t } = \\mathbf { y } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 936, + 1422, + 1015, + 1422, + 1015, + 1451, + 936, + 1451 + ], + "score": 0.91, + "latex": "T \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 746, + 1449, + 838, + 1449, + 838, + 1481, + 746, + 1481 + ], + "score": 0.9, + "latex": "\\mathbb { R } ^ { d } \\times \\mathbb { R } ^ { \\cdot }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1746, + 402, + 1746, + 402, + 1778, + 297, + 1778 + ], + "score": 0.9, + "latex": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 299, + 1807, + 374, + 1807, + 374, + 1841, + 299, + 1841 + ], + "score": 0.9, + "latex": "( \\mathbf { X } , \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 924, + 1621, + 959, + 1621, + 959, + 1651, + 924, + 1651 + ], + "score": 0.9, + "latex": "\\widetilde { \\mathbf { w } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1326, + 1086, + 1401, + 1086, + 1401, + 1116, + 1326, + 1116 + ], + "score": 0.89, + "latex": "T \\geq 1" + }, + { + "category_id": 14, + "poly": [ + 487, + 1530, + 1212, + 1530, + 1212, + 1579, + 487, + 1579 + ], + "score": 0.88, + "latex": "p _ { t } \\sim \\Pi , ~ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = 1 } ^ { n } ~ \\mathrm { w h e r e } ~ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\overset { \\mathrm { i i d } } { \\sim } p _ { t } ." + }, + { + "category_id": 14, + "poly": [ + 310, + 1852, + 1428, + 1852, + 1428, + 1923, + 310, + 1923 + ], + "score": 0.88, + "latex": "4 \\lambda _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) : = \\operatorname { a r g m i n } _ { \\mathbf { w } } { \\frac { 1 } { n } } \\left\\| \\mathbf { X } \\mathbf { w } - \\mathbf { y } \\right\\| ^ { 2 } + \\lambda \\left\\| \\mathbf { w } - \\mathbf { w } _ { 0 } \\right\\| ^ { 2 } = \\mathbf { w } _ { 0 } + \\left( \\mathbf { X } ^ { \\top } \\mathbf { X } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } ^ { \\top } ( \\mathbf { y } - \\mathbf { X } \\mathbf { w } _ { 0 } ) ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1622, + 368, + 1622, + 368, + 1651, + 298, + 1651 + ], + "score": 0.87, + "latex": "n \\leq d" + }, + { + "category_id": 13, + "poly": [ + 644, + 1782, + 680, + 1782, + 680, + 1808, + 644, + 1808 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1308, + 1022, + 1308, + 1022, + 1334, + 987, + 1334 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1197, + 1748, + 1231, + 1748, + 1231, + 1778, + 1197, + 1778 + ], + "score": 0.86, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 644, + 1720, + 680, + 1720, + 680, + 1747, + 644, + 1747 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1361, + 1144, + 1361, + 1144, + 1386, + 1109, + 1386 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 419, + 1306, + 458, + 1306, + 458, + 1334, + 419, + 1334 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1977, + 1161, + 1977, + 1161, + 2003, + 1122, + 2003 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 960, + 1487, + 986, + 1487, + 986, + 1514, + 960, + 1514 + ], + "score": 0.85, + "latex": "p _ { t }" + }, + { + "category_id": 13, + "poly": [ + 495, + 1456, + 521, + 1456, + 521, + 1482, + 495, + 1482 + ], + "score": 0.82, + "latex": "p _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1458, + 1401, + 1458, + 1401, + 1479, + 1381, + 1479 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 937, + 1720, + 951, + 1720, + 951, + 1744, + 937, + 1744 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1387, + 1424, + 1402, + 1424, + 1402, + 1447, + 1387, + 1447 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1276, + 1262, + 1276, + 1262, + 1300, + 1249, + 1300 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1452, + 1229, + 1452, + 1229, + 1479, + 1205, + 1479 + ], + "score": 0.66, + "latex": "\\Pi" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1360, + 1305, + 1360, + 1305, + 1383, + 1292, + 1383 + ], + "score": 0.64, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1013.0, + 582.0, + 1013.0, + 582.0, + 1057.0, + 293.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 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, + 696.0, + 1405.0, + 696.0, + 1405.0, + 729.0, + 296.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 722.0, + 1405.0, + 722.0, + 1405.0, + 762.0, + 293.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 758.0, + 1405.0, + 758.0, + 1405.0, + 791.0, + 296.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 788.0, + 1405.0, + 788.0, + 1405.0, + 821.0, + 296.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 814.0, + 1406.0, + 814.0, + 1406.0, + 856.0, + 292.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 1405.0, + 847.0, + 1405.0, + 883.0, + 294.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 879.0, + 1406.0, + 879.0, + 1406.0, + 915.0, + 293.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 907.0, + 1403.0, + 907.0, + 1403.0, + 944.0, + 295.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 940.0, + 1342.0, + 940.0, + 1342.0, + 977.0, + 294.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 324.0, + 1405.0, + 324.0, + 1405.0, + 360.0, + 295.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 393.0, + 294.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 386.0, + 1402.0, + 386.0, + 1402.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 418.0, + 1400.0, + 418.0, + 1400.0, + 449.0, + 299.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 448.0, + 1402.0, + 448.0, + 1402.0, + 480.0, + 293.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 478.0, + 1402.0, + 478.0, + 1402.0, + 513.0, + 295.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 508.0, + 1404.0, + 508.0, + 1404.0, + 544.0, + 294.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 539.0, + 1404.0, + 539.0, + 1404.0, + 572.0, + 294.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 571.0, + 1401.0, + 571.0, + 1401.0, + 602.0, + 296.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 602.0, + 1404.0, + 602.0, + 1404.0, + 633.0, + 297.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 630.0, + 1067.0, + 630.0, + 1067.0, + 664.0, + 296.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1719.0, + 296.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1714.0, + 643.0, + 1714.0, + 643.0, + 1750.0, + 294.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1714.0, + 936.0, + 1714.0, + 936.0, + 1750.0, + 681.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1714.0, + 1405.0, + 1714.0, + 1405.0, + 1750.0, + 952.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1741.0, + 296.0, + 1741.0, + 296.0, + 1785.0, + 291.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1741.0, + 1196.0, + 1741.0, + 1196.0, + 1785.0, + 403.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 1741.0, + 1407.0, + 1741.0, + 1407.0, + 1785.0, + 1232.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1775.0, + 643.0, + 1775.0, + 643.0, + 1813.0, + 295.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1775.0, + 1119.0, + 1775.0, + 1119.0, + 1813.0, + 681.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1775.0, + 1405.0, + 1775.0, + 1405.0, + 1813.0, + 1226.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1807.0, + 681.0, + 1807.0, + 681.0, + 1845.0, + 375.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1208.0, + 1405.0, + 1208.0, + 1405.0, + 1249.0, + 291.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1243.0, + 1405.0, + 1243.0, + 1405.0, + 1276.0, + 293.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1271.0, + 794.0, + 1271.0, + 794.0, + 1307.0, + 294.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1271.0, + 1248.0, + 1271.0, + 1248.0, + 1307.0, + 902.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1271.0, + 1409.0, + 1271.0, + 1409.0, + 1307.0, + 1263.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1300.0, + 418.0, + 1300.0, + 418.0, + 1338.0, + 294.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1300.0, + 986.0, + 1300.0, + 986.0, + 1338.0, + 459.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1300.0, + 1222.0, + 1300.0, + 1222.0, + 1338.0, + 1023.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1419.0, + 935.0, + 1419.0, + 935.0, + 1453.0, + 295.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1419.0, + 1386.0, + 1419.0, + 1386.0, + 1453.0, + 1016.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1419.0, + 1406.0, + 1419.0, + 1406.0, + 1453.0, + 1403.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1448.0, + 494.0, + 1448.0, + 494.0, + 1486.0, + 292.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1448.0, + 745.0, + 1448.0, + 745.0, + 1486.0, + 522.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1448.0, + 1204.0, + 1448.0, + 1204.0, + 1486.0, + 839.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1448.0, + 1380.0, + 1448.0, + 1380.0, + 1486.0, + 1230.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1448.0, + 1407.0, + 1448.0, + 1407.0, + 1486.0, + 1402.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1474.0, + 409.0, + 1474.0, + 409.0, + 1521.0, + 291.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1474.0, + 959.0, + 1474.0, + 959.0, + 1521.0, + 672.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1474.0, + 1004.0, + 1474.0, + 1004.0, + 1521.0, + 987.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1933.0, + 372.0, + 1933.0, + 372.0, + 1974.0, + 293.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1933.0, + 1406.0, + 1933.0, + 1406.0, + 1974.0, + 447.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1967.0, + 335.0, + 1967.0, + 335.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1967.0, + 1121.0, + 1967.0, + 1121.0, + 2010.0, + 471.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1967.0, + 1407.0, + 1967.0, + 1407.0, + 2010.0, + 1162.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 1406.0, + 2001.0, + 1406.0, + 2037.0, + 292.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1082.0, + 1325.0, + 1082.0, + 1325.0, + 1121.0, + 293.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1114.0, + 1407.0, + 1114.0, + 1407.0, + 1153.0, + 294.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1147.0, + 445.0, + 1147.0, + 445.0, + 1181.0, + 296.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1147.0, + 1220.0, + 1147.0, + 1220.0, + 1181.0, + 537.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1587.0, + 750.0, + 1587.0, + 750.0, + 1627.0, + 294.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1587.0, + 1404.0, + 1587.0, + 1404.0, + 1627.0, + 818.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1616.0, + 297.0, + 1616.0, + 297.0, + 1660.0, + 292.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1616.0, + 923.0, + 1616.0, + 923.0, + 1660.0, + 369.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1616.0, + 1250.0, + 1616.0, + 1250.0, + 1660.0, + 960.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 1616.0, + 1397.0, + 1616.0, + 1397.0, + 1660.0, + 1384.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1402.0, + 228.0, + 1402.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 257.0, + 605.0, + 257.0, + 605.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1351.0, + 633.0, + 1351.0, + 633.0, + 1391.0, + 382.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1351.0, + 1108.0, + 1351.0, + 1108.0, + 1391.0, + 740.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1351.0, + 1291.0, + 1351.0, + 1291.0, + 1391.0, + 1145.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1351.0, + 1317.0, + 1351.0, + 1317.0, + 1391.0, + 1306.0, + 1391.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1396, + 1403, + 1396, + 1403, + 1521, + 297, + 1521 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 362, + 1405, + 362, + 1405, + 493, + 296, + 493 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 522, + 1405, + 522, + 1405, + 649, + 296, + 649 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 906, + 1404, + 906, + 1404, + 999, + 297, + 999 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1881, + 1404, + 1881, + 1404, + 1986, + 297, + 1986 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 446, + 1147, + 1252, + 1147, + 1252, + 1303, + 446, + 1303 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 1607, + 1402, + 1607, + 1402, + 1699, + 297, + 1699 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 586, + 1009, + 1110, + 1009, + 1110, + 1071, + 586, + 1071 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 666, + 1819, + 1034, + 1819, + 1034, + 1873, + 666, + 1873 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 227, + 1402, + 227, + 1402, + 294, + 298, + 294 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 525, + 819, + 1171, + 819, + 1171, + 886, + 525, + 886 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 301, + 1075, + 1403, + 1075, + 1403, + 1137, + 301, + 1137 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 418, + 1704, + 1284, + 1704, + 1284, + 1747, + 418, + 1747 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 319, + 1530, + 1378, + 1530, + 1378, + 1603, + 319, + 1603 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 293, + 1750, + 1399, + 1750, + 1399, + 1812, + 293, + 1812 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 298, + 1311, + 1247, + 1311, + 1247, + 1370, + 298, + 1370 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 335, + 2004, + 735, + 2004, + 735, + 2035, + 335, + 2035 + ], + "score": 0.915 + }, + { + "category_id": 8, + "poly": [ + 322, + 301, + 1364, + 301, + 1364, + 350, + 322, + 350 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 106, + 297, + 106 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1365, + 835, + 1400, + 835, + 1400, + 866, + 1365, + 866 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1024, + 1400, + 1024, + 1400, + 1054, + 1366, + 1054 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1823, + 1400, + 1823, + 1400, + 1853, + 1365, + 1853 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1210, + 1401, + 1210, + 1401, + 1239, + 1365, + 1239 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 300, + 708, + 1407, + 708, + 1407, + 811, + 300, + 811 + ], + "score": 0.764 + }, + { + "category_id": 8, + "poly": [ + 328, + 659, + 1322, + 659, + 1322, + 702, + 328, + 702 + ], + "score": 0.404 + }, + { + "category_id": 1, + "poly": [ + 328, + 659, + 1322, + 659, + 1322, + 702, + 328, + 702 + ], + "score": 0.378 + }, + { + "category_id": 14, + "poly": [ + 586, + 1005, + 1113, + 1005, + 1113, + 1071, + 586, + 1071 + ], + "score": 0.94, + "latex": "\\ell _ { t } ^ { { \\mathrm { t r } } \\cdot { \\mathrm { t r } } } ( \\mathbf { w } _ { 0 } ) : = { \\frac { 1 } { 2 n } } \\left\\| \\mathbf { y } _ { t } - \\mathbf { X } _ { t } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\right\\| ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 665, + 1818, + 1035, + 1818, + 1035, + 1876, + 665, + 1876 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda ; n ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1049, + 656, + 1316, + 656, + 1316, + 704, + 1049, + 704 + ], + "score": 0.94, + "latex": "\\left\\| \\mathbf { y } _ { t } ^ { \\mathsf { v a l } } - \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { w } _ { t } ( \\mathbf { w } _ { 0 } ) \\right\\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 697, + 1916, + 831, + 1916, + 831, + 1950, + 697, + 1950 + ], + "score": 0.93, + "latex": "{ \\bf w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 499, + 1950, + 621, + 1950, + 621, + 1986, + 499, + 1986 + ], + "score": 0.93, + "latex": "\\mathbf { w } _ { 0 , \\star } ( \\lambda , n )" + }, + { + "category_id": 13, + "poly": [ + 381, + 361, + 517, + 361, + 517, + 394, + 381, + 394 + ], + "score": 0.93, + "latex": "\\mathbf { X } ^ { \\dagger } \\in \\mathbb { R } ^ { d \\times n }" + }, + { + "category_id": 14, + "poly": [ + 444, + 1143, + 1249, + 1143, + 1249, + 1304, + 444, + 1304 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\widehat { L } _ { T } ^ { \\mathrm { t r } \\setminus \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) : = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) \\quad \\mathrm { a n d } \\quad \\widehat { L } _ { T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 } ) : = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 } ) , } \\\\ & { \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r } \\cdot \\mathrm { v a l } , \\mathrm { t r } \\cdot \\mathrm { t r } \\} } : = \\displaystyle \\arg \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } \\widehat { L } _ { T } ^ { \\{ \\mathrm { t r } \\cdot \\mathrm { v a l } , \\mathrm { t r } \\cdot \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 952, + 395, + 1092, + 395, + 1092, + 433, + 952, + 433 + ], + "score": 0.93, + "latex": "\\left\\| \\mathbf { X } \\mathbf { w } - \\mathbf { y } \\right\\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 768, + 749, + 860, + 749, + 860, + 782, + 768, + 782 + ], + "score": 0.92, + "latex": "( n _ { 1 } , n _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 934, + 1488, + 1112, + 1488, + 1112, + 1522, + 934, + 1522 + ], + "score": 0.92, + "latex": "( { \\bf x } ^ { \\prime } , y ^ { \\prime } ) \\sim p _ { T + 1 }" + }, + { + "category_id": 13, + "poly": [ + 586, + 750, + 681, + 750, + 681, + 781, + 586, + 781 + ], + "score": 0.92, + "latex": "\\left( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } \\right)" + }, + { + "category_id": 14, + "poly": [ + 525, + 815, + 1174, + 815, + 1174, + 887, + 525, + 887 + ], + "score": 0.92, + "latex": "\\ell _ { t } ^ { { \\mathrm { t r } } - { \\mathrm { v a l } } } ( \\mathbf { w } _ { 0 } ) : = \\frac { 1 } { 2 n _ { 2 } } \\left. \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\boldsymbol { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } ) \\right. ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 322, + 1529, + 1374, + 1529, + 1374, + 1604, + 322, + 1604 + ], + "score": 0.91, + "latex": "L ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ; \\mathbb { A } | \\mathbf { g } ) : = \\mathbb { E } _ { p _ { T + 1 } \\sim \\Pi } \\mathbb { E } _ { ( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) , ( \\mathbf { x } ^ { \\prime } , \\pmb { y } ^ { \\prime } ) ^ { \\sharp \\alpha } p _ { T + 1 } } \\left[ \\frac { 1 } { 2 } \\big ( \\mathbf { x } ^ { \\prime \\top } \\mathbb { A } | \\mathbf { g } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) - \\pmb { y } ^ { \\prime } \\big ) ^ { 2 } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 483, + 663, + 856, + 663, + 856, + 701, + 483, + 701 + ], + "score": 0.91, + "latex": "{ \\bf w } _ { t } ( { \\bf w } _ { 0 } ) = \\boldsymbol { \\mathcal { A } } _ { \\boldsymbol { \\lambda } } ( { \\bf w } _ { 0 } ; { \\bf X } _ { t } ^ { \\sf t r a i n } , { \\bf y } _ { t } ^ { \\sf t r a i n } )" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1915, + 1284, + 1915, + 1284, + 1955, + 1220, + 1955 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 375, + 1753, + 440, + 1753, + 440, + 1785, + 375, + 1785 + ], + "score": 0.91, + "latex": "\\mathcal { A } _ { \\lambda , m }" + }, + { + "category_id": 13, + "poly": [ + 1076, + 232, + 1163, + 232, + 1163, + 259, + 1076, + 259 + ], + "score": 0.91, + "latex": "\\lambda 0" + }, + { + "category_id": 13, + "poly": [ + 830, + 1883, + 889, + 1883, + 889, + 1916, + 830, + 1916 + ], + "score": 0.91, + "latex": "\\mathcal { A } _ { \\lambda , n }" + }, + { + "category_id": 13, + "poly": [ + 818, + 710, + 1212, + 710, + 1212, + 751, + 818, + 751 + ], + "score": 0.91, + "latex": "( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } , \\mathbf { y } _ { t } ^ { \\mathsf { v a l } } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = n _ { 1 } + 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 498, + 1457, + 843, + 1457, + 843, + 1492, + 498, + 1492 + ], + "score": 0.9, + "latex": "( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) \\in \\mathbb { R } ^ { n \\times d } \\times \\mathbb { R } ^ { \\bar { n } }" + }, + { + "category_id": 14, + "poly": [ + 334, + 299, + 1365, + 299, + 1365, + 354, + 334, + 354 + ], + "score": 0.9, + "latex": "\\mathcal { A } _ { 0 } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) : = \\operatorname* { l i m } _ { \\lambda \\to 0 } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } , \\mathbf { y } ) = \\mathbf { w } _ { 0 } + \\mathbf { X } ^ { \\dagger } ( \\mathbf { y } - \\mathbf { X } \\mathbf { w } _ { 0 } ) = \\arg \\operatorname* { m i n } _ { \\mathbf { X } \\mathbf { w } = \\mathbf { y } } \\left\\| \\mathbf { w } - \\mathbf { w } _ { 0 } \\right\\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1280, + 1428, + 1401, + 1428, + 1401, + 1460, + 1280, + 1460 + ], + "score": 0.9, + "latex": "p _ { T + 1 } \\sim \\Pi" + }, + { + "category_id": 13, + "poly": [ + 535, + 431, + 606, + 431, + 606, + 459, + 535, + 459 + ], + "score": 0.9, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 1171, + 1754, + 1262, + 1754, + 1262, + 1782, + 1171, + 1782 + ], + "score": 0.9, + "latex": "m \\leq n" + }, + { + "category_id": 13, + "poly": [ + 377, + 710, + 760, + 710, + 760, + 748, + 377, + 748 + ], + "score": 0.9, + "latex": "( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } ) = \\{ ( \\mathbf { x } _ { t , i } , y _ { t , i } ) \\} _ { i = 1 } ^ { n _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 930, + 752, + 1080, + 752, + 1080, + 780, + 930, + 780 + ], + "score": 0.9, + "latex": "n _ { 1 } + n _ { 2 } = n" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1753, + 1128, + 1753, + 1128, + 1781, + 1047, + 1781 + ], + "score": 0.89, + "latex": "\\lambda > 0" + }, + { + "category_id": 14, + "poly": [ + 414, + 1705, + 1280, + 1705, + 1280, + 1748, + 414, + 1748 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ) : = L ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ; \\mathcal { A } _ { \\lambda , n _ { 1 } } ) , \\quad L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) : = L ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ; \\mathcal { A } _ { \\lambda , n } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 398, + 375, + 398, + 375, + 433, + 298, + 433 + ], + "score": 0.89, + "latex": "( \\mathbf { X } , \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 1238, + 402, + 1276, + 402, + 1276, + 431, + 1238, + 431 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1915, + 372, + 1915, + 372, + 1954, + 297, + 1954 + ], + "score": 0.87, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 543, + 620, + 582, + 620, + 582, + 647, + 543, + 647 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1464, + 1321, + 1464, + 1321, + 1490, + 1282, + 1490 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1355, + 529, + 1393, + 529, + 1393, + 556, + 1355, + 556 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 621, + 1431, + 659, + 1431, + 659, + 1458, + 621, + 1458 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1271, + 1078, + 1295, + 1078, + 1295, + 1103, + 1271, + 1103 + ], + "score": 0.84, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1460, + 1156, + 1460, + 1156, + 1491, + 1112, + 1491 + ], + "score": 0.81, + "latex": "\\mathsf { A l g }" + }, + { + "category_id": 13, + "poly": [ + 339, + 1313, + 980, + 1313, + 980, + 1370, + 339, + 1370 + ], + "score": 0.76, + "latex": "L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\vee \\mathsf { a l } , \\mathrm { t r } \\mathrm { - } \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) : = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( { \\mathbf { X } } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\ell _ { t } ^ { \\{ \\mathrm { t r } \\mathrm { - } \\vee \\mathsf { a l } , \\mathrm { t r } \\mathrm { - } \\mathrm { t r } \\} } ( \\mathbf { w } _ { 0 } ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 857, + 366, + 884, + 366, + 884, + 393, + 857, + 393 + ], + "score": 0.71, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 927, + 1429, + 970, + 1429, + 970, + 1459, + 927, + 1459 + ], + "score": 0.7, + "latex": "\\mathsf { A l g }" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 2000.0, + 739.0, + 2000.0, + 739.0, + 2038.0, + 333.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1398.0, + 1403.0, + 1398.0, + 1403.0, + 1430.0, + 296.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1427.0, + 620.0, + 1427.0, + 620.0, + 1463.0, + 293.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1427.0, + 926.0, + 1427.0, + 926.0, + 1463.0, + 660.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1427.0, + 1279.0, + 1427.0, + 1279.0, + 1463.0, + 971.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1427.0, + 1407.0, + 1427.0, + 1407.0, + 1463.0, + 1402.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1453.0, + 497.0, + 1453.0, + 497.0, + 1496.0, + 290.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1453.0, + 1111.0, + 1453.0, + 1111.0, + 1496.0, + 844.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1453.0, + 1281.0, + 1453.0, + 1281.0, + 1496.0, + 1157.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1453.0, + 1408.0, + 1453.0, + 1408.0, + 1496.0, + 1322.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1483.0, + 933.0, + 1483.0, + 933.0, + 1528.0, + 291.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1483.0, + 1126.0, + 1483.0, + 1126.0, + 1528.0, + 1113.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 359.0, + 380.0, + 359.0, + 380.0, + 400.0, + 293.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 359.0, + 856.0, + 359.0, + 856.0, + 400.0, + 518.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 359.0, + 1407.0, + 359.0, + 1407.0, + 400.0, + 885.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 396.0, + 951.0, + 396.0, + 951.0, + 434.0, + 376.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 396.0, + 1237.0, + 396.0, + 1237.0, + 434.0, + 1093.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 396.0, + 1405.0, + 396.0, + 1405.0, + 434.0, + 1277.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 430.0, + 534.0, + 430.0, + 534.0, + 464.0, + 294.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 430.0, + 1405.0, + 430.0, + 1405.0, + 464.0, + 607.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 630.0, + 459.0, + 630.0, + 492.0, + 294.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 522.0, + 1354.0, + 522.0, + 1354.0, + 561.0, + 293.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 522.0, + 1405.0, + 522.0, + 1405.0, + 561.0, + 1394.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 554.0, + 1405.0, + 554.0, + 1405.0, + 590.0, + 295.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 584.0, + 1403.0, + 584.0, + 1403.0, + 620.0, + 293.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 616.0, + 542.0, + 616.0, + 542.0, + 652.0, + 293.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 616.0, + 1314.0, + 616.0, + 1314.0, + 652.0, + 583.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 907.0, + 1402.0, + 907.0, + 1402.0, + 940.0, + 295.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 937.0, + 1402.0, + 937.0, + 1402.0, + 969.0, + 295.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 966.0, + 767.0, + 966.0, + 767.0, + 1001.0, + 295.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1877.0, + 829.0, + 1877.0, + 829.0, + 1918.0, + 292.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1877.0, + 1405.0, + 1877.0, + 1405.0, + 1918.0, + 890.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1898.0, + 296.0, + 1898.0, + 296.0, + 1971.0, + 282.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1898.0, + 696.0, + 1898.0, + 696.0, + 1971.0, + 373.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1898.0, + 1219.0, + 1898.0, + 1219.0, + 1971.0, + 832.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1898.0, + 1415.0, + 1898.0, + 1415.0, + 1971.0, + 1285.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1949.0, + 498.0, + 1949.0, + 498.0, + 1987.0, + 293.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1949.0, + 632.0, + 1949.0, + 632.0, + 1987.0, + 622.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1604.0, + 1404.0, + 1604.0, + 1404.0, + 1642.0, + 295.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1639.0, + 1406.0, + 1639.0, + 1406.0, + 1672.0, + 295.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1666.0, + 1070.0, + 1666.0, + 1070.0, + 1702.0, + 294.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 1075.0, + 225.0, + 1075.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 225.0, + 1406.0, + 225.0, + 1406.0, + 267.0, + 1164.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 722.0, + 261.0, + 722.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1073.0, + 1270.0, + 1073.0, + 1270.0, + 1112.0, + 296.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1073.0, + 1405.0, + 1073.0, + 1405.0, + 1112.0, + 1296.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1107.0, + 821.0, + 1107.0, + 821.0, + 1139.0, + 297.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1748.0, + 374.0, + 1748.0, + 374.0, + 1787.0, + 295.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1748.0, + 1046.0, + 1748.0, + 1046.0, + 1787.0, + 441.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1748.0, + 1170.0, + 1748.0, + 1170.0, + 1787.0, + 1129.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1748.0, + 1404.0, + 1748.0, + 1404.0, + 1787.0, + 1263.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1781.0, + 463.0, + 1781.0, + 463.0, + 1814.0, + 296.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 1302.0, + 338.0, + 1302.0, + 338.0, + 1376.0, + 280.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1302.0, + 1262.0, + 1302.0, + 1262.0, + 1376.0, + 981.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 688.0, + 376.0, + 688.0, + 376.0, + 766.0, + 286.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 688.0, + 817.0, + 688.0, + 817.0, + 766.0, + 761.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 688.0, + 1416.0, + 688.0, + 1416.0, + 766.0, + 1213.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 746.0, + 585.0, + 746.0, + 585.0, + 785.0, + 295.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 746.0, + 767.0, + 746.0, + 767.0, + 785.0, + 682.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 746.0, + 929.0, + 746.0, + 929.0, + 785.0, + 861.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 746.0, + 1408.0, + 746.0, + 1408.0, + 785.0, + 1081.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 777.0, + 566.0, + 777.0, + 566.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 650.0, + 482.0, + 650.0, + 482.0, + 713.0, + 367.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 650.0, + 1048.0, + 650.0, + 1048.0, + 713.0, + 857.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 650.0, + 1329.0, + 650.0, + 1329.0, + 713.0, + 1317.0, + 713.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 515, + 1404, + 515, + 1404, + 683, + 298, + 683 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 284, + 1405, + 284, + 1405, + 489, + 296, + 489 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1551, + 1405, + 1551, + 1405, + 1741, + 297, + 1741 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1753, + 1405, + 1753, + 1405, + 1960, + 297, + 1960 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1003, + 1405, + 1003, + 1405, + 1109, + 298, + 1109 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 1369, + 1405, + 1369, + 1405, + 1531, + 297, + 1531 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1113, + 1407, + 1113, + 1407, + 1259, + 298, + 1259 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 808, + 1405, + 808, + 1405, + 902, + 297, + 902 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 495, + 691, + 1202, + 691, + 1202, + 801, + 495, + 801 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 1268, + 1496, + 1268, + 1496, + 1361, + 296, + 1361 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 297, + 1978, + 1405, + 1978, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 298, + 943, + 934, + 943, + 934, + 980, + 298, + 980 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.764 + }, + { + "category_id": 0, + "poly": [ + 297, + 230, + 1096, + 230, + 1096, + 262, + 297, + 262 + ], + "score": 0.478 + }, + { + "category_id": 13, + "poly": [ + 297, + 1147, + 515, + 1147, + 515, + 1187, + 297, + 1187 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\left\\| \\mathbf { x } \\right\\| ^ { 4 } ] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 1258, + 839, + 1350, + 839, + 1350, + 872, + 1258, + 872 + ], + "score": 0.93, + "latex": "{ \\cal O } ( 1 / T )" + }, + { + "category_id": 13, + "poly": [ + 676, + 1047, + 799, + 1047, + 799, + 1081, + 676, + 1081 + ], + "score": 0.93, + "latex": "\\mathbf { w } _ { 0 , \\star } ( \\lambda ; n )" + }, + { + "category_id": 14, + "poly": [ + 496, + 688, + 1203, + 688, + 1203, + 805, + 496, + 805 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\displaystyle \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\operatorname* { l i m } _ { T \\infty } T \\cdot \\mathbb { E } \\Big [ \\big \\| \\widehat { \\mathbf w } _ { 0 , T } - { \\mathbf w } _ { 0 , \\star } \\big \\| ^ { 2 } \\Big ] } \\\\ & { \\displaystyle \\mathrm { A s y m E x c e s s R i s k } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\operatorname* { l i m } _ { T \\infty } T \\cdot \\mathbb { E } [ L ( \\widehat { \\mathbf w } _ { 0 , T } ) - L ( { \\mathbf w } _ { 0 , \\star } ) ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 503, + 1046, + 637, + 1046, + 637, + 1081, + 503, + 1081 + ], + "score": 0.92, + "latex": "\\mathbf { w } _ { 0 , \\star } \\big ( \\lambda ; n _ { 1 } \\big )" + }, + { + "category_id": 13, + "poly": [ + 995, + 348, + 1145, + 348, + 1145, + 393, + 995, + 393 + ], + "score": 0.92, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathsf { t r } - \\mathsf { v a l } , \\mathsf { t r } - \\mathsf { t r } \\} } )" + }, + { + "category_id": 13, + "poly": [ + 833, + 1645, + 899, + 1645, + 899, + 1682, + 833, + 1682 + ], + "score": 0.92, + "latex": "L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 963, + 590, + 1024, + 590, + 1024, + 625, + 963, + 625 + ], + "score": 0.92, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T }" + }, + { + "category_id": 13, + "poly": [ + 1154, + 1431, + 1400, + 1431, + 1400, + 1468, + 1154, + 1468 + ], + "score": 0.91, + "latex": "\\lVert \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } - \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) \\rVert" + }, + { + "category_id": 13, + "poly": [ + 658, + 1861, + 714, + 1861, + 714, + 1896, + 658, + 1896 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 287, + 1293, + 287, + 1293, + 320, + 1227, + 320 + ], + "score": 0.91, + "latex": "( d , n )" + }, + { + "category_id": 13, + "poly": [ + 407, + 1224, + 656, + 1224, + 656, + 1265, + 407, + 1265 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } \\to \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1147, + 1827, + 1204, + 1827, + 1204, + 1864, + 1147, + 1864 + ], + "score": 0.91, + "latex": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 849, + 1004, + 988, + 1004, + 988, + 1050, + 849, + 1050 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - v a l , t r - t r } \\} }" + }, + { + "category_id": 13, + "poly": [ + 1064, + 1153, + 1154, + 1153, + 1154, + 1185, + 1064, + 1185 + ], + "score": 0.91, + "latex": "p _ { t } \\sim \\Pi" + }, + { + "category_id": 13, + "poly": [ + 595, + 587, + 634, + 587, + 634, + 621, + 595, + 621 + ], + "score": 0.91, + "latex": "\\widehat { L } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1862, + 1272, + 1862, + 1272, + 1900, + 1216, + 1900 + ], + "score": 0.91, + "latex": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 1208, + 590, + 1370, + 590, + 1370, + 625, + 1208, + 625 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } \\to \\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1189, + 486, + 1189, + 486, + 1222, + 394, + 1222 + ], + "score": 0.9, + "latex": "( n _ { 1 } , n _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 570, + 1151, + 824, + 1151, + 824, + 1189, + 570, + 1189 + ], + "score": 0.9, + "latex": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\| \\mathbf { x } y \\| ] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 511, + 1465, + 873, + 1465, + 873, + 1504, + 511, + 1504 + ], + "score": 0.9, + "latex": "L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) - L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) )" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1048, + 1229, + 1048, + 1229, + 1076, + 1128, + 1076 + ], + "score": 0.9, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 654, + 1433, + 730, + 1433, + 730, + 1462, + 654, + 1462 + ], + "score": 0.9, + "latex": "n \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 1214, + 810, + 1267, + 810, + 1267, + 841, + 1214, + 841 + ], + "score": 0.9, + "latex": "O ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1182, + 1111, + 1396, + 1111, + 1396, + 1150, + 1182, + 1150 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] ~ \\succ ~ \\mathbf { 0 } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1826, + 1316, + 1826, + 1316, + 1856, + 1255, + 1856 + ], + "score": 0.9, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 846, + 1227, + 939, + 1227, + 939, + 1253, + 846, + 1253 + ], + "score": 0.89, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 1182, + 355, + 1284, + 355, + 1284, + 384, + 1182, + 384 + ], + "score": 0.89, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 298, + 589, + 358, + 589, + 358, + 625, + 298, + 625 + ], + "score": 0.89, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T }" + }, + { + "category_id": 13, + "poly": [ + 988, + 1187, + 1062, + 1187, + 1062, + 1226, + 988, + 1226 + ], + "score": 0.89, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 599, + 1192, + 746, + 1192, + 746, + 1220, + 599, + 1220 + ], + "score": 0.89, + "latex": "n _ { 1 } + n _ { 2 } = n ," + }, + { + "category_id": 13, + "poly": [ + 650, + 549, + 689, + 549, + 689, + 585, + 650, + 585 + ], + "score": 0.89, + "latex": "\\widehat { L } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 833, + 1432, + 908, + 1432, + 908, + 1461, + 833, + 1461 + ], + "score": 0.89, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 1337, + 1755, + 1392, + 1755, + 1392, + 1793, + 1337, + 1793 + ], + "score": 0.89, + "latex": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 459, + 626, + 555, + 626, + 555, + 648, + 459, + 648 + ], + "score": 0.89, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 933, + 1896, + 1004, + 1896, + 1004, + 1923, + 933, + 1923 + ], + "score": 0.88, + "latex": "d = 1" + }, + { + "category_id": 13, + "poly": [ + 926, + 1755, + 986, + 1755, + 986, + 1784, + 926, + 1784 + ], + "score": 0.88, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1791, + 1248, + 1791, + 1248, + 1829, + 1192, + 1829 + ], + "score": 0.88, + "latex": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1862, + 1131, + 1862, + 1131, + 1891, + 1072, + 1891 + ], + "score": 0.87, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1173, + 1614, + 1243, + 1614, + 1243, + 1643, + 1173, + 1643 + ], + "score": 0.87, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1371, + 1401, + 1371, + 1401, + 1399, + 1332, + 1399 + ], + "score": 0.87, + "latex": "d = 1" + }, + { + "category_id": 13, + "poly": [ + 1324, + 1153, + 1402, + 1153, + 1402, + 1183, + 1324, + 1183 + ], + "score": 0.87, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 461, + 840, + 564, + 840, + 564, + 866, + 461, + 866 + ], + "score": 0.87, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 297, + 1500, + 391, + 1500, + 391, + 1527, + 297, + 1527 + ], + "score": 0.86, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 1344, + 524, + 1401, + 524, + 1401, + 552, + 1344, + 552 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 866, + 449, + 912, + 449, + 912, + 490, + 866, + 490 + ], + "score": 0.86, + "latex": "\\binom { 6 4 } { 5 }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1083, + 1200, + 1083, + 1200, + 1109, + 1174, + 1109 + ], + "score": 0.86, + "latex": "p _ { t }" + }, + { + "category_id": 13, + "poly": [ + 959, + 1984, + 980, + 1984, + 980, + 2003, + 959, + 2003 + ], + "score": 0.84, + "latex": "T" + }, + { + "category_id": 14, + "poly": [ + 347, + 1267, + 1465, + 1267, + 1465, + 1368, + 347, + 1368 + ], + "score": 0.83, + "latex": "\\begin{array} { r l } & { \\mathrm { m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ) = \\mathrm { t r } \\big ( \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\cdot \\mathrm { C o v } \\big ( \\nabla \\ell _ { t } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\big ) \\cdot \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) } \\\\ & { \\mathrm { m E x c e s s R i s k } _ { L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ) = \\mathrm { t r } \\big ( \\nabla ^ { - 2 } L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\cdot \\mathrm { C o v } \\big ( \\nabla \\ell _ { t } ^ { \\mathsf { t r } \\setminus \\mathsf { s a l } } ( { \\mathbf { w } } _ { 0 , \\star } ( \\lambda , n _ { 1 } ) ) \\big ) \\big ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1790, + 358, + 1790, + 358, + 1821, + 297, + 1821 + ], + "score": 0.83, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1254, + 556, + 1278, + 556, + 1278, + 582, + 1254, + 582 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 885, + 520, + 907, + 520, + 907, + 545, + 885, + 545 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1377, + 288, + 1401, + 288, + 1401, + 316, + 1377, + 316 + ], + "score": 0.79, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 297, + 421, + 321, + 421, + 321, + 447, + 297, + 447 + ], + "score": 0.78, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1271, + 1372, + 1294, + 1372, + 1294, + 1398, + 1271, + 1398 + ], + "score": 0.42, + "latex": "\\Pi" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1471, + 1218, + 1471, + 1218, + 1494, + 1199, + 1494 + ], + "score": 0.34, + "latex": "O" + }, + { + "category_id": 13, + "poly": [ + 742, + 1403, + 759, + 1403, + 759, + 1428, + 742, + 1428 + ], + "score": 0.31, + "latex": "^ { l }" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1969.0, + 958.0, + 1969.0, + 958.0, + 2012.0, + 328.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1969.0, + 1407.0, + 1969.0, + 1407.0, + 2012.0, + 981.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 477.0, + 2004.0, + 477.0, + 2035.0, + 295.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 939.0, + 936.0, + 939.0, + 936.0, + 986.0, + 290.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1098.0, + 228.0, + 1098.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 513.0, + 884.0, + 513.0, + 884.0, + 555.0, + 295.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 513.0, + 1343.0, + 513.0, + 1343.0, + 555.0, + 908.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 649.0, + 552.0, + 649.0, + 589.0, + 294.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 552.0, + 1253.0, + 552.0, + 1253.0, + 589.0, + 690.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 552.0, + 1406.0, + 552.0, + 1406.0, + 589.0, + 1279.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 587.0, + 297.0, + 587.0, + 297.0, + 627.0, + 293.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 587.0, + 594.0, + 587.0, + 594.0, + 627.0, + 359.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 587.0, + 962.0, + 587.0, + 962.0, + 627.0, + 635.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 587.0, + 1207.0, + 587.0, + 1207.0, + 627.0, + 1025.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 587.0, + 1406.0, + 587.0, + 1406.0, + 627.0, + 1371.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 621.0, + 458.0, + 621.0, + 458.0, + 654.0, + 294.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 621.0, + 1406.0, + 621.0, + 1406.0, + 654.0, + 556.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 650.0, + 897.0, + 650.0, + 897.0, + 683.0, + 294.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 286.0, + 1226.0, + 286.0, + 1226.0, + 320.0, + 294.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 286.0, + 1376.0, + 286.0, + 1376.0, + 320.0, + 1294.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 286.0, + 1405.0, + 286.0, + 1405.0, + 320.0, + 1402.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1403.0, + 319.0, + 1403.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 351.0, + 994.0, + 351.0, + 994.0, + 394.0, + 291.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 385.0, + 1405.0, + 385.0, + 1405.0, + 426.0, + 291.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 420.0, + 1405.0, + 420.0, + 1405.0, + 453.0, + 322.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 447.0, + 865.0, + 447.0, + 865.0, + 491.0, + 294.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 447.0, + 1231.0, + 447.0, + 1231.0, + 491.0, + 913.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.25, + 351.5, + 1042.25, + 351.5, + 1042.25, + 400.0, + 1005.25, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 345.5, + 1407.0, + 345.5, + 1407.0, + 390.5, + 1008.0, + 390.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1550.0, + 1406.0, + 1550.0, + 1406.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 1405.0, + 1584.0, + 1405.0, + 1620.0, + 294.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1607.0, + 1172.0, + 1607.0, + 1172.0, + 1651.0, + 290.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1607.0, + 1407.0, + 1607.0, + 1407.0, + 1651.0, + 1244.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1634.0, + 832.0, + 1634.0, + 832.0, + 1695.0, + 287.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1634.0, + 1412.0, + 1634.0, + 1412.0, + 1695.0, + 900.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1677.0, + 1405.0, + 1677.0, + 1405.0, + 1713.0, + 294.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1709.0, + 1089.0, + 1709.0, + 1089.0, + 1742.0, + 296.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1737.0, + 296.0, + 1737.0, + 296.0, + 1831.0, + 281.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1737.0, + 925.0, + 1737.0, + 925.0, + 1831.0, + 359.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 1737.0, + 1191.0, + 1737.0, + 1191.0, + 1831.0, + 987.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1737.0, + 1336.0, + 1737.0, + 1336.0, + 1831.0, + 1249.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1737.0, + 1420.0, + 1737.0, + 1420.0, + 1831.0, + 1393.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1823.0, + 657.0, + 1823.0, + 657.0, + 1915.0, + 283.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1823.0, + 1071.0, + 1823.0, + 1071.0, + 1915.0, + 715.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1823.0, + 1146.0, + 1823.0, + 1146.0, + 1915.0, + 1132.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1823.0, + 1215.0, + 1823.0, + 1215.0, + 1915.0, + 1205.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1823.0, + 1410.0, + 1823.0, + 1410.0, + 1915.0, + 1317.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1895.0, + 932.0, + 1895.0, + 932.0, + 1932.0, + 294.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1895.0, + 1407.0, + 1895.0, + 1407.0, + 1932.0, + 1005.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1927.0, + 1255.0, + 1927.0, + 1255.0, + 1961.0, + 292.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1824.0, + 1324.0, + 1824.0, + 1324.0, + 1859.0, + 1195.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 985.0, + 502.0, + 985.0, + 502.0, + 1083.0, + 281.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 985.0, + 675.0, + 985.0, + 675.0, + 1083.0, + 638.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 985.0, + 848.0, + 985.0, + 848.0, + 1083.0, + 800.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 985.0, + 1127.0, + 985.0, + 1127.0, + 1083.0, + 989.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 985.0, + 1420.0, + 985.0, + 1420.0, + 1083.0, + 1230.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1073.0, + 1173.0, + 1073.0, + 1173.0, + 1117.0, + 292.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1073.0, + 1214.0, + 1073.0, + 1214.0, + 1117.0, + 1201.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1369.0, + 1270.0, + 1369.0, + 1270.0, + 1404.0, + 296.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1369.0, + 1331.0, + 1369.0, + 1331.0, + 1404.0, + 1295.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1400.0, + 741.0, + 1400.0, + 741.0, + 1434.0, + 295.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1400.0, + 1402.0, + 1400.0, + 1402.0, + 1434.0, + 760.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1424.0, + 653.0, + 1424.0, + 653.0, + 1475.0, + 290.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1424.0, + 832.0, + 1424.0, + 832.0, + 1475.0, + 731.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1424.0, + 1153.0, + 1424.0, + 1153.0, + 1475.0, + 909.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1424.0, + 1407.0, + 1424.0, + 1407.0, + 1475.0, + 1401.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1454.0, + 510.0, + 1454.0, + 510.0, + 1514.0, + 287.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1454.0, + 1198.0, + 1454.0, + 1198.0, + 1514.0, + 874.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1454.0, + 1411.0, + 1454.0, + 1411.0, + 1514.0, + 1219.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1496.0, + 296.0, + 1496.0, + 296.0, + 1535.0, + 293.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1496.0, + 402.0, + 1496.0, + 402.0, + 1535.0, + 392.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1112.0, + 1181.0, + 1112.0, + 1181.0, + 1151.0, + 295.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1112.0, + 1404.0, + 1112.0, + 1404.0, + 1151.0, + 1397.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1146.0, + 296.0, + 1146.0, + 296.0, + 1191.0, + 293.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1146.0, + 569.0, + 1146.0, + 569.0, + 1191.0, + 516.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1146.0, + 1063.0, + 1146.0, + 1063.0, + 1191.0, + 825.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1146.0, + 1323.0, + 1146.0, + 1323.0, + 1191.0, + 1155.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1146.0, + 1407.0, + 1146.0, + 1407.0, + 1191.0, + 1403.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1178.0, + 393.0, + 1178.0, + 393.0, + 1231.0, + 290.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1178.0, + 598.0, + 1178.0, + 598.0, + 1231.0, + 487.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1178.0, + 987.0, + 1178.0, + 987.0, + 1231.0, + 747.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1178.0, + 1410.0, + 1178.0, + 1410.0, + 1231.0, + 1063.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1210.0, + 406.0, + 1210.0, + 406.0, + 1274.0, + 286.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1210.0, + 845.0, + 1210.0, + 845.0, + 1274.0, + 657.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1210.0, + 1155.0, + 1210.0, + 1155.0, + 1274.0, + 940.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 804.0, + 1213.0, + 804.0, + 1213.0, + 845.0, + 302.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 804.0, + 1406.0, + 804.0, + 1406.0, + 845.0, + 1268.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 837.0, + 460.0, + 837.0, + 460.0, + 874.0, + 294.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 837.0, + 1257.0, + 837.0, + 1257.0, + 874.0, + 565.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 837.0, + 1405.0, + 837.0, + 1405.0, + 874.0, + 1351.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 870.0, + 638.0, + 870.0, + 638.0, + 903.0, + 294.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1262.0, + 346.0, + 1262.0, + 346.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1466.0, + 1262.0, + 1501.0, + 1262.0, + 1501.0, + 1319.0, + 1466.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1308.0, + 346.0, + 1308.0, + 346.0, + 1366.0, + 292.0, + 1366.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 293, + 1404, + 293, + 1404, + 509, + 296, + 509 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 700, + 1405, + 700, + 1405, + 870, + 297, + 870 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1338, + 1404, + 1338, + 1404, + 1463, + 298, + 1463 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 539, + 1403, + 539, + 1403, + 662, + 297, + 662 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 957, + 1404, + 957, + 1404, + 1054, + 297, + 1054 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1641, + 1404, + 1641, + 1404, + 1734, + 297, + 1734 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 296, + 1058, + 1403, + 1058, + 1403, + 1151, + 296, + 1151 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 299, + 1477, + 1402, + 1477, + 1402, + 1541, + 299, + 1541 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 706, + 1546, + 992, + 1546, + 992, + 1602, + 706, + 1602 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 299, + 1213, + 1402, + 1213, + 1402, + 1275, + 299, + 1275 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 423, + 1154, + 1271, + 1154, + 1271, + 1207, + 423, + 1207 + ], + "score": 0.916 + }, + { + "category_id": 8, + "poly": [ + 776, + 662, + 920, + 662, + 920, + 695, + 776, + 695 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 297, + 1604, + 1068, + 1604, + 1068, + 1636, + 297, + 1636 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.893 + }, + { + "category_id": 8, + "poly": [ + 382, + 1282, + 1310, + 1282, + 1310, + 1322, + 382, + 1322 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 294, + 902, + 1274, + 902, + 1274, + 934, + 294, + 934 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 663, + 1400, + 663, + 1400, + 691, + 1366, + 691 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1558, + 1400, + 1558, + 1400, + 1588, + 1366, + 1588 + ], + "score": 0.863 + }, + { + "category_id": 0, + "poly": [ + 297, + 227, + 939, + 227, + 939, + 262, + 297, + 262 + ], + "score": 0.83 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.807 + }, + { + "category_id": 1, + "poly": [ + 294, + 1972, + 1411, + 1972, + 1411, + 2035, + 294, + 2035 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 329, + 1927, + 1318, + 1927, + 1318, + 1968, + 329, + 1968 + ], + "score": 0.46 + }, + { + "category_id": 1, + "poly": [ + 300, + 1741, + 1405, + 1741, + 1405, + 1923, + 300, + 1923 + ], + "score": 0.443 + }, + { + "category_id": 8, + "poly": [ + 329, + 1927, + 1318, + 1927, + 1318, + 1968, + 329, + 1968 + ], + "score": 0.287 + }, + { + "category_id": 8, + "poly": [ + 297, + 1742, + 1396, + 1742, + 1396, + 1811, + 297, + 1811 + ], + "score": 0.187 + }, + { + "category_id": 13, + "poly": [ + 612, + 1890, + 740, + 1890, + 740, + 1923, + 612, + 1923 + ], + "score": 0.95, + "latex": "\\lambda \\in ( 0 , \\infty )" + }, + { + "category_id": 14, + "poly": [ + 704, + 1545, + 994, + 1545, + 994, + 1604, + 704, + 1604 + ], + "score": 0.94, + "latex": "R ^ { 2 } : = \\mathbb { E } \\Big [ \\| \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } \\Big ]" + }, + { + "category_id": 13, + "poly": [ + 946, + 989, + 1014, + 989, + 1014, + 1022, + 946, + 1022 + ], + "score": 0.94, + "latex": "( \\lambda , n )" + }, + { + "category_id": 13, + "poly": [ + 1053, + 569, + 1167, + 569, + 1167, + 601, + 1053, + 601 + ], + "score": 0.93, + "latex": "\\mathbf { w } _ { t } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 976, + 834, + 1042, + 834, + 1042, + 871, + 976, + 871 + ], + "score": 0.92, + "latex": "L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 908, + 1890, + 1018, + 1890, + 1018, + 1923, + 908, + 1923 + ], + "score": 0.92, + "latex": "s \\in ( 0 , 1 )" + }, + { + "category_id": 14, + "poly": [ + 776, + 659, + 920, + 659, + 920, + 695, + 776, + 695 + ], + "score": 0.92, + "latex": "\\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } ," + }, + { + "category_id": 13, + "poly": [ + 581, + 834, + 637, + 834, + 637, + 871, + 581, + 871 + ], + "score": 0.92, + "latex": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 459, + 1244, + 550, + 1244, + 550, + 1277, + 459, + 1277 + ], + "score": 0.92, + "latex": "( n _ { 1 } , n _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 884, + 743, + 957, + 743, + 957, + 773, + 884, + 773 + ], + "score": 0.91, + "latex": "n \\geq d" + }, + { + "category_id": 13, + "poly": [ + 865, + 1703, + 991, + 1703, + 991, + 1735, + 865, + 1735 + ], + "score": 0.91, + "latex": "\\lambda \\in ( 0 , \\infty )" + }, + { + "category_id": 13, + "poly": [ + 448, + 739, + 691, + 739, + 691, + 776, + 448, + 776 + ], + "score": 0.91, + "latex": "\\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\left\\| \\mathbf { w } _ { t } \\right\\| ^ { 2 } ] < \\infty )" + }, + { + "category_id": 13, + "poly": [ + 297, + 988, + 705, + 988, + 705, + 1026, + 297, + 1026 + ], + "score": 0.9, + "latex": "\\mathbf { w } _ { 0 , \\star } ( \\bar { \\lambda _ { \\lambda } } , n ) \\ \\stackrel { - } { = } \\ \\mathrm { a r g } \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 775, + 1090, + 859, + 1090, + 859, + 1119, + 775, + 1119 + ], + "score": 0.9, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1406, + 1294, + 1406, + 1294, + 1434, + 1238, + 1434 + ], + "score": 0.89, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 965, + 1374, + 1021, + 1374, + 1021, + 1403, + 965, + 1403 + ], + "score": 0.89, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 297, + 805, + 368, + 805, + 368, + 833, + 297, + 833 + ], + "score": 0.89, + "latex": "n < d" + }, + { + "category_id": 14, + "poly": [ + 311, + 1739, + 1392, + 1739, + 1392, + 1814, + 311, + 1814 + ], + "score": 0.89, + "latex": "\\operatorname* { i n f } _ { \\lambda > 0 } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r . t r } ( n ; \\lambda ) \\big ) = \\operatorname* { i n f } _ { \\lambda > 0 } \\rho _ { \\lambda , \\gamma } R ^ { 2 } \\overset { ( \\star ) } { \\leq } \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} \\cdot R ^ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 822, + 1671, + 1056, + 1671, + 1056, + 1703, + 822, + 1703 + ], + "score": 0.89, + "latex": "d / n \\to \\gamma \\in ( 0 , \\infty ) ." + }, + { + "category_id": 13, + "poly": [ + 488, + 698, + 668, + 698, + 668, + 738, + 488, + 738 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { t , i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 1258, + 1373, + 1292, + 1373, + 1292, + 1401, + 1258, + 1401 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 735, + 1864, + 805, + 1864, + 805, + 1891, + 735, + 1891 + ], + "score": 0.87, + "latex": "\\gamma = 1" + }, + { + "category_id": 13, + "poly": [ + 897, + 1511, + 954, + 1511, + 954, + 1542, + 897, + 1542 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 14, + "poly": [ + 423, + 1154, + 1274, + 1154, + 1274, + 1210, + 423, + 1210 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { a r g } \\mathrm { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) = \\mathbf { w } _ { 0 , \\star } : = \\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\mathbf { w } _ { t } ] , \\ : \\ : \\ : f o r \\ : a l l \\ : \\lambda > 0 , \\ : n . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 934, + 710, + 969, + 710, + 969, + 736, + 934, + 736 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1436, + 1277, + 1436, + 1277, + 1461, + 1243, + 1461 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1325, + 747, + 1361, + 747, + 1361, + 773, + 1325, + 773 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 549, + 1609, + 584, + 1609, + 584, + 1635, + 549, + 1635 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 822, + 575, + 850, + 575, + 850, + 602, + 822, + 602 + ], + "score": 0.85, + "latex": "p _ { t }" + }, + { + "category_id": 13, + "poly": [ + 559, + 637, + 595, + 637, + 595, + 662, + 559, + 662 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1355, + 808, + 1393, + 808, + 1393, + 834, + 1355, + 834 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 14, + "poly": [ + 378, + 1928, + 1315, + 1928, + 1315, + 1969, + 378, + 1969 + ], + "score": 0.84, + "latex": "\\begin{array} { r } { \\operatorname* { i n f } _ { \\lambda > 0 , s \\in ( 0 , 1 ) } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r \\cdot v a l } ( n s , n ( 1 - s ) ; \\lambda ) \\big ) = ( 1 + \\gamma ) R ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 370, + 1823, + 1398, + 1823, + 1398, + 1864, + 370, + 1864 + ], + "score": 0.82, + "latex": "\\rho _ { \\lambda , \\gamma } = 4 \\gamma ^ { 2 } \\big [ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\big ] / ( \\lambda + \\gamma + 1 - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\big ( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\big ) ^ { 3 / 2 }" + }, + { + "category_id": 14, + "poly": [ + 386, + 1281, + 1296, + 1281, + 1296, + 1323, + 386, + 1323 + ], + "score": 0.78, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\to \\mathbf { w } _ { 0 , \\star } \\mathrm { a n d } \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\to \\mathbf { w } _ { 0 , \\star } a l m o s t s u r e l y a s T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 681, + 1673, + 807, + 1673, + 807, + 1703, + 681, + 1703 + ], + "score": 0.77, + "latex": "d , n \\infty" + }, + { + "category_id": 13, + "poly": [ + 830, + 2006, + 848, + 2006, + 848, + 2029, + 830, + 2029 + ], + "score": 0.74, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 298, + 1244, + 367, + 1244, + 367, + 1273, + 298, + 1273 + ], + "score": 0.73, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1286, + 1302, + 1286, + 1302, + 1314, + 1206, + 1314 + ], + "score": 0.71, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 332, + 776, + 345, + 776, + 345, + 801, + 332, + 801 + ], + "score": 0.7, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 323, + 1972, + 853, + 1972, + 853, + 2006, + 323, + 2006 + ], + "score": 0.68, + "latex": "\\mathrm { ; \\ m a x } \\{ 1 + 5 \\gamma / 2 7 , 5 / 2 7 + \\gamma \\} < 1 + \\gamma ( \\forall \\gamma > 0 )" + }, + { + "category_id": 13, + "poly": [ + 1165, + 706, + 1189, + 706, + 1189, + 733, + 1165, + 733 + ], + "score": 0.53, + "latex": "\\Pi" + }, + { + "category_id": 13, + "poly": [ + 956, + 1095, + 977, + 1095, + 977, + 1117, + 956, + 1117 + ], + "score": 0.51, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 431, + 603, + 456, + 603, + 456, + 630, + 431, + 630 + ], + "score": 0.5, + "latex": "\\Pi" + }, + { + "category_id": 13, + "poly": [ + 902, + 2011, + 917, + 2011, + 917, + 2030, + 902, + 2030 + ], + "score": 0.46, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 378, + 1248, + 399, + 1248, + 399, + 1272, + 378, + 1272 + ], + "score": 0.38, + "latex": "n ," + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 902.0, + 346.0, + 902.0, + 346.0, + 931.0, + 296.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 905.0, + 1277.0, + 905.0, + 1277.0, + 930.0, + 364.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 942.0, + 228.0, + 942.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 1404.0, + 292.0, + 1404.0, + 331.0, + 294.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 324.0, + 1405.0, + 324.0, + 1405.0, + 359.0, + 294.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 354.0, + 1407.0, + 354.0, + 1407.0, + 390.0, + 291.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 385.0, + 1405.0, + 385.0, + 1405.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 417.0, + 1404.0, + 417.0, + 1404.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 445.0, + 1404.0, + 445.0, + 1404.0, + 480.0, + 294.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 478.0, + 688.0, + 478.0, + 688.0, + 508.0, + 295.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 696.0, + 487.0, + 696.0, + 487.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 696.0, + 933.0, + 696.0, + 933.0, + 747.0, + 669.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 696.0, + 1164.0, + 696.0, + 1164.0, + 747.0, + 970.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 696.0, + 1409.0, + 696.0, + 1409.0, + 747.0, + 1190.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 734.0, + 447.0, + 734.0, + 447.0, + 779.0, + 291.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 734.0, + 883.0, + 734.0, + 883.0, + 779.0, + 692.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 734.0, + 1324.0, + 734.0, + 1324.0, + 779.0, + 958.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 734.0, + 1407.0, + 734.0, + 1407.0, + 779.0, + 1362.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 771.0, + 331.0, + 771.0, + 331.0, + 809.0, + 292.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 771.0, + 1406.0, + 771.0, + 1406.0, + 809.0, + 346.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 801.0, + 296.0, + 801.0, + 296.0, + 842.0, + 291.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 801.0, + 1354.0, + 801.0, + 1354.0, + 842.0, + 369.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 801.0, + 1406.0, + 801.0, + 1406.0, + 842.0, + 1394.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 820.0, + 580.0, + 820.0, + 580.0, + 885.0, + 285.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 820.0, + 975.0, + 820.0, + 975.0, + 885.0, + 638.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 820.0, + 1323.0, + 820.0, + 1323.0, + 885.0, + 1043.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1340.0, + 1405.0, + 1340.0, + 1405.0, + 1372.0, + 296.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1369.0, + 964.0, + 1369.0, + 964.0, + 1405.0, + 292.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1369.0, + 1257.0, + 1369.0, + 1257.0, + 1405.0, + 1022.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1369.0, + 1407.0, + 1369.0, + 1407.0, + 1405.0, + 1293.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1402.0, + 1237.0, + 1402.0, + 1237.0, + 1434.0, + 294.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1402.0, + 1405.0, + 1402.0, + 1405.0, + 1434.0, + 1295.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1427.0, + 1242.0, + 1427.0, + 1242.0, + 1467.0, + 292.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1427.0, + 1289.0, + 1427.0, + 1289.0, + 1467.0, + 1278.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 538.0, + 1403.0, + 538.0, + 1403.0, + 574.0, + 294.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 569.0, + 821.0, + 569.0, + 821.0, + 605.0, + 293.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 569.0, + 1052.0, + 569.0, + 1052.0, + 605.0, + 851.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 569.0, + 1407.0, + 569.0, + 1407.0, + 605.0, + 1168.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 601.0, + 430.0, + 601.0, + 430.0, + 637.0, + 293.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 601.0, + 1405.0, + 601.0, + 1405.0, + 637.0, + 457.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 633.0, + 558.0, + 633.0, + 558.0, + 667.0, + 295.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 633.0, + 608.0, + 633.0, + 608.0, + 667.0, + 596.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 955.0, + 1402.0, + 955.0, + 1402.0, + 993.0, + 296.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 972.0, + 296.0, + 972.0, + 296.0, + 1041.0, + 285.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 972.0, + 945.0, + 972.0, + 945.0, + 1041.0, + 706.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 972.0, + 1415.0, + 972.0, + 1415.0, + 1041.0, + 1015.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1022.0, + 1185.0, + 1022.0, + 1185.0, + 1060.0, + 294.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.75, + 997.0, + 643.75, + 997.0, + 643.75, + 1014.0, + 604.75, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1640.0, + 1404.0, + 1640.0, + 1404.0, + 1674.0, + 297.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1672.0, + 680.0, + 1672.0, + 680.0, + 1706.0, + 296.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1672.0, + 821.0, + 1672.0, + 821.0, + 1706.0, + 808.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1672.0, + 1402.0, + 1672.0, + 1402.0, + 1706.0, + 1057.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1702.0, + 864.0, + 1702.0, + 864.0, + 1736.0, + 295.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1702.0, + 1091.0, + 1702.0, + 1091.0, + 1736.0, + 992.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1056.0, + 1405.0, + 1056.0, + 1405.0, + 1092.0, + 295.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1091.0, + 774.0, + 1091.0, + 774.0, + 1121.0, + 296.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1091.0, + 955.0, + 1091.0, + 955.0, + 1121.0, + 860.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1091.0, + 1404.0, + 1091.0, + 1404.0, + 1121.0, + 978.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1119.0, + 794.0, + 1119.0, + 794.0, + 1155.0, + 294.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1476.0, + 1406.0, + 1476.0, + 1406.0, + 1512.0, + 297.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1509.0, + 896.0, + 1509.0, + 896.0, + 1542.0, + 294.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1509.0, + 1406.0, + 1509.0, + 1406.0, + 1542.0, + 955.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1207.0, + 1406.0, + 1207.0, + 1406.0, + 1252.0, + 293.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 297.0, + 1243.0, + 297.0, + 1278.0, + 294.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1243.0, + 377.0, + 1243.0, + 377.0, + 1278.0, + 368.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1243.0, + 458.0, + 1243.0, + 458.0, + 1278.0, + 400.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1243.0, + 660.0, + 1243.0, + 660.0, + 1278.0, + 551.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1602.0, + 548.0, + 1602.0, + 548.0, + 1639.0, + 295.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1602.0, + 1069.0, + 1602.0, + 1069.0, + 1639.0, + 585.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1968.0, + 322.0, + 1968.0, + 322.0, + 2010.0, + 291.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1968.0, + 1408.0, + 1968.0, + 1408.0, + 2010.0, + 854.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 829.0, + 2002.0, + 829.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 2002.0, + 901.0, + 2002.0, + 901.0, + 2037.0, + 849.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 2002.0, + 1332.0, + 2002.0, + 1332.0, + 2037.0, + 918.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1923.0, + 377.0, + 1923.0, + 377.0, + 1974.0, + 373.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1923.0, + 1324.0, + 1923.0, + 1324.0, + 1974.0, + 1316.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1740.0, + 310.0, + 1740.0, + 310.0, + 1814.0, + 295.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1740.0, + 1402.0, + 1740.0, + 1402.0, + 1814.0, + 1393.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1784.0, + 310.0, + 1784.0, + 310.0, + 1811.0, + 304.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1818.0, + 369.0, + 1818.0, + 369.0, + 1866.0, + 287.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1818.0, + 1411.0, + 1818.0, + 1411.0, + 1866.0, + 1399.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1856.0, + 734.0, + 1856.0, + 734.0, + 1895.0, + 293.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 1856.0, + 1407.0, + 1856.0, + 1407.0, + 1895.0, + 806.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1889.0, + 611.0, + 1889.0, + 611.0, + 1924.0, + 295.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1889.0, + 907.0, + 1889.0, + 907.0, + 1924.0, + 741.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1889.0, + 1051.0, + 1889.0, + 1051.0, + 1924.0, + 1019.0, + 1924.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 490, + 1404, + 490, + 1404, + 644, + 297, + 644 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1404, + 228, + 1404, + 475, + 297, + 475 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1280, + 1403, + 1280, + 1403, + 1375, + 297, + 1375 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 296, + 1412, + 1403, + 1412, + 1403, + 1568, + 296, + 1568 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 299, + 1977, + 1403, + 1977, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 923, + 1405, + 923, + 1405, + 1152, + 297, + 1152 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 296, + 849, + 1400, + 849, + 1400, + 913, + 296, + 913 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 302, + 688, + 789, + 688, + 789, + 719, + 302, + 719 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 298, + 747, + 1401, + 747, + 1401, + 810, + 298, + 810 + ], + "score": 0.894 + }, + { + "category_id": 8, + "poly": [ + 359, + 1180, + 1335, + 1180, + 1335, + 1236, + 359, + 1236 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 299, + 1599, + 1404, + 1599, + 1404, + 1728, + 299, + 1728 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 300, + 1741, + 1404, + 1741, + 1404, + 1924, + 300, + 1924 + ], + "score": 0.791 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.715 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.628 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 854, + 75, + 854, + 104, + 299, + 104 + ], + "score": 0.341 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.11 + }, + { + "category_id": 13, + "poly": [ + 609, + 1634, + 807, + 1634, + 807, + 1664, + 609, + 1664 + ], + "score": 0.94, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 458, + 1509, + 550, + 1509, + 550, + 1538, + 458, + 1538 + ], + "score": 0.93, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 299, + 1124, + 364, + 1124, + 364, + 1153, + 299, + 1153 + ], + "score": 0.93, + "latex": "( n , d )" + }, + { + "category_id": 13, + "poly": [ + 416, + 260, + 534, + 260, + 534, + 294, + 416, + 294 + ], + "score": 0.92, + "latex": "( 1 + \\gamma ) R ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 300, + 969, + 592, + 969, + 592, + 1048, + 300, + 1048 + ], + "score": 0.92, + "latex": "\\frac { \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } ( \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n ) } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 363, + 1172, + 1336, + 1172, + 1336, + 1243, + 363, + 1243 + ], + "score": 0.92, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 925, + 290, + 1005, + 290, + 1005, + 324, + 925, + 324 + ], + "score": 0.92, + "latex": "\\gamma > 0 ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1342, + 1207, + 1342, + 1207, + 1377, + 1035, + 1377 + ], + "score": 0.92, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 685, + 1777, + 809, + 1777, + 809, + 1804, + 685, + 1804 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1013, + 228, + 1361, + 228, + 1361, + 264, + 1013, + 264 + ], + "score": 0.91, + "latex": "\\operatorname* { m a x } \\{ 1 + 5 \\gamma / 2 7 , 5 / 2 7 + \\gamma \\} R ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1051, + 1393, + 1051, + 1393, + 1089, + 1186, + 1089 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1743, + 1400, + 1743, + 1400, + 1777, + 1303, + 1777 + ], + "score": 0.89, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 467, + 1636, + 554, + 1636, + 554, + 1657, + 467, + 1657 + ], + "score": 0.89, + "latex": "\\lambda = \\infty" + }, + { + "category_id": 13, + "poly": [ + 1196, + 1603, + 1261, + 1603, + 1261, + 1632, + 1196, + 1632 + ], + "score": 0.89, + "latex": "( n , d )" + }, + { + "category_id": 13, + "poly": [ + 865, + 1774, + 912, + 1774, + 912, + 1805, + 865, + 1805 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 488, + 1088, + 631, + 1088, + 631, + 1119, + 488, + 1119 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 387, + 1511, + 404, + 1511, + 404, + 1532, + 387, + 1532 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 938, + 1699, + 1002, + 1699, + 1002, + 1728, + 938, + 1728 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1325, + 1809, + 1393, + 1809, + 1393, + 1831, + 1325, + 1831 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1447, + 1278, + 1447, + 1278, + 1476, + 1221, + 1476 + ], + "score": 0.84, + "latex": "\\rho _ { \\tt t r - \\tt t r }" + }, + { + "category_id": 13, + "poly": [ + 503, + 1047, + 738, + 1047, + 738, + 1087, + 503, + 1087 + ], + "score": 0.84, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1314, + 929, + 1404, + 929, + 1404, + 958, + 1314, + 958 + ], + "score": 0.84, + "latex": "\\rho _ { \\sf t r - t r } =" + }, + { + "category_id": 13, + "poly": [ + 787, + 1839, + 804, + 1839, + 804, + 1860, + 787, + 1860 + ], + "score": 0.83, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 810, + 322, + 846, + 322, + 846, + 355, + 810, + 355 + ], + "score": 0.82, + "latex": "( \\star )" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1449, + 1400, + 1449, + 1400, + 1477, + 1336, + 1477 + ], + "score": 0.71, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1630, + 1401, + 1630, + 1401, + 1668, + 1220, + 1668 + ], + "score": 0.71, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 294, + 954, + 1386, + 954, + 1386, + 1048, + 294, + 1048 + ], + "score": 0.42, + "latex": "\\begin{array} { r l r } { \\frac { \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } ( \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n ) } / ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } \\ \\mathrm { ~ } a n d \\rho _ { \\mathrm { t r - s i l } } } & { = } & { \\frac { \\mathbb { E } \\left[ \\left( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ^ { - 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2012.0, + 328.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 576.0, + 2003.0, + 576.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 688.0, + 792.0, + 688.0, + 792.0, + 720.0, + 295.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 486.0, + 1404.0, + 486.0, + 1404.0, + 526.0, + 294.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 521.0, + 1401.0, + 521.0, + 1401.0, + 554.0, + 296.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 1405.0, + 548.0, + 1405.0, + 587.0, + 294.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 579.0, + 1404.0, + 579.0, + 1404.0, + 619.0, + 294.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 612.0, + 956.0, + 612.0, + 956.0, + 645.0, + 295.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1012.0, + 227.0, + 1012.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 265.0, + 1362.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 415.0, + 260.0, + 415.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 260.0, + 1402.0, + 260.0, + 1402.0, + 294.0, + 535.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 924.0, + 289.0, + 924.0, + 325.0, + 292.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 289.0, + 1405.0, + 289.0, + 1405.0, + 325.0, + 1006.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 321.0, + 809.0, + 321.0, + 809.0, + 355.0, + 295.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 321.0, + 1404.0, + 321.0, + 1404.0, + 355.0, + 847.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 353.0, + 1404.0, + 353.0, + 1404.0, + 386.0, + 295.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 383.0, + 1404.0, + 383.0, + 1404.0, + 413.0, + 295.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 415.0, + 1404.0, + 415.0, + 1404.0, + 445.0, + 294.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 444.0, + 1357.0, + 444.0, + 1357.0, + 474.0, + 296.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1278.0, + 1407.0, + 1278.0, + 1407.0, + 1315.0, + 293.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1308.0, + 1404.0, + 1308.0, + 1404.0, + 1342.0, + 295.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1337.0, + 1034.0, + 1337.0, + 1034.0, + 1375.0, + 295.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1338.0, + 1105.0, + 1338.0, + 1105.0, + 1353.0, + 1087.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1335.0, + 1221.0, + 1335.0, + 1221.0, + 1382.0, + 1018.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1409.0, + 1404.0, + 1409.0, + 1404.0, + 1446.0, + 295.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1437.0, + 1220.0, + 1437.0, + 1220.0, + 1482.0, + 293.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1437.0, + 1335.0, + 1437.0, + 1335.0, + 1482.0, + 1279.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1437.0, + 1405.0, + 1437.0, + 1405.0, + 1482.0, + 1401.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1507.0, + 295.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1502.0, + 386.0, + 1502.0, + 386.0, + 1539.0, + 294.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1502.0, + 457.0, + 1502.0, + 457.0, + 1539.0, + 405.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1502.0, + 1403.0, + 1502.0, + 1403.0, + 1539.0, + 551.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1533.0, + 1403.0, + 1533.0, + 1403.0, + 1570.0, + 296.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 915.0, + 1313.0, + 915.0, + 1313.0, + 964.0, + 292.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1046.0, + 502.0, + 1046.0, + 502.0, + 1091.0, + 296.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1041.0, + 1185.0, + 1041.0, + 1185.0, + 1090.0, + 739.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1041.0, + 1405.0, + 1041.0, + 1405.0, + 1090.0, + 1394.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1079.0, + 487.0, + 1079.0, + 487.0, + 1126.0, + 292.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1079.0, + 1406.0, + 1079.0, + 1406.0, + 1126.0, + 632.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1116.0, + 905.0, + 1116.0, + 905.0, + 1156.0, + 365.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.75, + 1042.0, + 555.75, + 1042.0, + 555.75, + 1070.0, + 520.75, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.75, + 1058.0, + 718.75, + 1058.0, + 718.75, + 1085.0, + 684.75, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 844.0, + 1406.0, + 844.0, + 1406.0, + 885.0, + 292.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 876.0, + 1055.0, + 876.0, + 1055.0, + 916.0, + 292.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 740.0, + 1405.0, + 740.0, + 1405.0, + 785.0, + 292.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 776.0, + 434.0, + 776.0, + 434.0, + 810.0, + 291.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1597.0, + 1195.0, + 1597.0, + 1195.0, + 1633.0, + 297.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1597.0, + 1408.0, + 1597.0, + 1408.0, + 1633.0, + 1262.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1627.0, + 466.0, + 1627.0, + 466.0, + 1667.0, + 318.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1627.0, + 608.0, + 1627.0, + 608.0, + 1667.0, + 555.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1627.0, + 1219.0, + 1627.0, + 1219.0, + 1667.0, + 808.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1627.0, + 1409.0, + 1627.0, + 1409.0, + 1667.0, + 1402.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1661.0, + 1404.0, + 1661.0, + 1404.0, + 1696.0, + 324.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1693.0, + 937.0, + 1693.0, + 937.0, + 1728.0, + 322.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1693.0, + 1404.0, + 1693.0, + 1404.0, + 1728.0, + 1003.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1736.0, + 1302.0, + 1736.0, + 1302.0, + 1776.0, + 306.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1769.0, + 684.0, + 1769.0, + 684.0, + 1803.0, + 320.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1769.0, + 864.0, + 1769.0, + 864.0, + 1803.0, + 810.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1769.0, + 1404.0, + 1769.0, + 1404.0, + 1803.0, + 913.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1801.0, + 1324.0, + 1801.0, + 1324.0, + 1836.0, + 323.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1801.0, + 1404.0, + 1801.0, + 1404.0, + 1836.0, + 1394.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1833.0, + 786.0, + 1833.0, + 786.0, + 1864.0, + 325.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1833.0, + 1403.0, + 1833.0, + 1403.0, + 1864.0, + 805.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1862.0, + 1406.0, + 1862.0, + 1406.0, + 1897.0, + 323.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1892.0, + 495.0, + 1892.0, + 495.0, + 1926.0, + 323.0, + 1926.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 506, + 1405, + 506, + 1405, + 703, + 297, + 703 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 717, + 1404, + 717, + 1404, + 903, + 296, + 903 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 916, + 1404, + 916, + 1404, + 1072, + 297, + 1072 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1403, + 1942, + 1403, + 2036, + 299, + 2036 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 307, + 1115, + 1373, + 1115, + 1373, + 1423, + 307, + 1423 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1812, + 1404, + 1812, + 1404, + 1905, + 298, + 1905 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 296, + 354, + 1403, + 354, + 1403, + 419, + 296, + 419 + ], + "score": 0.948 + }, + { + "category_id": 4, + "poly": [ + 294, + 1446, + 1407, + 1446, + 1407, + 1676, + 294, + 1676 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 631, + 440, + 1062, + 440, + 1062, + 486, + 631, + 486 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 299, + 226, + 559, + 226, + 559, + 262, + 299, + 262 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 300, + 1754, + 780, + 1754, + 780, + 1785, + 300, + 1785 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 298, + 296, + 535, + 296, + 535, + 329, + 298, + 329 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.803 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 106, + 297, + 106 + ], + "score": 0.687 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 106, + 298, + 106 + ], + "score": 0.267 + }, + { + "category_id": 13, + "poly": [ + 410, + 1638, + 534, + 1638, + 534, + 1679, + 410, + 1679 + ], + "score": 0.92, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }" + }, + { + "category_id": 13, + "poly": [ + 721, + 579, + 781, + 579, + 781, + 620, + 721, + 620 + ], + "score": 0.92, + "latex": "\\widehat { L } _ { T } ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 831, + 579, + 900, + 579, + 900, + 620, + 831, + 620 + ], + "score": 0.92, + "latex": "\\widehat { L } _ { T } ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 1221, + 579, + 1281, + 579, + 1281, + 620, + 1221, + 620 + ], + "score": 0.92, + "latex": "\\widehat { L } _ { T } ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 428, + 545, + 519, + 545, + 519, + 576, + 428, + 576 + ], + "score": 0.91, + "latex": "R ^ { 2 } = 1" + }, + { + "category_id": 13, + "poly": [ + 837, + 1612, + 918, + 1612, + 918, + 1638, + 837, + 1638 + ], + "score": 0.91, + "latex": "n _ { 1 } = 0" + }, + { + "category_id": 13, + "poly": [ + 964, + 1612, + 1044, + 1612, + 1044, + 1638, + 964, + 1638 + ], + "score": 0.91, + "latex": "{ n } _ { 1 } = 5" + }, + { + "category_id": 13, + "poly": [ + 1063, + 617, + 1201, + 617, + 1201, + 663, + 1063, + 663 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }" + }, + { + "category_id": 13, + "poly": [ + 795, + 1483, + 879, + 1483, + 879, + 1509, + 795, + 1509 + ], + "score": 0.9, + "latex": "n _ { 1 } = 0" + }, + { + "category_id": 13, + "poly": [ + 987, + 1549, + 1112, + 1549, + 1112, + 1589, + 987, + 1589 + ], + "score": 0.89, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }" + }, + { + "category_id": 13, + "poly": [ + 654, + 1644, + 699, + 1644, + 699, + 1675, + 654, + 1675 + ], + "score": 0.89, + "latex": "d / n" + }, + { + "category_id": 13, + "poly": [ + 1210, + 780, + 1336, + 780, + 1336, + 808, + 1210, + 808 + ], + "score": 0.89, + "latex": "\\lambda = 1 0 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1645, + 1125, + 1645, + 1125, + 1671, + 1017, + 1671 + ], + "score": 0.89, + "latex": "T = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1025, + 552, + 1082, + 552, + 1082, + 583, + 1025, + 583 + ], + "score": 0.89, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1482, + 1104, + 1482, + 1104, + 1509, + 1019, + 1509 + ], + "score": 0.89, + "latex": "n _ { 1 } = 5" + }, + { + "category_id": 14, + "poly": [ + 630, + 437, + 1068, + 437, + 1068, + 485, + 630, + 485 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } , \\quad \\mathrm { w i t h } \\quad \\mathbf { x } _ { t , i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( 0 , \\mathbf { I } _ { d } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1612, + 378, + 1612, + 378, + 1637, + 298, + 1637 + ], + "score": 0.89, + "latex": "n = 2 0" + }, + { + "category_id": 13, + "poly": [ + 961, + 519, + 1018, + 519, + 1018, + 548, + 961, + 548 + ], + "score": 0.88, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 1331, + 578, + 1370, + 578, + 1370, + 620, + 1331, + 620 + ], + "score": 0.88, + "latex": "\\widehat { L } _ { T } ^ { \\mathrm { t r } . }" + }, + { + "category_id": 13, + "poly": [ + 480, + 629, + 518, + 629, + 518, + 656, + 480, + 656 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1585, + 1146, + 1585, + 1146, + 1609, + 1065, + 1609 + ], + "score": 0.87, + "latex": "d = 6 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 1644, + 322, + 1644, + 322, + 1672, + 297, + 1672 + ], + "score": 0.87, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 946, + 669, + 973, + 669, + 973, + 699, + 946, + 699 + ], + "score": 0.86, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 894, + 1645, + 972, + 1645, + 972, + 1671, + 894, + 1671 + ], + "score": 0.86, + "latex": "n = 2 0" + }, + { + "category_id": 13, + "poly": [ + 1042, + 663, + 1307, + 663, + 1307, + 708, + 1042, + 708 + ], + "score": 0.86, + "latex": "\\lVert \\mathbf { w } _ { 0 , \\star } - \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} } \\rVert ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 966, + 2006, + 1001, + 2006, + 1001, + 2035, + 966, + 2035 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 871, + 1556, + 896, + 1556, + 896, + 1583, + 871, + 1583 + ], + "score": 0.85, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1134, + 2006, + 1174, + 2006, + 1174, + 2035, + 1134, + 2035 + ], + "score": 0.82, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 609, + 506, + 873, + 506, + 873, + 549, + 609, + 549 + ], + "score": 0.8, + "latex": "\\mathbf { w } _ { t } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { w } _ { 0 , \\star } , \\mathbf { I } _ { d } / \\sqrt { d } )" + }, + { + "category_id": 13, + "poly": [ + 338, + 390, + 351, + 390, + 351, + 414, + 338, + 414 + ], + "score": 0.79, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1398, + 1328, + 1398, + 1328, + 1420, + 1298, + 1420 + ], + "score": 0.78, + "latex": "d / n" + }, + { + "category_id": 13, + "poly": [ + 617, + 781, + 636, + 781, + 636, + 807, + 617, + 807 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 400, + 1517, + 596, + 1517, + 596, + 1550, + 400, + 1550 + ], + "score": 0.77, + "latex": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } )" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1395, + 1221, + 1395, + 1221, + 1423, + 1172, + 1423 + ], + "score": 0.74, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , } \\\\ " + }, + { + "category_id": 13, + "poly": [ + 565, + 1394, + 612, + 1394, + 612, + 1423, + 565, + 1423 + ], + "score": 0.73, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { \\{ t r - t r } } " + }, + { + "category_id": 13, + "poly": [ + 1371, + 1612, + 1393, + 1612, + 1393, + 1636, + 1371, + 1636 + ], + "score": 0.72, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1511, + 1276, + 1511, + 1276, + 1552, + 1139, + 1552 + ], + "score": 0.62, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} } )" + }, + { + "category_id": 13, + "poly": [ + 857, + 1448, + 928, + 1448, + 928, + 1481, + 857, + 1481 + ], + "score": 0.61, + "latex": "( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r - t r } } )" + }, + { + "category_id": 13, + "poly": [ + 387, + 1480, + 587, + 1480, + 587, + 1514, + 387, + 1514 + ], + "score": 0.54, + "latex": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } )" + }, + { + "category_id": 13, + "poly": [ + 506, + 1479, + 586, + 1479, + 586, + 1514, + 506, + 1514 + ], + "score": 0.54, + "latex": "( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } )" + }, + { + "category_id": 13, + "poly": [ + 521, + 1516, + 595, + 1516, + 595, + 1550, + 521, + 1550 + ], + "score": 0.53, + "latex": "\\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathtt { t r } - \\mathtt { t r } } \\big )" + }, + { + "category_id": 13, + "poly": [ + 1094, + 1399, + 1110, + 1399, + 1110, + 1419, + 1094, + 1419 + ], + "score": 0.51, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1398, + 779, + 1398, + 779, + 1419, + 762, + 1419 + ], + "score": 0.46, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 608, + 516, + 646, + 516, + 646, + 545, + 608, + 545 + ], + "score": 0.35, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 808, + 1205, + 860, + 1205, + 860, + 1221, + 808, + 1221 + ], + "score": 0.35, + "latex": "\\mathbf { n } \\mathbf { 1 } = 5" + }, + { + "category_id": 13, + "poly": [ + 771, + 1447, + 928, + 1447, + 928, + 1481, + 771, + 1481 + ], + "score": 0.34, + "latex": "\\mathrm { \\prime m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } )" + }, + { + "category_id": 13, + "poly": [ + 426, + 1207, + 480, + 1207, + 480, + 1225, + 426, + 1225 + ], + "score": 0.27, + "latex": "\\mathbf { n 1 } = \\mathbf { 5 } ," + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1117.0, + 351.0, + 1117.0, + 351.0, + 1135.0, + 335.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1112.0, + 714.0, + 1112.0, + 714.0, + 1141.0, + 680.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1116.0, + 1074.0, + 1116.0, + 1074.0, + 1136.0, + 1055.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1163.0, + 347.0, + 1163.0, + 347.0, + 1338.0, + 301.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1182.0, + 606.0, + 1182.0, + 606.0, + 1203.0, + 528.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1184.0, + 641.0, + 1184.0, + 641.0, + 1201.0, + 617.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1173.0, + 688.0, + 1173.0, + 688.0, + 1281.0, + 646.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1157.0, + 1071.0, + 1157.0, + 1071.0, + 1273.0, + 1015.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1145.0, + 1314.0, + 1145.0, + 1314.0, + 1187.0, + 1185.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1180.0, + 1359.0, + 1180.0, + 1359.0, + 1190.0, + 1346.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1212.0, + 349.0, + 1212.0, + 349.0, + 1229.0, + 335.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1204.0, + 425.0, + 1204.0, + 425.0, + 1228.0, + 374.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1204.0, + 487.0, + 1204.0, + 487.0, + 1228.0, + 481.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1202.0, + 616.0, + 1202.0, + 616.0, + 1220.0, + 551.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1201.0, + 807.0, + 1201.0, + 807.0, + 1226.0, + 757.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1201.0, + 868.0, + 1201.0, + 868.0, + 1226.0, + 861.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1196.0, + 1071.0, + 1196.0, + 1071.0, + 1213.0, + 1056.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1193.0, + 1203.0, + 1193.0, + 1203.0, + 1225.0, + 1089.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1225.0, + 465.0, + 1225.0, + 465.0, + 1245.0, + 396.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1221.0, + 867.0, + 1221.0, + 867.0, + 1245.0, + 757.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1219.0, + 1220.0, + 1219.0, + 1220.0, + 1241.0, + 1071.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1236.0, + 1070.0, + 1236.0, + 1070.0, + 1252.0, + 1055.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1243.0, + 995.0, + 1243.0, + 995.0, + 1268.0, + 884.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1251.0, + 1183.0, + 1251.0, + 1183.0, + 1261.0, + 1174.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1259.0, + 349.0, + 1259.0, + 349.0, + 1277.0, + 335.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1263.0, + 508.0, + 1263.0, + 508.0, + 1307.0, + 404.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1265.0, + 632.0, + 1265.0, + 632.0, + 1289.0, + 525.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1269.0, + 711.0, + 1269.0, + 711.0, + 1321.0, + 663.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1288.0, + 817.0, + 1288.0, + 817.0, + 1313.0, + 769.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1263.0, + 994.0, + 1263.0, + 994.0, + 1304.0, + 882.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1266.0, + 1053.0, + 1266.0, + 1053.0, + 1312.0, + 1035.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1275.0, + 1070.0, + 1275.0, + 1070.0, + 1292.0, + 1056.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1279.0, + 1315.0, + 1279.0, + 1315.0, + 1305.0, + 1266.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1307.0, + 346.0, + 1307.0, + 346.0, + 1321.0, + 336.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1309.0, + 847.0, + 1309.0, + 847.0, + 1333.0, + 738.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1302.0, + 944.0, + 1302.0, + 944.0, + 1319.0, + 881.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1312.0, + 1004.0, + 1312.0, + 1004.0, + 1329.0, + 971.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1312.0, + 1051.0, + 1312.0, + 1051.0, + 1331.0, + 1031.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1316.0, + 1068.0, + 1316.0, + 1068.0, + 1328.0, + 1059.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1314.0, + 1192.0, + 1314.0, + 1192.0, + 1324.0, + 1183.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1298.0, + 1329.0, + 1298.0, + 1329.0, + 1323.0, + 1251.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1351.0, + 354.0, + 1351.0, + 354.0, + 1371.0, + 332.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1351.0, + 1073.0, + 1351.0, + 1073.0, + 1371.0, + 1054.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1363.0, + 359.0, + 1363.0, + 359.0, + 1384.0, + 340.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1360.0, + 416.0, + 1360.0, + 416.0, + 1388.0, + 381.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1363.0, + 456.0, + 1363.0, + 456.0, + 1385.0, + 438.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1361.0, + 512.0, + 1361.0, + 512.0, + 1385.0, + 480.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1363.0, + 556.0, + 1363.0, + 556.0, + 1385.0, + 535.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1362.0, + 610.0, + 1362.0, + 610.0, + 1386.0, + 578.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1363.0, + 653.0, + 1363.0, + 653.0, + 1385.0, + 634.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1363.0, + 720.0, + 1363.0, + 720.0, + 1384.0, + 699.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1362.0, + 785.0, + 1362.0, + 785.0, + 1385.0, + 751.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1362.0, + 845.0, + 1362.0, + 845.0, + 1385.0, + 810.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1362.0, + 903.0, + 1362.0, + 903.0, + 1385.0, + 869.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1362.0, + 963.0, + 1362.0, + 963.0, + 1385.0, + 929.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1362.0, + 1025.0, + 1362.0, + 1025.0, + 1385.0, + 983.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1363.0, + 1080.0, + 1363.0, + 1080.0, + 1385.0, + 1060.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1362.0, + 1135.0, + 1362.0, + 1135.0, + 1386.0, + 1104.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1365.0, + 1175.0, + 1365.0, + 1175.0, + 1382.0, + 1161.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1362.0, + 1232.0, + 1362.0, + 1232.0, + 1385.0, + 1203.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1363.0, + 1276.0, + 1363.0, + 1276.0, + 1384.0, + 1257.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 1362.0, + 1332.0, + 1362.0, + 1332.0, + 1386.0, + 1300.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1365.0, + 1372.0, + 1365.0, + 1372.0, + 1382.0, + 1356.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1374.0, + 564.0, + 1374.0, + 564.0, + 1429.0, + 322.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1374.0, + 668.0, + 1374.0, + 668.0, + 1429.0, + 613.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1372.0, + 761.0, + 1372.0, + 761.0, + 1431.0, + 725.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1372.0, + 988.0, + 1372.0, + 988.0, + 1431.0, + 780.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1374.0, + 1304.0, + 1374.0, + 1304.0, + 1402.0, + 1134.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1192.0, + 713.0, + 1192.0, + 713.0, + 1218.5, + 672.0, + 1218.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1198.5, + 761.0, + 1198.5, + 761.0, + 1253.0, + 710.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1274.0, + 891.0, + 1274.0, + 891.0, + 1303.5, + 765.0, + 1303.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1265.0, + 1274.0, + 1265.0, + 1274.0, + 1279.0, + 1250.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1303.5, + 981.0, + 1303.5, + 981.0, + 1325.0, + 930.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1347.0, + 719.0, + 1347.0, + 719.0, + 1376.0, + 670.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1380.0, + 1381.0, + 1380.0, + 1381.0, + 1433.5, + 1057.0, + 1433.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1441.0, + 770.0, + 1441.0, + 770.0, + 1489.0, + 291.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1441.0, + 1410.0, + 1441.0, + 1410.0, + 1489.0, + 929.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1472.0, + 386.0, + 1472.0, + 386.0, + 1520.0, + 292.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1472.0, + 794.0, + 1472.0, + 794.0, + 1520.0, + 588.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1472.0, + 1018.0, + 1472.0, + 1018.0, + 1520.0, + 880.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1472.0, + 1409.0, + 1472.0, + 1409.0, + 1520.0, + 1105.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1495.0, + 399.0, + 1495.0, + 399.0, + 1569.0, + 283.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1495.0, + 1138.0, + 1495.0, + 1138.0, + 1569.0, + 597.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1495.0, + 1404.0, + 1495.0, + 1404.0, + 1569.0, + 1277.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1531.0, + 870.0, + 1531.0, + 870.0, + 1609.0, + 282.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1531.0, + 986.0, + 1531.0, + 986.0, + 1609.0, + 897.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1531.0, + 1407.0, + 1531.0, + 1407.0, + 1609.0, + 1147.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1579.0, + 1064.0, + 1579.0, + 1064.0, + 1615.0, + 293.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1615.0, + 1147.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1610.0, + 296.0, + 1610.0, + 296.0, + 1698.0, + 282.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1610.0, + 409.0, + 1610.0, + 409.0, + 1698.0, + 379.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1610.0, + 653.0, + 1610.0, + 653.0, + 1698.0, + 535.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1610.0, + 836.0, + 1610.0, + 836.0, + 1698.0, + 700.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1610.0, + 1370.0, + 1610.0, + 1370.0, + 1698.0, + 1126.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1610.0, + 1404.0, + 1610.0, + 1404.0, + 1698.0, + 1394.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 222.0, + 562.0, + 222.0, + 562.0, + 267.0, + 291.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1754.0, + 783.0, + 1754.0, + 783.0, + 1786.0, + 295.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 294.0, + 536.0, + 294.0, + 536.0, + 333.0, + 293.0, + 333.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": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 504.0, + 607.0, + 504.0, + 607.0, + 553.0, + 291.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 504.0, + 960.0, + 504.0, + 960.0, + 553.0, + 874.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 504.0, + 1407.0, + 504.0, + 1407.0, + 553.0, + 1019.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 544.0, + 427.0, + 544.0, + 427.0, + 585.0, + 292.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 544.0, + 1024.0, + 544.0, + 1024.0, + 585.0, + 520.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 544.0, + 1406.0, + 544.0, + 1406.0, + 585.0, + 1083.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 577.0, + 479.0, + 577.0, + 479.0, + 680.0, + 283.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 577.0, + 720.0, + 577.0, + 720.0, + 680.0, + 519.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 577.0, + 830.0, + 577.0, + 830.0, + 680.0, + 782.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 577.0, + 1062.0, + 577.0, + 1062.0, + 680.0, + 901.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 577.0, + 1220.0, + 577.0, + 1220.0, + 680.0, + 1202.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 577.0, + 1330.0, + 577.0, + 1330.0, + 680.0, + 1282.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 577.0, + 1411.0, + 577.0, + 1411.0, + 680.0, + 1371.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 640.0, + 945.0, + 640.0, + 945.0, + 724.0, + 283.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 640.0, + 1041.0, + 640.0, + 1041.0, + 724.0, + 974.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 612.5, + 1406.0, + 612.5, + 1406.0, + 659.0, + 1074.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 649.0, + 1322.0, + 649.0, + 1322.0, + 701.0, + 1155.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 716.0, + 1405.0, + 716.0, + 1405.0, + 753.0, + 294.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 749.0, + 1405.0, + 749.0, + 1405.0, + 783.0, + 293.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 779.0, + 616.0, + 779.0, + 616.0, + 811.0, + 295.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 779.0, + 1209.0, + 779.0, + 1209.0, + 811.0, + 637.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 779.0, + 1404.0, + 779.0, + 1404.0, + 811.0, + 1337.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 810.0, + 1402.0, + 810.0, + 1402.0, + 842.0, + 295.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 839.0, + 1405.0, + 839.0, + 1405.0, + 874.0, + 293.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 869.0, + 1134.0, + 869.0, + 1134.0, + 904.0, + 295.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 913.0, + 1400.0, + 913.0, + 1400.0, + 951.0, + 296.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 946.0, + 1404.0, + 946.0, + 1404.0, + 983.0, + 296.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1013.0, + 294.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1009.0, + 1405.0, + 1009.0, + 1405.0, + 1041.0, + 293.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1037.0, + 892.0, + 1037.0, + 892.0, + 1073.0, + 295.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1938.0, + 1404.0, + 1938.0, + 1404.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 1402.0, + 1970.0, + 1402.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 965.0, + 2000.0, + 965.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 2000.0, + 1133.0, + 2000.0, + 1133.0, + 2038.0, + 1002.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2038.0, + 1175.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1811.0, + 1401.0, + 1811.0, + 1401.0, + 1845.0, + 296.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1843.0, + 1404.0, + 1843.0, + 1404.0, + 1877.0, + 294.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1869.0, + 444.0, + 1869.0, + 444.0, + 1908.0, + 292.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 356.0, + 1405.0, + 356.0, + 1405.0, + 388.0, + 298.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 385.0, + 337.0, + 385.0, + 337.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 385.0, + 623.0, + 385.0, + 623.0, + 421.0, + 352.0, + 421.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 726, + 1405, + 726, + 1405, + 1033, + 296, + 1033 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1691, + 1404, + 1691, + 1404, + 1877, + 297, + 1877 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1066, + 1403, + 1066, + 1403, + 1252, + 297, + 1252 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 298, + 1322, + 1403, + 1322, + 1403, + 1574, + 298, + 1574 + ], + "score": 0.979, + "html": "
miriiiiiimethod1-shot 5-way 5-shot 5-way1-shot 20-way 5-shot 20-way
train-val48.76 ± 0.8763.56 ± 0.9517.52 ± 0.4921.32 ± 0.54
rrrrareraetrain-train50.77 ± 0.9067.43 ± 0.8921.17 ± 0.3834.30 ± 0.41
method train-val1-shot 5-way 5-shot 5-way1-shot 10-way 5-shot 10-way
50.61 ± 1.1267.30 ± 0.9829.18 ± 0.5743.15 ± 0.72
train-train54.37 ± 0.9371.45 ± 0.9435.56 ± 0.6054.50 ± 0.71
" + }, + { + "category_id": 1, + "poly": [ + 292, + 229, + 1405, + 229, + 1405, + 294, + 292, + 294 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 297, + 508, + 1405, + 508, + 1405, + 695, + 297, + 695 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1400, + 1972, + 1400, + 2033, + 299, + 2033 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 298, + 1622, + 545, + 1622, + 545, + 1658, + 298, + 1658 + ], + "score": 0.915 + }, + { + "category_id": 6, + "poly": [ + 298, + 1281, + 1379, + 1281, + 1379, + 1315, + 298, + 1315 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 1921, + 488, + 1921, + 488, + 1954, + 300, + 1954 + ], + "score": 0.883 + }, + { + "category_id": 8, + "poly": [ + 296, + 308, + 1462, + 308, + 1462, + 494, + 296, + 494 + ], + "score": 0.787 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.784 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.643 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.26 + }, + { + "category_id": 8, + "poly": [ + 303, + 407, + 1351, + 407, + 1351, + 493, + 303, + 493 + ], + "score": 0.181 + }, + { + "category_id": 8, + "poly": [ + 293, + 309, + 1457, + 309, + 1457, + 395, + 293, + 395 + ], + "score": 0.093 + }, + { + "category_id": 13, + "poly": [ + 1089, + 764, + 1180, + 764, + 1180, + 793, + 1089, + 793 + ], + "score": 0.93, + "latex": "( K + 1 )" + }, + { + "category_id": 13, + "poly": [ + 924, + 885, + 1124, + 885, + 1124, + 914, + 924, + 914 + ], + "score": 0.92, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 1094, + 513, + 1221, + 513, + 1221, + 545, + 1094, + 545 + ], + "score": 0.92, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 375, + 514, + 470, + 514, + 470, + 544, + 375, + 544 + ], + "score": 0.92, + "latex": "\\left( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } \\right)" + }, + { + "category_id": 14, + "poly": [ + 310, + 304, + 1428, + 304, + 1428, + 502, + 310, + 502 + ], + "score": 0.91, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 438, + 546, + 530, + 546, + 530, + 574, + 438, + 574 + ], + "score": 0.91, + "latex": "( n _ { 1 } , n _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 411, + 854, + 591, + 854, + 591, + 883, + 411, + 883 + ], + "score": 0.9, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 880, + 512, + 1037, + 512, + 1037, + 544, + 880, + 544 + ], + "score": 0.89, + "latex": "( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } )" + }, + { + "category_id": 13, + "poly": [ + 1002, + 765, + 1029, + 765, + 1029, + 786, + 1002, + 786 + ], + "score": 0.89, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 297, + 1188, + 374, + 1188, + 374, + 1219, + 297, + 1219 + ], + "score": 0.88, + "latex": "6 . 4 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1127, + 1169, + 1127, + 1169, + 1158, + 1092, + 1158 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 964, + 1127, + 1040, + 1127, + 1040, + 1158, + 964, + 1158 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 349, + 795, + 377, + 795, + 377, + 816, + 349, + 816 + ], + "score": 0.87, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 846, + 574, + 905, + 574, + 905, + 599, + 846, + 599 + ], + "score": 0.86, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 354, + 1001, + 408, + 1001, + 408, + 1032, + 354, + 1032 + ], + "score": 0.86, + "latex": "9 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 298, + 912, + 464, + 912, + 464, + 942, + 298, + 942 + ], + "score": 0.85, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 307, + 575, + 375, + 575, + 375, + 600, + 307, + 600 + ], + "score": 0.83, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 798, + 524, + 815, + 524, + 815, + 538, + 798, + 538 + ], + "score": 0.77, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 770, + 1281, + 812, + 1281, + 812, + 1313, + 770, + 1313 + ], + "score": 0.73, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 695, + 517, + 708, + 517, + 708, + 538, + 695, + 538 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1090, + 972, + 1160, + 972, + 1160, + 1003, + 1090, + 1003 + ], + "score": 0.41, + "latex": "\\cdot" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1615.0, + 550.0, + 1615.0, + 550.0, + 1667.0, + 292.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1277.0, + 769.0, + 1277.0, + 769.0, + 1316.0, + 303.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1277.0, + 1385.0, + 1277.0, + 1385.0, + 1316.0, + 813.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1920.0, + 491.0, + 1920.0, + 491.0, + 1958.0, + 295.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 726.0, + 1402.0, + 726.0, + 1402.0, + 761.0, + 295.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 755.0, + 1001.0, + 755.0, + 1001.0, + 793.0, + 293.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 755.0, + 1088.0, + 755.0, + 1088.0, + 793.0, + 1030.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 755.0, + 1403.0, + 755.0, + 1403.0, + 793.0, + 1181.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 785.0, + 348.0, + 785.0, + 348.0, + 824.0, + 294.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 785.0, + 1405.0, + 785.0, + 1405.0, + 824.0, + 378.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 818.0, + 1405.0, + 818.0, + 1405.0, + 854.0, + 296.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 849.0, + 410.0, + 849.0, + 410.0, + 883.0, + 293.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 849.0, + 1405.0, + 849.0, + 1405.0, + 883.0, + 592.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 880.0, + 923.0, + 880.0, + 923.0, + 915.0, + 294.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 880.0, + 1406.0, + 880.0, + 1406.0, + 915.0, + 1125.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 910.0, + 297.0, + 910.0, + 297.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 944.0, + 465.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 943.0, + 1402.0, + 943.0, + 1402.0, + 971.0, + 296.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 971.0, + 1089.0, + 971.0, + 1089.0, + 1007.0, + 295.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 971.0, + 1403.0, + 971.0, + 1403.0, + 1007.0, + 1161.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1000.0, + 353.0, + 1000.0, + 353.0, + 1035.0, + 296.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1000.0, + 633.0, + 1000.0, + 633.0, + 1035.0, + 409.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1693.0, + 1404.0, + 1693.0, + 1404.0, + 1725.0, + 297.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1724.0, + 1404.0, + 1724.0, + 1404.0, + 1756.0, + 296.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1755.0, + 1402.0, + 1755.0, + 1402.0, + 1787.0, + 296.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1785.0, + 1402.0, + 1785.0, + 1402.0, + 1817.0, + 296.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1815.0, + 1404.0, + 1815.0, + 1404.0, + 1850.0, + 295.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1843.0, + 1397.0, + 1843.0, + 1397.0, + 1881.0, + 294.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1062.0, + 1403.0, + 1062.0, + 1403.0, + 1100.0, + 294.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1094.0, + 1403.0, + 1094.0, + 1403.0, + 1131.0, + 295.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 963.0, + 1125.0, + 963.0, + 1162.0, + 294.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1125.0, + 1091.0, + 1125.0, + 1091.0, + 1162.0, + 1041.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1125.0, + 1403.0, + 1125.0, + 1403.0, + 1162.0, + 1170.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1155.0, + 1404.0, + 1155.0, + 1404.0, + 1194.0, + 294.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1185.0, + 1403.0, + 1185.0, + 1403.0, + 1224.0, + 375.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1218.0, + 903.0, + 1218.0, + 903.0, + 1252.0, + 296.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1407.0, + 228.0, + 1407.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 259.0, + 1158.0, + 259.0, + 1158.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 500.0, + 374.0, + 500.0, + 374.0, + 548.0, + 292.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 500.0, + 694.0, + 500.0, + 694.0, + 548.0, + 471.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 500.0, + 797.0, + 500.0, + 797.0, + 548.0, + 709.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 500.0, + 879.0, + 500.0, + 879.0, + 548.0, + 816.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 500.0, + 1093.0, + 500.0, + 1093.0, + 548.0, + 1038.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 500.0, + 1407.0, + 500.0, + 1407.0, + 548.0, + 1222.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 537.0, + 437.0, + 537.0, + 437.0, + 573.0, + 296.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 537.0, + 1403.0, + 537.0, + 1403.0, + 573.0, + 531.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 562.0, + 306.0, + 562.0, + 306.0, + 609.0, + 291.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 562.0, + 845.0, + 562.0, + 845.0, + 609.0, + 376.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 562.0, + 1406.0, + 562.0, + 1406.0, + 609.0, + 906.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 602.0, + 1403.0, + 602.0, + 1403.0, + 634.0, + 296.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 632.0, + 1405.0, + 632.0, + 1405.0, + 664.0, + 295.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 663.0, + 846.0, + 663.0, + 846.0, + 695.0, + 296.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1967.0, + 1404.0, + 1967.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 2003.0, + 707.0, + 2003.0, + 707.0, + 2035.0, + 320.0, + 2035.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 300, + 540, + 1397, + 540, + 1397, + 604, + 300, + 604 + ], + "score": 0.788 + }, + { + "category_id": 1, + "poly": [ + 297, + 485, + 1157, + 485, + 1157, + 519, + 297, + 519 + ], + "score": 0.736 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 106, + 298, + 106 + ], + "score": 0.699 + }, + { + "category_id": 1, + "poly": [ + 300, + 624, + 1398, + 624, + 1398, + 689, + 300, + 689 + ], + "score": 0.686 + }, + { + "category_id": 1, + "poly": [ + 298, + 909, + 1405, + 909, + 1405, + 977, + 298, + 977 + ], + "score": 0.676 + }, + { + "category_id": 1, + "poly": [ + 299, + 399, + 1400, + 399, + 1400, + 464, + 299, + 464 + ], + "score": 0.674 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1403, + 228, + 1403, + 294, + 296, + 294 + ], + "score": 0.653 + }, + { + "category_id": 1, + "poly": [ + 299, + 709, + 1402, + 709, + 1402, + 804, + 299, + 804 + ], + "score": 0.644 + }, + { + "category_id": 1, + "poly": [ + 299, + 826, + 1402, + 826, + 1402, + 890, + 299, + 890 + ], + "score": 0.642 + }, + { + "category_id": 1, + "poly": [ + 295, + 1312, + 1399, + 1312, + 1399, + 1379, + 295, + 1379 + ], + "score": 0.641 + }, + { + "category_id": 1, + "poly": [ + 299, + 1196, + 1401, + 1196, + 1401, + 1292, + 299, + 1292 + ], + "score": 0.628 + }, + { + "category_id": 1, + "poly": [ + 293, + 995, + 1401, + 995, + 1401, + 1062, + 293, + 1062 + ], + "score": 0.627 + }, + { + "category_id": 1, + "poly": [ + 296, + 313, + 1403, + 313, + 1403, + 380, + 296, + 380 + ], + "score": 0.625 + }, + { + "category_id": 1, + "poly": [ + 297, + 1598, + 1400, + 1598, + 1400, + 1693, + 297, + 1693 + ], + "score": 0.619 + }, + { + "category_id": 1, + "poly": [ + 297, + 1397, + 1401, + 1397, + 1401, + 1493, + 297, + 1493 + ], + "score": 0.616 + }, + { + "category_id": 1, + "poly": [ + 299, + 1081, + 1401, + 1081, + 1401, + 1177, + 299, + 1177 + ], + "score": 0.616 + }, + { + "category_id": 1, + "poly": [ + 294, + 1513, + 1402, + 1513, + 1402, + 1580, + 294, + 1580 + ], + "score": 0.613 + }, + { + "category_id": 1, + "poly": [ + 288, + 1714, + 1402, + 1714, + 1402, + 1781, + 288, + 1781 + ], + "score": 0.588 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1399, + 1971, + 1399, + 2035, + 296, + 2035 + ], + "score": 0.566 + }, + { + "category_id": 1, + "poly": [ + 289, + 1799, + 1401, + 1799, + 1401, + 1866, + 289, + 1866 + ], + "score": 0.514 + }, + { + "category_id": 1, + "poly": [ + 295, + 1886, + 1397, + 1886, + 1397, + 1950, + 295, + 1950 + ], + "score": 0.506 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 106, + 297, + 106 + ], + "score": 0.194 + }, + { + "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, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 539.0, + 1405.0, + 539.0, + 1405.0, + 575.0, + 295.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 571.0, + 1370.0, + 571.0, + 1370.0, + 603.0, + 327.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 483.0, + 1155.0, + 483.0, + 1155.0, + 522.0, + 294.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 624.0, + 1402.0, + 624.0, + 1402.0, + 662.0, + 295.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 655.0, + 1152.0, + 655.0, + 1152.0, + 690.0, + 322.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 906.0, + 1405.0, + 906.0, + 1405.0, + 952.0, + 293.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 942.0, + 1098.0, + 942.0, + 1098.0, + 977.0, + 322.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 397.0, + 1405.0, + 397.0, + 1405.0, + 439.0, + 293.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 430.0, + 637.0, + 430.0, + 637.0, + 465.0, + 321.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 260.0, + 769.0, + 260.0, + 769.0, + 296.0, + 324.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 710.0, + 1404.0, + 710.0, + 1404.0, + 744.0, + 295.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 743.0, + 1404.0, + 743.0, + 1404.0, + 777.0, + 320.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 767.0, + 411.0, + 767.0, + 411.0, + 807.0, + 320.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 825.0, + 1403.0, + 825.0, + 1403.0, + 863.0, + 294.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 858.0, + 1054.0, + 858.0, + 1054.0, + 890.0, + 324.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1309.0, + 1404.0, + 1309.0, + 1404.0, + 1352.0, + 295.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1344.0, + 1203.0, + 1344.0, + 1203.0, + 1379.0, + 321.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1234.0, + 294.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1228.0, + 1403.0, + 1228.0, + 1403.0, + 1265.0, + 323.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1259.0, + 705.0, + 1259.0, + 705.0, + 1293.0, + 327.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 996.0, + 1403.0, + 996.0, + 1403.0, + 1032.0, + 296.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1027.0, + 1203.0, + 1027.0, + 1203.0, + 1064.0, + 322.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 314.0, + 1404.0, + 314.0, + 1404.0, + 350.0, + 296.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 345.0, + 1100.0, + 345.0, + 1100.0, + 380.0, + 321.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1599.0, + 1402.0, + 1599.0, + 1402.0, + 1633.0, + 296.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1632.0, + 1405.0, + 1632.0, + 1405.0, + 1666.0, + 323.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1663.0, + 705.0, + 1663.0, + 705.0, + 1694.0, + 321.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1400.0, + 1400.0, + 1400.0, + 1400.0, + 1430.0, + 296.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1428.0, + 1405.0, + 1428.0, + 1405.0, + 1467.0, + 321.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1460.0, + 612.0, + 1460.0, + 612.0, + 1491.0, + 323.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1080.0, + 1402.0, + 1080.0, + 1402.0, + 1119.0, + 293.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1113.0, + 1403.0, + 1113.0, + 1403.0, + 1147.0, + 324.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1146.0, + 806.0, + 1146.0, + 806.0, + 1178.0, + 323.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1509.0, + 1404.0, + 1509.0, + 1404.0, + 1554.0, + 293.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1545.0, + 1115.0, + 1545.0, + 1115.0, + 1580.0, + 325.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1715.0, + 1404.0, + 1715.0, + 1404.0, + 1751.0, + 294.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1748.0, + 1186.0, + 1748.0, + 1186.0, + 1781.0, + 320.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2002.0, + 692.0, + 2002.0, + 692.0, + 2035.0, + 321.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1800.0, + 1404.0, + 1800.0, + 1404.0, + 1836.0, + 296.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1831.0, + 1313.0, + 1831.0, + 1313.0, + 1866.0, + 321.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1402.0, + 1881.0, + 1402.0, + 1926.0, + 293.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1917.0, + 984.0, + 1917.0, + 984.0, + 1951.0, + 321.0, + 1951.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.822 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1399, + 229, + 1399, + 324, + 298, + 324 + ], + "score": 0.692 + }, + { + "category_id": 1, + "poly": [ + 298, + 1392, + 1401, + 1392, + 1401, + 1459, + 298, + 1459 + ], + "score": 0.689 + }, + { + "category_id": 1, + "poly": [ + 296, + 1311, + 1400, + 1311, + 1400, + 1375, + 296, + 1375 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 296, + 1475, + 1401, + 1475, + 1401, + 1541, + 296, + 1541 + ], + "score": 0.671 + }, + { + "category_id": 1, + "poly": [ + 297, + 1062, + 1396, + 1062, + 1396, + 1128, + 297, + 1128 + ], + "score": 0.67 + }, + { + "category_id": 1, + "poly": [ + 298, + 341, + 1155, + 341, + 1155, + 376, + 298, + 376 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 294, + 1146, + 1200, + 1146, + 1200, + 1181, + 294, + 1181 + ], + "score": 0.657 + }, + { + "category_id": 1, + "poly": [ + 298, + 1198, + 1402, + 1198, + 1402, + 1291, + 298, + 1291 + ], + "score": 0.639 + }, + { + "category_id": 1, + "poly": [ + 299, + 949, + 1399, + 949, + 1399, + 1046, + 299, + 1046 + ], + "score": 0.634 + }, + { + "category_id": 1, + "poly": [ + 297, + 1558, + 1401, + 1558, + 1401, + 1623, + 297, + 1623 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 291, + 867, + 1402, + 867, + 1402, + 932, + 291, + 932 + ], + "score": 0.622 + }, + { + "category_id": 1, + "poly": [ + 296, + 1641, + 1401, + 1641, + 1401, + 1706, + 296, + 1706 + ], + "score": 0.581 + }, + { + "category_id": 1, + "poly": [ + 300, + 671, + 1401, + 671, + 1401, + 768, + 300, + 768 + ], + "score": 0.536 + }, + { + "category_id": 1, + "poly": [ + 291, + 785, + 1404, + 785, + 1404, + 850, + 291, + 850 + ], + "score": 0.53 + }, + { + "category_id": 1, + "poly": [ + 303, + 394, + 1400, + 394, + 1400, + 490, + 303, + 490 + ], + "score": 0.506 + }, + { + "category_id": 1, + "poly": [ + 297, + 1724, + 1401, + 1724, + 1401, + 1819, + 297, + 1819 + ], + "score": 0.503 + }, + { + "category_id": 1, + "poly": [ + 296, + 1919, + 1401, + 1919, + 1401, + 1983, + 296, + 1983 + ], + "score": 0.491 + }, + { + "category_id": 1, + "poly": [ + 298, + 1836, + 1397, + 1836, + 1397, + 1901, + 298, + 1901 + ], + "score": 0.49 + }, + { + "category_id": 1, + "poly": [ + 288, + 2002, + 1297, + 2002, + 1297, + 2035, + 288, + 2035 + ], + "score": 0.486 + }, + { + "category_id": 1, + "poly": [ + 296, + 589, + 1399, + 589, + 1399, + 655, + 296, + 655 + ], + "score": 0.485 + }, + { + "category_id": 1, + "poly": [ + 293, + 506, + 1403, + 506, + 1403, + 573, + 293, + 573 + ], + "score": 0.469 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 264.0, + 297.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 297.0, + 323.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 291.0, + 887.0, + 291.0, + 887.0, + 326.0, + 322.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1393.0, + 1405.0, + 1393.0, + 1405.0, + 1429.0, + 296.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1424.0, + 1357.0, + 1424.0, + 1357.0, + 1459.0, + 323.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1405.0, + 1308.0, + 1405.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1342.0, + 611.0, + 1342.0, + 611.0, + 1372.0, + 322.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1474.0, + 1405.0, + 1474.0, + 1405.0, + 1513.0, + 294.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1507.0, + 1313.0, + 1507.0, + 1313.0, + 1542.0, + 321.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1063.0, + 1401.0, + 1063.0, + 1401.0, + 1099.0, + 296.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1095.0, + 1352.0, + 1095.0, + 1352.0, + 1129.0, + 322.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 338.0, + 1157.0, + 338.0, + 1157.0, + 383.0, + 292.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1145.0, + 1200.0, + 1145.0, + 1200.0, + 1184.0, + 294.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1195.0, + 1404.0, + 1195.0, + 1404.0, + 1234.0, + 292.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1228.0, + 1404.0, + 1228.0, + 1404.0, + 1263.0, + 321.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1255.0, + 399.0, + 1255.0, + 399.0, + 1296.0, + 319.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 947.0, + 1405.0, + 947.0, + 1405.0, + 986.0, + 293.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 979.0, + 1404.0, + 979.0, + 1404.0, + 1020.0, + 322.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1012.0, + 1319.0, + 1012.0, + 1319.0, + 1047.0, + 324.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1557.0, + 1405.0, + 1557.0, + 1405.0, + 1594.0, + 293.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1590.0, + 1247.0, + 1590.0, + 1247.0, + 1623.0, + 325.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 866.0, + 1403.0, + 866.0, + 1403.0, + 902.0, + 295.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 900.0, + 707.0, + 900.0, + 707.0, + 930.0, + 320.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1636.0, + 1406.0, + 1636.0, + 1406.0, + 1679.0, + 290.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1668.0, + 399.0, + 1668.0, + 399.0, + 1707.0, + 319.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 673.0, + 1403.0, + 673.0, + 1403.0, + 707.0, + 296.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 702.0, + 1403.0, + 702.0, + 1403.0, + 740.0, + 323.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 734.0, + 839.0, + 734.0, + 839.0, + 769.0, + 326.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 780.0, + 1405.0, + 780.0, + 1405.0, + 824.0, + 292.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 817.0, + 639.0, + 817.0, + 639.0, + 850.0, + 323.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 394.0, + 1403.0, + 394.0, + 1403.0, + 429.0, + 298.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 427.0, + 1404.0, + 427.0, + 1404.0, + 462.0, + 324.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 457.0, + 1083.0, + 457.0, + 1083.0, + 491.0, + 324.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1722.0, + 1406.0, + 1722.0, + 1406.0, + 1759.0, + 293.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1752.0, + 1406.0, + 1752.0, + 1406.0, + 1789.0, + 321.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1781.0, + 1120.0, + 1781.0, + 1120.0, + 1822.0, + 321.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1916.0, + 1403.0, + 1916.0, + 1403.0, + 1956.0, + 294.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1950.0, + 1047.0, + 1950.0, + 1047.0, + 1984.0, + 323.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1401.0, + 1834.0, + 1401.0, + 1874.0, + 294.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1869.0, + 787.0, + 1869.0, + 787.0, + 1902.0, + 323.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1998.0, + 1297.0, + 1998.0, + 1297.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 592.0, + 1403.0, + 592.0, + 1403.0, + 625.0, + 297.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 622.0, + 1366.0, + 622.0, + 1366.0, + 656.0, + 321.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 507.0, + 1405.0, + 507.0, + 1405.0, + 543.0, + 295.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 540.0, + 1304.0, + 540.0, + 1304.0, + 573.0, + 322.0, + 573.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 924, + 1406, + 924, + 1406, + 1019, + 298, + 1019 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 373, + 1478, + 1324, + 1478, + 1324, + 1578, + 373, + 1578 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 297, + 1027, + 1405, + 1027, + 1405, + 1124, + 297, + 1124 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 296, + 1662, + 1400, + 1662, + 1400, + 1727, + 296, + 1727 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 614, + 1986, + 1086, + 1986, + 1086, + 2030, + 614, + 2030 + ], + "score": 0.928 + }, + { + "category_id": 8, + "poly": [ + 639, + 1195, + 1112, + 1195, + 1112, + 1237, + 639, + 1237 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 292, + 1145, + 1266, + 1145, + 1266, + 1183, + 292, + 1183 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 290, + 877, + 1325, + 877, + 1325, + 912, + 290, + 912 + ], + "score": 0.907 + }, + { + "category_id": 1, + "poly": [ + 295, + 1424, + 1010, + 1424, + 1010, + 1460, + 295, + 1460 + ], + "score": 0.902 + }, + { + "category_id": 1, + "poly": [ + 298, + 598, + 1405, + 598, + 1405, + 692, + 298, + 692 + ], + "score": 0.892 + }, + { + "category_id": 1, + "poly": [ + 292, + 1601, + 1398, + 1601, + 1398, + 1639, + 292, + 1639 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 301, + 750, + 700, + 750, + 700, + 787, + 301, + 787 + ], + "score": 0.882 + }, + { + "category_id": 1, + "poly": [ + 344, + 1252, + 589, + 1252, + 589, + 1288, + 344, + 1288 + ], + "score": 0.867 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1402, + 229, + 1402, + 294, + 294, + 294 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 300, + 1879, + 682, + 1879, + 682, + 1913, + 300, + 1913 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 293, + 1936, + 1320, + 1936, + 1320, + 1973, + 293, + 1973 + ], + "score": 0.824 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 105, + 298, + 105 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 299, + 481, + 1406, + 481, + 1406, + 577, + 299, + 577 + ], + "score": 0.783 + }, + { + "category_id": 1, + "poly": [ + 295, + 397, + 1402, + 397, + 1402, + 463, + 295, + 463 + ], + "score": 0.773 + }, + { + "category_id": 1, + "poly": [ + 296, + 313, + 1402, + 313, + 1402, + 378, + 296, + 378 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 306, + 1744, + 1394, + 1744, + 1394, + 1849, + 306, + 1849 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 303, + 1365, + 872, + 1365, + 872, + 1402, + 303, + 1402 + ], + "score": 0.727 + }, + { + "category_id": 1, + "poly": [ + 304, + 1307, + 621, + 1307, + 621, + 1349, + 304, + 1349 + ], + "score": 0.708 + }, + { + "category_id": 0, + "poly": [ + 299, + 821, + 1014, + 821, + 1014, + 853, + 299, + 853 + ], + "score": 0.662 + }, + { + "category_id": 1, + "poly": [ + 299, + 821, + 1014, + 821, + 1014, + 853, + 299, + 853 + ], + "score": 0.29 + }, + { + "category_id": 8, + "poly": [ + 306, + 1744, + 1394, + 1744, + 1394, + 1849, + 306, + 1849 + ], + "score": 0.205 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 105, + 297, + 105 + ], + "score": 0.117 + }, + { + "category_id": 0, + "poly": [ + 293, + 1936, + 1320, + 1936, + 1320, + 1973, + 293, + 1973 + ], + "score": 0.109 + }, + { + "category_id": 13, + "poly": [ + 1076, + 1147, + 1211, + 1147, + 1211, + 1182, + 1076, + 1182 + ], + "score": 0.93, + "latex": "\\mathbb { E } [ A _ { t } ^ { 2 } ] < \\infty" + }, + { + "category_id": 14, + "poly": [ + 310, + 1741, + 1397, + 1741, + 1397, + 1852, + 310, + 1852 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\mathbb { E } _ { \\Delta \\sim P _ { \\mathrm { w } } } \\Big [ \\big \\| \\Delta \\big \\| ^ { 2 } \\Big ] = \\mathrm { t r } \\big ( \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf w _ { 0 , \\star } ) ) \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\big ) } \\\\ & { \\mathrm { A s y m E x c e s s R i s k } ( \\widehat { \\mathbf w } _ { 0 , T } ) : = \\mathbb { E } _ { \\Delta \\sim P _ { \\mathrm { w } } } \\big [ \\Delta ^ { \\top } \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) \\Delta \\big ] = \\mathrm { t r } \\big ( \\nabla ^ { 2 } L ( \\mathbf w _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf w _ { 0 , \\star } ) ) \\big ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1061, + 926, + 1121, + 926, + 1121, + 960, + 1061, + 960 + ], + "score": 0.92, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T }" + }, + { + "category_id": 13, + "poly": [ + 855, + 1603, + 998, + 1603, + 998, + 1636, + 855, + 1636 + ], + "score": 0.92, + "latex": "\\ell _ { t } : \\mathbb { R } ^ { d } \\to \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 678, + 1365, + 862, + 1365, + 862, + 1402, + 678, + 1402 + ], + "score": 0.92, + "latex": "\\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\succ \\mathbf { 0 }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1695, + 407, + 1695, + 407, + 1728, + 346, + 1728 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T }" + }, + { + "category_id": 13, + "poly": [ + 744, + 1148, + 964, + 1148, + 964, + 1182, + 744, + 1182 + ], + "score": 0.91, + "latex": "A _ { t } = A ( p _ { t } , \\mathbf { X } _ { t } , \\mathbf { y } _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 457, + 1426, + 517, + 1426, + 517, + 1461, + 457, + 1461 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T }" + }, + { + "category_id": 14, + "poly": [ + 371, + 1475, + 1324, + 1475, + 1324, + 1580, + 371, + 1580 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\sqrt { T } \\cdot ( \\widehat { \\mathbf { w } } _ { 0 , T } - \\mathbf { w } _ { 0 , \\star } ) \\stackrel { d } { } \\mathsf { N } \\big ( \\mathbf { 0 } , \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) ^ { - 1 } \\mathrm { C o v } ( \\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 , \\star } ) ) \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) ^ { - 1 } \\big ) = : P _ { \\mathbf { w } } , } \\\\ & { T \\cdot ( L ( \\widehat { \\mathbf { w } } _ { 0 , T } ) - L ( \\mathbf { w } _ { 0 , \\star } ) ) \\stackrel { d } { } \\Delta ^ { \\top } \\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\Delta \\quad \\mathrm { w h e r e } \\Delta \\sim P _ { \\mathbf { w } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 611, + 1986, + 1088, + 1986, + 1088, + 2031, + 611, + 2031 + ], + "score": 0.9, + "latex": "L ^ { \\mathsf { t r } - \\mathsf { v a l } } ( \\mathbf { w } _ { 0 } ) = \\mathbb { E } [ \\ell _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ( \\mathbf { w } _ { 0 } ) ] = L _ { \\lambda , n _ { 1 } } ^ { \\mathsf { t e s t } } ( \\mathbf { w } _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 425, + 1252, + 578, + 1252, + 578, + 1286, + 425, + 1286 + ], + "score": 0.9, + "latex": "\\mathbf { w } _ { 1 } , \\mathbf { w } _ { 2 } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 617, + 1060, + 678, + 1060, + 678, + 1093, + 617, + 1093 + ], + "score": 0.9, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T }" + }, + { + "category_id": 13, + "poly": [ + 1042, + 1064, + 1099, + 1064, + 1099, + 1093, + 1042, + 1093 + ], + "score": 0.88, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 14, + "poly": [ + 636, + 1196, + 1114, + 1196, + 1114, + 1234, + 636, + 1234 + ], + "score": 0.88, + "latex": "\\| \\nabla \\ell _ { t } ( \\mathbf { w } _ { 1 } ) - \\nabla \\ell _ { t } ( \\mathbf { w } _ { 2 } ) \\| \\leq A _ { t } \\| \\mathbf { w } _ { 1 } - \\mathbf { w } _ { 2 } \\|" + }, + { + "category_id": 13, + "poly": [ + 1291, + 1061, + 1384, + 1061, + 1384, + 1087, + 1291, + 1087 + ], + "score": 0.88, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 297, + 1064, + 353, + 1064, + 353, + 1093, + 297, + 1093 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1596, + 404, + 1596, + 404, + 1633, + 371, + 1633 + ], + "score": 0.73, + "latex": "\\overset { d } { \\to }" + }, + { + "category_id": 13, + "poly": [ + 349, + 1369, + 372, + 1369, + 372, + 1395, + 349, + 1395 + ], + "score": 0.71, + "latex": "L" + }, + { + "category_id": 14, + "poly": [ + 349, + 1304, + 620, + 1304, + 620, + 1348, + 349, + 1348 + ], + "score": 0.67, + "latex": "\\mathbb { E } [ \\| \\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 , \\star } ) \\| ^ { 2 } ] < \\infty ;" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 748.0, + 702.0, + 748.0, + 702.0, + 792.0, + 295.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1879.0, + 685.0, + 1879.0, + 685.0, + 1916.0, + 296.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 822.0, + 1015.0, + 822.0, + 1015.0, + 857.0, + 296.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1935.0, + 1322.0, + 1935.0, + 1322.0, + 1974.0, + 293.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 924.0, + 1060.0, + 924.0, + 1060.0, + 962.0, + 293.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 924.0, + 1406.0, + 924.0, + 1406.0, + 962.0, + 1122.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 954.0, + 1404.0, + 954.0, + 1404.0, + 990.0, + 295.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 985.0, + 877.0, + 985.0, + 877.0, + 1022.0, + 296.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1026.0, + 1405.0, + 1026.0, + 1405.0, + 1067.0, + 294.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1061.0, + 616.0, + 1061.0, + 616.0, + 1095.0, + 354.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1061.0, + 1041.0, + 1061.0, + 1041.0, + 1095.0, + 679.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1061.0, + 1290.0, + 1061.0, + 1290.0, + 1095.0, + 1100.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 1061.0, + 1402.0, + 1061.0, + 1402.0, + 1095.0, + 1385.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1089.0, + 876.0, + 1089.0, + 876.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1661.0, + 1404.0, + 1661.0, + 1404.0, + 1701.0, + 295.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1696.0, + 345.0, + 1696.0, + 345.0, + 1728.0, + 295.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1696.0, + 804.0, + 1696.0, + 804.0, + 1728.0, + 408.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1145.0, + 743.0, + 1145.0, + 743.0, + 1186.0, + 300.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1145.0, + 1075.0, + 1145.0, + 1075.0, + 1186.0, + 965.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1145.0, + 1265.0, + 1145.0, + 1265.0, + 1186.0, + 1212.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 878.0, + 1328.0, + 878.0, + 1328.0, + 912.0, + 293.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1423.0, + 456.0, + 1423.0, + 456.0, + 1463.0, + 296.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1423.0, + 1009.0, + 1423.0, + 1009.0, + 1463.0, + 518.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 596.0, + 1405.0, + 596.0, + 1405.0, + 635.0, + 292.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 628.0, + 1405.0, + 628.0, + 1405.0, + 664.0, + 320.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 658.0, + 466.0, + 658.0, + 466.0, + 694.0, + 323.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1597.0, + 370.0, + 1597.0, + 370.0, + 1643.0, + 295.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1597.0, + 854.0, + 1597.0, + 854.0, + 1643.0, + 405.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1597.0, + 1399.0, + 1597.0, + 1399.0, + 1643.0, + 999.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1249.0, + 424.0, + 1249.0, + 424.0, + 1291.0, + 340.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1249.0, + 592.0, + 1249.0, + 592.0, + 1291.0, + 579.0, + 1291.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": [ + 323.0, + 262.0, + 845.0, + 262.0, + 845.0, + 295.0, + 323.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1935.0, + 1322.0, + 1935.0, + 1322.0, + 1974.0, + 293.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 484.0, + 1404.0, + 484.0, + 1404.0, + 518.0, + 298.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 509.0, + 1405.0, + 509.0, + 1405.0, + 554.0, + 321.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 545.0, + 533.0, + 545.0, + 533.0, + 577.0, + 324.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 395.0, + 1406.0, + 395.0, + 1406.0, + 438.0, + 294.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 429.0, + 1099.0, + 429.0, + 1099.0, + 465.0, + 322.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 315.0, + 1404.0, + 315.0, + 1404.0, + 351.0, + 295.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 346.0, + 1143.0, + 346.0, + 1143.0, + 379.0, + 321.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1744.0, + 309.0, + 1744.0, + 309.0, + 1799.0, + 302.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1799.0, + 309.0, + 1799.0, + 309.0, + 1854.0, + 303.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1362.0, + 348.0, + 1362.0, + 348.0, + 1406.0, + 302.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1362.0, + 677.0, + 1362.0, + 677.0, + 1406.0, + 373.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1362.0, + 873.0, + 1362.0, + 873.0, + 1406.0, + 863.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1304.0, + 348.0, + 1304.0, + 348.0, + 1351.0, + 298.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1304.0, + 625.0, + 1304.0, + 625.0, + 1351.0, + 621.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 822.0, + 1015.0, + 822.0, + 1015.0, + 857.0, + 296.0, + 857.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1369, + 1410, + 1369, + 1410, + 1471, + 298, + 1471 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1407, + 228, + 1407, + 325, + 296, + 325 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 398, + 335, + 1304, + 335, + 1304, + 609, + 398, + 609 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 295, + 1169, + 1515, + 1169, + 1515, + 1352, + 295, + 1352 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 348, + 1483, + 1324, + 1483, + 1324, + 1648, + 348, + 1648 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 300, + 765, + 1553, + 765, + 1553, + 1114, + 300, + 1114 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 299, + 620, + 1400, + 620, + 1400, + 688, + 299, + 688 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 301, + 1707, + 1541, + 1707, + 1541, + 1858, + 301, + 1858 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 297, + 718, + 1088, + 718, + 1088, + 753, + 297, + 753 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 1658, + 705, + 1658, + 705, + 1696, + 297, + 1696 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 297, + 1128, + 371, + 1128, + 371, + 1158, + 297, + 1158 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 106, + 297, + 106 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 295, + 1886, + 910, + 1886, + 910, + 1921, + 295, + 1921 + ], + "score": 0.855 + }, + { + "category_id": 8, + "poly": [ + 302, + 1933, + 1397, + 1933, + 1397, + 1991, + 302, + 1991 + ], + "score": 0.809 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1860, + 1402, + 1860, + 1402, + 1890, + 1364, + 1890 + ], + "score": 0.798 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1550, + 1401, + 1550, + 1401, + 1580, + 1365, + 1580 + ], + "score": 0.723 + }, + { + "category_id": 1, + "poly": [ + 295, + 2001, + 1012, + 2001, + 1012, + 2036, + 295, + 2036 + ], + "score": 0.651 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 106, + 297, + 106 + ], + "score": 0.096 + }, + { + "category_id": 14, + "poly": [ + 401, + 335, + 1305, + 335, + 1305, + 612, + 401, + 612 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad \\mathbb { E } [ \\ell _ { t } ^ { \\mathrm { t r } - \\mathrm { v a l } } ( \\mathbf { w } _ { 0 } ) ] = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\frac { 1 } { 2 n _ { 2 } } \\left. \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathcal { A } _ { \\lambda } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } \\big ) \\right. ^ { 2 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { t } \\sim \\Pi , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\sim p _ { t } } \\left[ \\frac { 1 } { 2 } \\big ( y _ { t , 1 } ^ { \\mathrm { v a l } } - \\mathbf { x } _ { t , 1 } ^ { \\mathrm { v a l } } \\mathcal { A } _ { \\lambda } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } \\big ) \\big ) ^ { 2 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { T + 1 } \\sim \\Pi , ( \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } ) , ( \\mathbf { x } ^ { \\prime } , y ^ { \\prime } ) \\overset { \\mathrm { i d } } { \\sim } p _ { t } } \\left[ \\frac { 1 } { 2 } \\big ( y ^ { \\prime } - \\mathbf { x } ^ { \\prime \\top } \\mathcal { A } _ { \\lambda , n _ { 1 } } \\big ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { T + 1 } , \\mathbf { y } _ { T + 1 } \\big ) \\big ) ^ { 2 } \\right] } \\\\ & { = L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e x t } } ( \\mathbf { w } _ { 0 } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 453, + 1368, + 881, + 1368, + 881, + 1409, + 453, + 1409 + ], + "score": 0.94, + "latex": "( { \\bf X } _ { t } ^ { \\sf t r a i n ^ { \\top } } { \\bf X } _ { t } ^ { \\sf t r a i n } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } \\preceq \\lambda ^ { - 1 } { \\bf I } _ { d }" + }, + { + "category_id": 14, + "poly": [ + 310, + 762, + 1428, + 762, + 1428, + 1122, + 310, + 1122 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\hat { L } _ { T } ^ { \\mathrm { t r a s a l } } ( \\mathbf { w } _ { 0 } ) = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { s a l } } \\mathcal { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } ) \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } [ \\mathbf { w } _ { 0 } + ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } ( \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } - \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { 0 } ) ] \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\frac { 1 } { 2 n _ { 2 } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } n _ { 1 } \\lambda ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) \\right. } \\\\ & = \\displaystyle \\frac { 1 } { 2 } \\mathbf { w } _ { 0 } ^ { \\top } \\mathbf { M } _ { T } \\mathbf { w } _ { 0 } - \\mathbf { w } _ { 0 } ^ { \\top } \\mathbf { b } _ { T } + \\mathrm c o n \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 382, + 1658, + 649, + 1658, + 649, + 1696, + 382, + 1696 + ], + "score": 0.93, + "latex": "\\pmb { \\Sigma } _ { t } = \\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] \\succ \\mathbf { 0 } ," + }, + { + "category_id": 13, + "poly": [ + 490, + 290, + 616, + 290, + 616, + 325, + 490, + 325 + ], + "score": 0.92, + "latex": "( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } , \\bar { \\mathbf { y } } _ { t } ^ { \\mathsf { v a l } } )" + }, + { + "category_id": 13, + "poly": [ + 907, + 1408, + 1072, + 1408, + 1072, + 1442, + 907, + 1442 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\| \\mathbf { b } _ { T } \\| ] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 988, + 261, + 1231, + 261, + 1231, + 295, + 988, + 295 + ], + "score": 0.92, + "latex": "\\mathscr { A } _ { \\lambda } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { y } _ { t } ^ { \\mathsf { t r a i n } } )" + }, + { + "category_id": 13, + "poly": [ + 1074, + 622, + 1140, + 622, + 1140, + 660, + 1074, + 660 + ], + "score": 0.91, + "latex": "L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } }" + }, + { + "category_id": 14, + "poly": [ + 345, + 1478, + 1329, + 1478, + 1329, + 1651, + 345, + 1651 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\quad \\mathbf { M } _ { T } \\to \\mathbb { E } [ \\mathbf { M } _ { T } ] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathsf { v a l } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } } { n _ { 2 } } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\right] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } ^ { \\top } } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\right] \\succ \\mathbf { 0 } , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 310, + 1931, + 1400, + 1931, + 1400, + 1991, + 310, + 1991 + ], + "score": 0.9, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } = \\mathbf { M } _ { T } ^ { - 1 } \\mathbf { b } _ { T } \\mathbb { E } [ \\mathbf { M } _ { T } ] ^ { - 1 } \\mathbb { E } [ \\mathbf { b } _ { T } ] = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( \\mathbf { w } _ { 0 } ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n _ { 1 } } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) = \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 676, + 1409, + 854, + 1409, + 854, + 1442, + 676, + 1442 + ], + "score": 0.9, + "latex": "\\mathbb { E } [ \\| \\mathbf { M } _ { T } \\| ] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 1193, + 1373, + 1405, + 1373, + 1405, + 1411, + 1193, + 1411 + ], + "score": 0.9, + "latex": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\mathbf { x x } ^ { \\top } ] " + }, + { + "category_id": 13, + "poly": [ + 327, + 1890, + 421, + 1890, + 421, + 1916, + 327, + 1916 + ], + "score": 0.9, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 327, + 2004, + 421, + 2004, + 421, + 2030, + 327, + 2030 + ], + "score": 0.9, + "latex": "T \\to \\infty" + }, + { + "category_id": 14, + "poly": [ + 310, + 1165, + 1428, + 1165, + 1428, + 1351, + 310, + 1351 + ], + "score": 0.89, + "latex": "\\begin{array} { r l } & { \\displaystyle \\mathbf { { d } } _ { T } : = \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { n _ { 2 } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } , } \\\\ & \\displaystyle _ { \\mathcal { N } : = \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\lambda ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\cdot \\frac { 1 } { n _ { 2 } } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\left( \\mathbf { y } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\right) ^ { - 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 369, + 234, + 407, + 234, + 407, + 262, + 369, + 262 + ], + "score": 0.88, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 811, + 296, + 850, + 296, + 850, + 323, + 811, + 323 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1414, + 1276, + 1414, + 1276, + 1440, + 1249, + 1440 + ], + "score": 0.85, + "latex": "p _ { t }" + }, + { + "category_id": 14, + "poly": [ + 300, + 1705, + 1391, + 1705, + 1391, + 1823, + 300, + 1823 + ], + "score": 0.81, + "latex": "\\begin{array} { r l } & { \\quad \\mathbf { b } _ { T } \\to \\mathbb { E } [ \\mathbf { b } _ { T } ] } \\\\ & { = \\mathbb { E } _ { p _ { t } , ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) } \\left[ \\boldsymbol { \\lambda } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\boldsymbol { \\lambda } \\mathbf { I } _ { d } ) ^ { - 1 } \\cdot \\frac { 1 } { n _ { 2 } } \\mathbf { X } _ { t } ^ { \\mathrm { v a l \\top } } \\left( { \\mathbf { y } } _ { t } ^ { \\mathrm { v a l } } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } ( { \\mathbf { X } } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\boldsymbol { \\lambda } \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } \\right. \\right. } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 338, + 1409, + 565, + 1409, + 565, + 1444, + 338, + 1444 + ], + "score": 0.77, + "latex": "\\mathbb { E } _ { ( \\mathbf { x } , y ) \\sim p _ { t } } [ \\mathbf { x y } ] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 298, + 1412, + 328, + 1412, + 328, + 1437, + 298, + 1437 + ], + "score": 0.44, + "latex": "\\infty" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1364.0, + 452.0, + 1364.0, + 452.0, + 1415.0, + 290.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1364.0, + 1192.0, + 1364.0, + 1192.0, + 1415.0, + 882.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1405.0, + 297.0, + 1405.0, + 297.0, + 1445.0, + 292.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1405.0, + 337.0, + 1405.0, + 337.0, + 1445.0, + 329.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1405.0, + 675.0, + 1405.0, + 675.0, + 1445.0, + 566.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1405.0, + 906.0, + 1405.0, + 906.0, + 1445.0, + 855.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1405.0, + 1248.0, + 1405.0, + 1248.0, + 1445.0, + 1073.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1405.0, + 1407.0, + 1405.0, + 1407.0, + 1445.0, + 1277.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1438.0, + 1000.0, + 1438.0, + 1000.0, + 1473.0, + 296.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 368.0, + 228.0, + 368.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 264.0, + 408.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 246.0, + 987.0, + 246.0, + 987.0, + 310.0, + 287.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 246.0, + 1414.0, + 246.0, + 1414.0, + 310.0, + 1232.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 276.0, + 489.0, + 276.0, + 489.0, + 338.0, + 286.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 276.0, + 810.0, + 276.0, + 810.0, + 338.0, + 617.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 276.0, + 912.0, + 276.0, + 912.0, + 338.0, + 851.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 616.0, + 1073.0, + 616.0, + 1073.0, + 655.0, + 293.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 654.0, + 803.0, + 654.0, + 803.0, + 688.0, + 297.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 612.5, + 1409.0, + 612.5, + 1409.0, + 663.5, + 1073.0, + 663.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 716.0, + 1089.0, + 716.0, + 1089.0, + 759.0, + 295.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1654.0, + 381.0, + 1654.0, + 381.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1654.0, + 707.0, + 1654.0, + 707.0, + 1700.0, + 650.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1123.0, + 376.0, + 1123.0, + 376.0, + 1162.0, + 295.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1884.0, + 326.0, + 1884.0, + 326.0, + 1926.0, + 294.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1884.0, + 912.0, + 1884.0, + 912.0, + 1926.0, + 422.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 326.0, + 2000.0, + 326.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 2000.0, + 1013.0, + 2000.0, + 1013.0, + 2040.0, + 422.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 848, + 1406, + 848, + 1406, + 1010, + 297, + 1010 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 1107, + 1406, + 1107, + 1406, + 1205, + 296, + 1205 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1665, + 1401, + 1665, + 1401, + 1759, + 299, + 1759 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 296, + 1772, + 1552, + 1772, + 1552, + 2012, + 296, + 2012 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 490, + 1321, + 1215, + 1321, + 1215, + 1519, + 490, + 1519 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 449, + 405, + 1246, + 405, + 1246, + 558, + 449, + 558 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 625, + 761, + 1071, + 761, + 1071, + 829, + 625, + 829 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 687, + 282, + 1012, + 282, + 1012, + 345, + 687, + 345 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 679, + 653, + 1019, + 653, + 1019, + 696, + 679, + 696 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 296, + 574, + 1400, + 574, + 1400, + 637, + 296, + 637 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 291, + 1242, + 1403, + 1242, + 1403, + 1312, + 291, + 1312 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 299, + 709, + 822, + 709, + 822, + 743, + 299, + 743 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 343, + 1580, + 1355, + 1580, + 1355, + 1649, + 343, + 1649 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 301, + 1049, + 683, + 1049, + 683, + 1081, + 301, + 1081 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 295, + 227, + 1144, + 227, + 1144, + 264, + 295, + 264 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 1535, + 371, + 1535, + 371, + 1565, + 297, + 1565 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 362, + 371, + 362, + 371, + 392, + 297, + 392 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 855, + 73, + 855, + 106, + 297, + 106 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.862 + }, + { + "category_id": 9, + "poly": [ + 1351, + 2004, + 1402, + 2004, + 1402, + 2034, + 1351, + 2034 + ], + "score": 0.799 + }, + { + "category_id": 14, + "poly": [ + 489, + 1317, + 1217, + 1317, + 1217, + 1522, + 489, + 1522 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\displaystyle \\ell _ { t } ^ { \\mathrm { t r } + \\mathrm { r } } ( \\mathbf w _ { 0 } ) = \\frac { 1 } { 2 n } \\left\\| \\mathbf y _ { t } - \\mathbf X _ { t } A _ { \\lambda } ( \\mathbf w _ { 0 } ; \\mathbf X _ { t } , \\mathbf y _ { t } ) \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n } \\left\\| \\mathbf y _ { t } - \\mathbf X _ { t } \\big [ \\mathbf w _ { 0 } + ( \\mathbf X _ { t } ^ { \\top } \\mathbf X _ { t } + n \\lambda \\mathbf I _ { d } ) ^ { - 1 } \\mathbf X _ { t } ^ { \\top } ( \\mathbf y _ { t } - \\mathbf X _ { t } \\mathbf w _ { 0 } ) \\big ] \\right\\| ^ { 2 } } \\\\ & { = \\displaystyle \\frac 1 2 \\left\\| \\mathbf A _ { t } \\mathbf w _ { 0 } - \\mathbf c _ { t } \\right\\| ^ { 2 } , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 624, + 758, + 1074, + 758, + 1074, + 830, + 624, + 830 + ], + "score": 0.94, + "latex": "\\left. \\mathbf { A } _ { t } ^ { \\intercal } \\mathbf { A } _ { t } \\right. _ { \\mathrm { o p } } \\leq \\left. \\mathbf { A } _ { t } \\right. _ { \\mathsf { F r } } ^ { 2 } < \\frac { 1 } { n _ { 2 } } \\left. \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\right. _ { \\mathsf { F r } } ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 685, + 278, + 1011, + 278, + 1011, + 346, + 685, + 346 + ], + "score": 0.94, + "latex": "\\ell _ { t } ( { \\mathbf { w } } _ { 0 } ) = \\frac { 1 } { 2 } \\left\\| { \\mathbf { A } } _ { t } { \\mathbf { w } } _ { 0 } - { \\mathbf { c } } _ { t } \\right\\| ^ { 2 } ," + }, + { + "category_id": 14, + "poly": [ + 450, + 404, + 1251, + 404, + 1251, + 562, + 450, + 562 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { { \\displaystyle { \\bf A } _ { t } = \\frac { \\lambda } { \\sqrt { n _ { 2 } } } { \\bf X } _ { t } ^ { \\mathrm { v a l } } ( { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } } , } \\\\ { { \\displaystyle { \\bf c } _ { t } = \\frac { 1 } { \\sqrt { n _ { 2 } } } \\bigg ( { \\bf y } _ { t } ^ { \\mathrm { v a l } } - { \\bf X } _ { t } ^ { \\mathrm { v a l } } ( { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } } / n _ { 1 } + \\lambda { \\bf I } _ { d } ) ^ { - 1 } \\frac { 1 } { n _ { 1 } } { \\bf X } _ { t } ^ { \\mathrm { t r a i n } \\top } { \\bf y } _ { t } ^ { \\mathrm { t r a i n } } \\bigg ) } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1135, + 915, + 1319, + 915, + 1319, + 950, + 1135, + 950 + ], + "score": 0.93, + "latex": "\\nabla ^ { 2 } L ( \\mathbf { w } _ { 0 , \\star } ) \\succ \\mathbf { 0 }" + }, + { + "category_id": 14, + "poly": [ + 338, + 1577, + 1360, + 1577, + 1360, + 1650, + 338, + 1650 + ], + "score": 0.93, + "latex": "\\mathbf { A } _ { t } = \\frac { 1 } { \\sqrt { n } } n \\lambda \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\quad \\mathrm { a n d } \\quad \\mathbf { c } _ { t } = \\frac { 1 } { \\sqrt { n } } \\big ( \\mathbf { I } _ { n } - \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\big ) \\mathbf { y } _ { t } ." + }, + { + "category_id": 14, + "poly": [ + 310, + 1766, + 1428, + 1766, + 1428, + 2013, + 310, + 2013 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\mathbf { v } _ { 0 , \\star } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } = \\underset { \\mathbf { w } _ { 0 } } { \\operatorname { a r g m i n } } L ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } ( \\mathbf { w } _ { 0 } ) = \\big ( \\mathbb { E } [ \\mathbf { A } _ { t } ^ { \\top } \\mathbf { A } _ { t } ] \\big ) ^ { - 1 } \\mathbb { E } [ \\mathbf { A } _ { t } ^ { \\top } \\mathbf { c } _ { t } ] } \\\\ & { = \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } \\bigg ] ^ { - 1 } \\cdot \\mathbb { E } \\bigg [ \\frac { 1 } { n } \\lambda \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } ( \\mathbf { I } _ { n } - \\mathbf { X } _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ) } \\\\ & { = \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } \\bigg ] ^ { - 1 } \\cdot \\mathbb { E } \\bigg [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\frac { 1 } { n } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } \\bigg ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 336, + 848, + 554, + 848, + 554, + 886, + 336, + 886 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { \\mathbf { x } \\sim p _ { t } } [ \\left\\| \\mathbf { x } \\right\\| ^ { 4 } ] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 450, + 1696, + 515, + 1696, + 515, + 1734, + 450, + 1734 + ], + "score": 0.92, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - t r }" + }, + { + "category_id": 13, + "poly": [ + 880, + 1170, + 936, + 1170, + 936, + 1207, + 880, + 1207 + ], + "score": 0.92, + "latex": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }" + }, + { + "category_id": 14, + "poly": [ + 677, + 650, + 1021, + 650, + 1021, + 694, + 677, + 694 + ], + "score": 0.91, + "latex": "\\nabla \\ell _ { t } ( \\mathbf { w } _ { 0 } ) = \\mathbf { A } _ { t } ^ { \\top } ( \\mathbf { A } _ { t } \\mathbf { w } _ { 0 } - \\mathbf { c } _ { t } ) ." + }, + { + "category_id": 13, + "poly": [ + 298, + 887, + 524, + 887, + 524, + 917, + 298, + 917 + ], + "score": 0.9, + "latex": "\\mathbf { w } _ { 0 , \\star } = \\mathbf { w } _ { 0 , \\star } ( \\lambda , n _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 797, + 1140, + 857, + 1140, + 857, + 1168, + 797, + 1168 + ], + "score": 0.9, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 575, + 1170, + 634, + 1170, + 634, + 1197, + 575, + 1197 + ], + "score": 0.9, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 607, + 1246, + 667, + 1246, + 667, + 1275, + 607, + 1275 + ], + "score": 0.88, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 517, + 715, + 555, + 715, + 555, + 742, + 517, + 742 + ], + "score": 0.88, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1333, + 1696, + 1393, + 1696, + 1393, + 1726, + 1333, + 1726 + ], + "score": 0.87, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 919, + 1074, + 919, + 1074, + 948, + 1035, + 948 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 500, + 919, + 523, + 919, + 523, + 944, + 500, + 944 + ], + "score": 0.81, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 726, + 1246, + 797, + 1246, + 797, + 1275, + 726, + 1275 + ], + "score": 0.49, + "latex": "L ^ { \\mathsf { t r - v a l } }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1049.0, + 686.0, + 1049.0, + 686.0, + 1085.0, + 296.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 855.0, + 72.0, + 855.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 848.0, + 335.0, + 848.0, + 335.0, + 891.0, + 295.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 848.0, + 1407.0, + 848.0, + 1407.0, + 891.0, + 555.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 883.0, + 297.0, + 883.0, + 297.0, + 919.0, + 294.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 883.0, + 1406.0, + 883.0, + 1406.0, + 919.0, + 525.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 914.0, + 499.0, + 914.0, + 499.0, + 951.0, + 292.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 914.0, + 1034.0, + 914.0, + 1034.0, + 951.0, + 524.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 914.0, + 1134.0, + 914.0, + 1134.0, + 951.0, + 1075.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 914.0, + 1406.0, + 914.0, + 1406.0, + 951.0, + 1320.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 945.0, + 1406.0, + 945.0, + 1406.0, + 984.0, + 295.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 978.0, + 486.0, + 978.0, + 486.0, + 1012.0, + 295.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 978.0, + 1404.0, + 978.0, + 1404.0, + 1011.0, + 1373.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1108.0, + 1406.0, + 1108.0, + 1406.0, + 1142.0, + 296.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1132.0, + 574.0, + 1132.0, + 574.0, + 1226.0, + 282.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1132.0, + 796.0, + 1132.0, + 796.0, + 1226.0, + 635.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1132.0, + 879.0, + 1132.0, + 879.0, + 1226.0, + 858.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1132.0, + 1407.0, + 1132.0, + 1407.0, + 1226.0, + 937.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1666.0, + 1403.0, + 1666.0, + 1403.0, + 1700.0, + 295.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1682.0, + 449.0, + 1682.0, + 449.0, + 1745.0, + 285.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1682.0, + 1332.0, + 1682.0, + 1332.0, + 1745.0, + 516.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1745.0, + 1394.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1725.0, + 401.0, + 1725.0, + 401.0, + 1761.0, + 293.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 570.0, + 1404.0, + 570.0, + 1404.0, + 612.0, + 291.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 603.0, + 557.0, + 603.0, + 557.0, + 639.0, + 294.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1233.0, + 606.0, + 1233.0, + 606.0, + 1288.0, + 289.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1233.0, + 725.0, + 1233.0, + 725.0, + 1288.0, + 668.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1233.0, + 1408.0, + 1233.0, + 1408.0, + 1288.0, + 798.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1271.0, + 360.0, + 1271.0, + 360.0, + 1313.0, + 292.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 705.0, + 516.0, + 705.0, + 516.0, + 748.0, + 294.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 705.0, + 826.0, + 705.0, + 826.0, + 748.0, + 556.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 1150.0, + 224.0, + 1150.0, + 272.0, + 294.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 376.0, + 1530.0, + 376.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 357.0, + 376.0, + 357.0, + 376.0, + 396.0, + 295.0, + 396.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 300, + 1261, + 1401, + 1261, + 1401, + 1415, + 300, + 1415 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 525, + 1426, + 1167, + 1426, + 1167, + 1583, + 525, + 1583 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1940, + 1401, + 1940, + 1401, + 2036, + 298, + 2036 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1669, + 1405, + 1669, + 1405, + 1774, + 298, + 1774 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 443, + 909, + 1261, + 909, + 1261, + 1096, + 443, + 1096 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 302, + 280, + 1484, + 280, + 1484, + 498, + 302, + 498 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 557, + 1157, + 1142, + 1157, + 1142, + 1250, + 557, + 1250 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 298, + 1592, + 1401, + 1592, + 1401, + 1657, + 298, + 1657 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 510, + 768, + 1187, + 768, + 1187, + 860, + 510, + 860 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 551, + 1404, + 551, + 1404, + 616, + 298, + 616 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 299, + 1883, + 641, + 1883, + 641, + 1917, + 299, + 1917 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 296, + 1106, + 916, + 1106, + 916, + 1143, + 296, + 1143 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 292, + 716, + 1352, + 716, + 1352, + 758, + 292, + 758 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 855, + 73, + 855, + 106, + 297, + 106 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 301, + 1814, + 698, + 1814, + 698, + 1851, + 301, + 1851 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 294, + 227, + 1390, + 227, + 1390, + 265, + 294, + 265 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 296, + 872, + 345, + 872, + 345, + 901, + 296, + 901 + ], + "score": 0.907 + }, + { + "category_id": 8, + "poly": [ + 554, + 628, + 1135, + 628, + 1135, + 705, + 554, + 705 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1351, + 489, + 1401, + 489, + 1401, + 520, + 1351, + 520 + ], + "score": 0.817 + }, + { + "category_id": 9, + "poly": [ + 1351, + 489, + 1401, + 489, + 1401, + 520, + 1351, + 520 + ], + "score": 0.186 + }, + { + "category_id": 14, + "poly": [ + 525, + 1425, + 1173, + 1425, + 1173, + 1585, + 525, + 1585 + ], + "score": 0.95, + "latex": "\\begin{array} { r l r } & { } & { \\mathbb { E } \\bigg [ \\frac { x _ { t , 1 } y _ { t , 1 } } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg ] = \\frac { 1 } { 2 } \\cdot 3 \\mathbb { E } \\bigg [ \\frac { 1 } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 ) \\bigg ] } \\\\ & { } & { \\quad + \\frac { 1 } { 2 } \\cdot - 3 \\mathbb { E } \\bigg [ \\frac { 1 } { ( s _ { t } + \\lambda ) ^ { 2 } } \\bigg | ( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 ) \\bigg ] > 0 . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 310, + 275, + 1428, + 275, + 1428, + 500, + 310, + 500 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { a r g } } \\underset { \\mathbf { w } _ { 0 } } { \\mathrm { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\\\ & { = \\mathbb { E } \\big [ \\lambda ^ { 2 } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ] ^ { - 1 } \\cdot \\Big \\{ \\lambda \\mathbb { E } \\big [ ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\big ] \\mathbb { E } _ { p _ { t } , ( \\mathbf { x } ^ { \\prime } , y ^ { \\prime } ) \\sim p _ { t } } [ \\Xi ] \\big \\} } \\\\ & { \\phantom { = } - \\lambda \\mathbb { E } \\bigg [ ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\Sigma _ { t } ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n + \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { 1 } { n } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } \\bigg ] \\Big \\} . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 776, + 1974, + 868, + 1974, + 868, + 2006, + 776, + 2006 + ], + "score": 0.94, + "latex": "( n _ { 1 } , n _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 891, + 1593, + 955, + 1593, + 955, + 1631, + 891, + 1631 + ], + "score": 0.93, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 14, + "poly": [ + 444, + 907, + 1262, + 907, + 1262, + 1099, + 444, + 1099 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { { \\displaystyle { \\bf w } _ { 0 , \\star } ( \\lambda , n ) = - \\mathbb { E } \\big [ 5 \\lambda ^ { 2 } ( s _ { t } + \\lambda ) ^ { - 2 } \\big ] ^ { - 1 } \\cdot \\mathbb { E } \\Bigg [ 5 \\lambda ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] } } \\\\ { { \\displaystyle = - \\mathbb { E } \\big [ \\lambda ( s _ { t } + \\lambda ) ^ { - 2 } \\big ] ^ { - 1 } \\cdot \\mathbb { E } \\Bigg [ ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1593, + 1313, + 1593, + 1313, + 1627, + 1192, + 1627 + ], + "score": 0.93, + "latex": "\\mathbf { w } _ { 0 , \\star } ( \\lambda , n )" + }, + { + "category_id": 14, + "poly": [ + 509, + 766, + 1185, + 766, + 1185, + 860, + 509, + 860 + ], + "score": 0.93, + "latex": "\\mathbf { w } _ { 0 , \\star } ^ { \\mathrm { t r - t r } } = \\mathbb { E } \\left[ ( s _ { t } + \\lambda ) ^ { - 2 } s _ { t } \\right] ^ { - 1 } \\cdot \\mathbb { E } \\left[ ( s _ { t } + \\lambda ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\right] ," + }, + { + "category_id": 13, + "poly": [ + 707, + 1705, + 1079, + 1705, + 1079, + 1745, + 707, + 1745 + ], + "score": 0.93, + "latex": "L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) - L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) )" + }, + { + "category_id": 13, + "poly": [ + 509, + 1107, + 728, + 1107, + 728, + 1145, + 509, + 1145 + ], + "score": 0.93, + "latex": "\\mathbf { w } _ { 0 , \\star } ^ { \\sf t r - t r } \\neq \\mathbf { w } _ { 0 , \\star } ( \\lambda , n )" + }, + { + "category_id": 14, + "poly": [ + 557, + 1155, + 1141, + 1155, + 1141, + 1250, + 557, + 1250 + ], + "score": 0.93, + "latex": "\\mathbb { E } \\Bigg [ \\big ( s _ { t } + \\lambda \\big ) ^ { - 2 } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } x _ { t , i } y _ { t , i } \\Bigg ] = \\mathbb { E } \\Bigg [ \\frac { x _ { t , 1 } y _ { t , 1 } } { \\big ( s _ { t } + \\lambda \\big ) ^ { 2 } } \\Bigg ] \\neq 0" + }, + { + "category_id": 13, + "poly": [ + 536, + 717, + 852, + 717, + 852, + 755, + 536, + 755 + ], + "score": 0.92, + "latex": "= 5 , s _ { t } : = \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } / n \\in [ 1 , 9 ]" + }, + { + "category_id": 13, + "poly": [ + 573, + 1323, + 812, + 1323, + 812, + 1358, + 573, + 1358 + ], + "score": 0.92, + "latex": "( x _ { t , 1 } , y _ { t , 1 } ) = ( 3 , - 1 )" + }, + { + "category_id": 13, + "poly": [ + 720, + 1671, + 833, + 1671, + 833, + 1707, + 720, + 1707 + ], + "score": 0.92, + "latex": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } } ( \\mathbf { w } _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 910, + 720, + 1130, + 720, + 1130, + 756, + 910, + 756 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { x ^ { \\prime } , y ^ { \\prime } \\sim p _ { t } } [ x ^ { \\prime } y ^ { \\prime } ] = 0" + }, + { + "category_id": 13, + "poly": [ + 428, + 1593, + 649, + 1593, + 649, + 1630, + 428, + 1630 + ], + "score": 0.92, + "latex": "\\mathbf { w } _ { 0 , \\star } ^ { \\sf t r - t r } \\neq \\mathbf { w } _ { 0 , \\star } ( \\lambda , n )" + }, + { + "category_id": 13, + "poly": [ + 741, + 1261, + 959, + 1261, + 959, + 1297, + 741, + 1297 + ], + "score": 0.92, + "latex": "( x _ { t , 1 } , y _ { t , 1 } ) = ( 1 , 3 )" + }, + { + "category_id": 13, + "poly": [ + 501, + 1943, + 722, + 1943, + 722, + 1976, + 501, + 1976 + ], + "score": 0.92, + "latex": "\\mathbf { w } _ { 0 , \\star } = \\mathbb { E } _ { \\mathbf { w } _ { t } \\sim \\Pi } [ \\mathbf { w } _ { t } ]" + }, + { + "category_id": 14, + "poly": [ + 555, + 627, + 1142, + 627, + 1142, + 705, + 555, + 705 + ], + "score": 0.91, + "latex": "p _ { t } : ( x _ { t , i } , y _ { t , i } ) = { \\left\\{ \\begin{array} { l l } { ( 1 , 3 ) { \\mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 ; } \\\\ { ( 3 , - 1 ) { \\mathrm { ~ w i t h ~ p r o b a b i l i t y ~ } } 1 / 2 . } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 231, + 1360, + 231, + 1360, + 269, + 1304, + 269 + ], + "score": 0.91, + "latex": "L _ { \\lambda , n } ^ { \\mathsf { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 470, + 1974, + 540, + 1974, + 540, + 2001, + 470, + 2001 + ], + "score": 0.9, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 431, + 585, + 500, + 585, + 500, + 612, + 431, + 612 + ], + "score": 0.9, + "latex": "d = 1" + }, + { + "category_id": 13, + "poly": [ + 753, + 1626, + 847, + 1626, + 847, + 1652, + 753, + 1652 + ], + "score": 0.9, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 325, + 2007, + 381, + 2007, + 381, + 2037, + 325, + 2037 + ], + "score": 0.9, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 384, + 1263, + 454, + 1263, + 454, + 1291, + 384, + 1291 + ], + "score": 0.89, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 483, + 1741, + 576, + 1741, + 576, + 1768, + 483, + 1768 + ], + "score": 0.89, + "latex": "T \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 995, + 1941, + 1055, + 1941, + 1055, + 1970, + 995, + 1970 + ], + "score": 0.89, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1941, + 1173, + 1941, + 1173, + 1971, + 1104, + 1971 + ], + "score": 0.89, + "latex": "L ^ { \\mathsf { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 619, + 587, + 646, + 587, + 646, + 615, + 619, + 615 + ], + "score": 0.85, + "latex": "p _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1103, + 1327, + 1129, + 1327, + 1129, + 1354, + 1103, + 1354 + ], + "score": 0.84, + "latex": "s _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1268, + 1400, + 1268, + 1400, + 1293, + 1374, + 1293 + ], + "score": 0.81, + "latex": "s _ { t }" + }, + { + "category_id": 13, + "poly": [ + 597, + 1980, + 616, + 1980, + 616, + 2000, + 597, + 2000 + ], + "score": 0.8, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 489, + 721, + 575, + 721, + 575, + 752, + 489, + 752 + ], + "score": 0.75, + "latex": "\\Sigma _ { t } = 5" + }, + { + "category_id": 14, + "poly": [ + 323, + 279, + 691, + 279, + 691, + 337, + 323, + 337 + ], + "score": 0.32, + "latex": "\\begin{array} { r } { \\mathbf { w } _ { 0 , \\star } ( \\lambda , n ) = \\underset { \\mathbf { w } _ { 0 } } { \\arg \\operatorname* { m i n } } L _ { \\lambda , n } ^ { \\mathrm { t e s t } } ( \\mathbf { w } _ { 0 } ) } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 643.0, + 1884.0, + 643.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 855.0, + 72.0, + 855.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1812.0, + 702.0, + 1812.0, + 702.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1261.0, + 383.0, + 1261.0, + 383.0, + 1298.0, + 295.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1261.0, + 740.0, + 1261.0, + 740.0, + 1298.0, + 455.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1261.0, + 1373.0, + 1261.0, + 1373.0, + 1298.0, + 960.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1261.0, + 1405.0, + 1261.0, + 1405.0, + 1298.0, + 1401.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1293.0, + 1405.0, + 1293.0, + 1405.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1321.0, + 572.0, + 1321.0, + 572.0, + 1362.0, + 293.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1321.0, + 1102.0, + 1321.0, + 1102.0, + 1362.0, + 813.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1321.0, + 1406.0, + 1321.0, + 1406.0, + 1362.0, + 1130.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1351.0, + 1405.0, + 1351.0, + 1405.0, + 1388.0, + 293.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1384.0, + 747.0, + 1384.0, + 747.0, + 1417.0, + 296.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1934.0, + 500.0, + 1934.0, + 500.0, + 1981.0, + 292.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1934.0, + 994.0, + 1934.0, + 994.0, + 1981.0, + 723.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1934.0, + 1103.0, + 1934.0, + 1103.0, + 1981.0, + 1056.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1934.0, + 1407.0, + 1934.0, + 1407.0, + 1981.0, + 1174.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 469.0, + 1972.0, + 469.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1972.0, + 596.0, + 1972.0, + 596.0, + 2006.0, + 541.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1972.0, + 775.0, + 1972.0, + 775.0, + 2006.0, + 617.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2006.0, + 869.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 324.0, + 2003.0, + 324.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 2003.0, + 922.0, + 2003.0, + 922.0, + 2037.0, + 382.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1661.0, + 719.0, + 1661.0, + 719.0, + 1718.0, + 288.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1661.0, + 1410.0, + 1661.0, + 1410.0, + 1718.0, + 834.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1693.0, + 706.0, + 1693.0, + 706.0, + 1754.0, + 287.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1693.0, + 1411.0, + 1693.0, + 1411.0, + 1754.0, + 1080.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1735.0, + 482.0, + 1735.0, + 482.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1735.0, + 589.0, + 1735.0, + 589.0, + 1777.0, + 577.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1578.0, + 427.0, + 1578.0, + 427.0, + 1643.0, + 287.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1578.0, + 890.0, + 1578.0, + 890.0, + 1643.0, + 650.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1578.0, + 1191.0, + 1578.0, + 1191.0, + 1643.0, + 956.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 1578.0, + 1412.0, + 1578.0, + 1412.0, + 1643.0, + 1314.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 752.0, + 1621.0, + 752.0, + 1659.0, + 294.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1621.0, + 857.0, + 1621.0, + 857.0, + 1659.0, + 848.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 550.0, + 1404.0, + 550.0, + 1404.0, + 589.0, + 296.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 581.0, + 430.0, + 581.0, + 430.0, + 618.0, + 293.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 581.0, + 618.0, + 581.0, + 618.0, + 618.0, + 501.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 581.0, + 979.0, + 581.0, + 979.0, + 618.0, + 647.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1099.0, + 508.0, + 1099.0, + 508.0, + 1152.0, + 293.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1099.0, + 921.0, + 1099.0, + 921.0, + 1152.0, + 729.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 715.0, + 488.0, + 715.0, + 488.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 715.0, + 909.0, + 715.0, + 909.0, + 760.0, + 853.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 715.0, + 1357.0, + 715.0, + 1357.0, + 760.0, + 1131.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 217.0, + 1303.0, + 217.0, + 1303.0, + 280.0, + 289.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 217.0, + 1398.0, + 217.0, + 1398.0, + 280.0, + 1361.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 870.0, + 345.0, + 870.0, + 345.0, + 902.0, + 293.0, + 902.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1671, + 1407, + 1671, + 1407, + 1852, + 296, + 1852 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1234, + 1405, + 1234, + 1405, + 1358, + 297, + 1358 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1416, + 1405, + 1416, + 1405, + 1518, + 297, + 1518 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1937, + 1402, + 1937, + 1402, + 2036, + 298, + 2036 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 353, + 272, + 1344, + 272, + 1344, + 460, + 353, + 460 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 579, + 1530, + 1122, + 1530, + 1122, + 1662, + 579, + 1662 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 300, + 515, + 1449, + 515, + 1449, + 749, + 300, + 749 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 499, + 1162, + 1199, + 1162, + 1199, + 1224, + 499, + 1224 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 718, + 1368, + 980, + 1368, + 980, + 1408, + 718, + 1408 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 519, + 1041, + 1177, + 1041, + 1177, + 1106, + 519, + 1106 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 351, + 1864, + 1303, + 1864, + 1303, + 1929, + 351, + 1929 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 459, + 860, + 1235, + 860, + 1235, + 913, + 459, + 913 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 520, + 974, + 1138, + 974, + 1138, + 1034, + 520, + 1034 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 299, + 1114, + 988, + 1114, + 988, + 1149, + 299, + 1149 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 467, + 798, + 1096, + 798, + 1096, + 852, + 467, + 852 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 295, + 927, + 1388, + 927, + 1388, + 962, + 295, + 962 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 855, + 73, + 855, + 106, + 297, + 106 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 297, + 760, + 420, + 760, + 420, + 790, + 297, + 790 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 296, + 469, + 679, + 469, + 679, + 503, + 296, + 503 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 293, + 225, + 1354, + 225, + 1354, + 264, + 293, + 264 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1178, + 1400, + 1178, + 1400, + 1210, + 1351, + 1210 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1057, + 1401, + 1057, + 1401, + 1088, + 1351, + 1088 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1351, + 810, + 1401, + 810, + 1401, + 841, + 1351, + 841 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1350, + 519, + 1402, + 519, + 1402, + 552, + 1350, + 552 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1351, + 990, + 1401, + 990, + 1401, + 1021, + 1351, + 1021 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1351, + 871, + 1401, + 871, + 1401, + 902, + 1351, + 902 + ], + "score": 0.872 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1882, + 1400, + 1882, + 1400, + 1913, + 1352, + 1913 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1351, + 412, + 1401, + 412, + 1401, + 443, + 1351, + 443 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 866, + 2087, + 866, + 2113, + 836, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1351, + 701, + 1401, + 701, + 1401, + 731, + 1351, + 731 + ], + "score": 0.867 + }, + { + "category_id": 14, + "poly": [ + 310, + 513, + 1428, + 513, + 1428, + 753, + 310, + 753 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } & { \\quad L ^ { \\mathrm { t r } \\cdot \\mathrm { s c a l } } ( \\mathbf { w } _ { 0 } ) } & { ( 1 3 ) } \\\\ & { = \\mathbb { E } \\bigl [ \\phi _ { t } ^ { \\mathrm { r } \\cdot \\mathrm { s c a l } } ( \\mathbf { w } _ { 0 } ) \\bigr ] } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n _ { 2 } } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } ^ { \\mathrm { s c a l } } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left[ \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\left( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\mathbf { w } _ { 0 } \\right) + \\mathbf { w } _ { 0 } \\right] \\right\\| ^ { 2 } \\right. } \\\\ & { = \\displaystyle \\frac { 1 } { 2 n _ { 2 } } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left( \\mathbf { I } _ { d } - \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right\\| ^ { 2 } \\right] . } & { ( 1 4 ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 350, + 270, + 1346, + 270, + 1346, + 464, + 350, + 464 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { L ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf w _ { 0 } ) = \\mathbb { E } [ \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf w _ { 0 } ) ] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { 2 n } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } \\left[ \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\left( \\mathbf { X } _ { t } \\mathbf { w } _ { t } - \\mathbf { X } _ { t } \\mathbf { w } _ { 0 } \\right) + \\mathbf { w } _ { 0 } \\right] \\right\\| ^ { 2 } \\right] } \\\\ & { \\quad \\quad \\quad = \\frac { 1 } { 2 n } \\mathbb { E } \\left[ \\left\\| \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\left( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } \\right) \\right\\| ^ { 2 } \\right] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 463, + 793, + 1236, + 793, + 1236, + 919, + 463, + 919 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } = \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\quad \\mathrm { a n d } } \\\\ & { \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } = \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\left( \\mathbf { I } _ { d } - \\left( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\left( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 886, + 1673, + 1208, + 1673, + 1208, + 1713, + 886, + 1713 + ], + "score": 0.92, + "latex": "\\mathbf { v } ^ { \\top } \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) \\mathbf { v } \\ > \\ \\mathrm { ~ 0 ~ }" + }, + { + "category_id": 13, + "poly": [ + 924, + 1451, + 1111, + 1451, + 1111, + 1485, + 924, + 1485 + ], + "score": 0.92, + "latex": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - t r } } \\bigl ( \\mathbf { w } _ { 0 , \\star } \\bigr )" + }, + { + "category_id": 13, + "poly": [ + 1147, + 228, + 1253, + 228, + 1253, + 262, + 1147, + 262 + ], + "score": 0.92, + "latex": "\\mathbf { w } _ { 0 } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 499, + 1159, + 1199, + 1159, + 1199, + 1226, + 499, + 1226 + ], + "score": 0.92, + "latex": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) = - \\frac { 1 } { n } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } ) \\right] = \\mathbf { 0 } ." + }, + { + "category_id": 13, + "poly": [ + 743, + 1804, + 854, + 1804, + 854, + 1849, + 743, + 1849 + ], + "score": 0.92, + "latex": "\\frac { \\lambda } { \\lambda + \\sigma _ { i } } > 0" + }, + { + "category_id": 13, + "poly": [ + 466, + 1710, + 865, + 1710, + 865, + 1765, + 466, + 1765 + ], + "score": 0.92, + "latex": "\\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right)" + }, + { + "category_id": 14, + "poly": [ + 579, + 1526, + 1123, + 1526, + 1123, + 1665, + 579, + 1665 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) = \\displaystyle \\frac { 1 } { n } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ] \\quad \\mathrm { a n d } } \\\\ & { \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathsf { t r - v a l } } ( \\mathbf { w } _ { 0 , \\star } ) = \\displaystyle \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - v a l } } ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 739, + 1234, + 962, + 1234, + 962, + 1270, + 739, + 1270 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } ] = \\mathbf { 0 }" + }, + { + "category_id": 14, + "poly": [ + 519, + 969, + 1177, + 969, + 1177, + 1112, + 519, + 1112 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 } ) = - \\displaystyle \\frac { 1 } { n } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right] , } \\\\ & { \\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathrm { t r - v a l } } ( \\mathbf { w } _ { 0 } ) = - \\displaystyle \\frac { 1 } { n _ { 2 } } \\mathbb { E } \\left[ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r - v a l } } ( \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 } ) \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1451, + 1360, + 1451, + 1360, + 1485, + 1164, + 1485 + ], + "score": 0.92, + "latex": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - v a l } } \\left( \\mathbf { w } _ { 0 , \\star } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1809, + 1157, + 1809, + 1157, + 1841, + 1018, + 1841 + ], + "score": 0.91, + "latex": "i = 1 , \\ldots , d" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1721, + 1290, + 1721, + 1290, + 1754, + 1198, + 1754 + ], + "score": 0.91, + "latex": "\\lambda \\ \\ne \\ 0" + }, + { + "category_id": 13, + "poly": [ + 828, + 1763, + 926, + 1763, + 926, + 1801, + 828, + 1801 + ], + "score": 0.91, + "latex": "\\textstyle { \\frac { 1 } { n } } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t }" + }, + { + "category_id": 14, + "poly": [ + 718, + 1365, + 978, + 1365, + 978, + 1408, + 718, + 1408 + ], + "score": 0.91, + "latex": "\\nabla _ { \\mathbf { w } _ { 0 } } L ^ { \\mathsf { t r - v a l } } ( \\mathbf { w } _ { 0 , \\star } ) = \\mathbf { 0 } ," + }, + { + "category_id": 13, + "poly": [ + 347, + 1674, + 463, + 1674, + 463, + 1706, + 347, + 1706 + ], + "score": 0.9, + "latex": "\\textbf { v } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1799, + 694, + 1799, + 694, + 1854, + 298, + 1854 + ], + "score": 0.9, + "latex": "\\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right)" + }, + { + "category_id": 14, + "poly": [ + 352, + 1863, + 1298, + 1863, + 1298, + 1930, + 352, + 1930 + ], + "score": 0.9, + "latex": "\\mathbf { v } ^ { \\top } \\nabla _ { \\mathbf { w } _ { 0 } } ^ { 2 } L ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) \\mathbf { v } = \\frac { 1 } { n } \\mathbb { E } [ \\mathbf { v } ^ { \\top } \\mathbf { X } _ { t } ^ { \\top } \\left( \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) ^ { 2 } \\mathbf { X } _ { t } \\mathbf { v } ] > 0 ," + }, + { + "category_id": 13, + "poly": [ + 896, + 1809, + 967, + 1809, + 967, + 1841, + 896, + 1841 + ], + "score": 0.9, + "latex": "\\lambda \\neq 0" + }, + { + "category_id": 13, + "poly": [ + 464, + 233, + 519, + 233, + 519, + 265, + 464, + 265 + ], + "score": 0.9, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 362, + 1417, + 399, + 1417, + 399, + 1451, + 362, + 1451 + ], + "score": 0.89, + "latex": "\\mathbf { X } _ { t } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 494, + 1267, + 530, + 1267, + 530, + 1297, + 494, + 1297 + ], + "score": 0.89, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 988, + 930, + 1047, + 930, + 1047, + 957, + 988, + 957 + ], + "score": 0.89, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1487, + 1046, + 1487, + 1046, + 1513, + 987, + 1513 + ], + "score": 0.89, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1968, + 1151, + 1968, + 1151, + 1996, + 1092, + 1996 + ], + "score": 0.89, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 755, + 1973, + 812, + 1973, + 812, + 2002, + 755, + 2002 + ], + "score": 0.89, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 1099, + 928, + 1168, + 928, + 1168, + 957, + 1099, + 957 + ], + "score": 0.89, + "latex": "L ^ { \\mathsf { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 438, + 1121, + 494, + 1121, + 494, + 1150, + 438, + 1150 + ], + "score": 0.89, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 614, + 230, + 674, + 230, + 674, + 259, + 614, + 259 + ], + "score": 0.88, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1486, + 1166, + 1486, + 1166, + 1513, + 1098, + 1513 + ], + "score": 0.88, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 384, + 1451, + 444, + 1451, + 444, + 1480, + 384, + 1480 + ], + "score": 0.88, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 361, + 1939, + 398, + 1939, + 398, + 1969, + 361, + 1969 + ], + "score": 0.88, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 495, + 1450, + 563, + 1450, + 563, + 1480, + 495, + 1480 + ], + "score": 0.88, + "latex": "L ^ { \\mathsf { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1423, + 1171, + 1423, + 1171, + 1451, + 1115, + 1451 + ], + "score": 0.88, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 988, + 230, + 1048, + 230, + 1048, + 259, + 988, + 259 + ], + "score": 0.88, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 413, + 470, + 482, + 470, + 482, + 500, + 413, + 500 + ], + "score": 0.88, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 411, + 2001, + 480, + 2001, + 480, + 2031, + 411, + 2031 + ], + "score": 0.88, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1768, + 603, + 1768, + 603, + 1798, + 398, + 1798 + ], + "score": 0.87, + "latex": "\\sigma _ { 1 } ~ \\geq ~ \\cdots ~ \\geq ~ \\sigma _ { d }" + }, + { + "category_id": 13, + "poly": [ + 657, + 1422, + 693, + 1422, + 693, + 1448, + 657, + 1448 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1240, + 1212, + 1240, + 1212, + 1266, + 1176, + 1266 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1202, + 1270, + 1230, + 1270, + 1230, + 1297, + 1202, + 1297 + ], + "score": 0.86, + "latex": "\\mathbf { z } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1342, + 935, + 1380, + 935, + 1380, + 961, + 1342, + 961 + ], + "score": 0.84, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 730, + 229, + 799, + 229, + 799, + 259, + 730, + 259 + ], + "score": 0.84, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 855.0, + 72.0, + 855.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1666.0, + 346.0, + 1666.0, + 346.0, + 1715.0, + 291.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1666.0, + 885.0, + 1666.0, + 885.0, + 1715.0, + 464.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1666.0, + 1405.0, + 1666.0, + 1405.0, + 1715.0, + 1209.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1710.0, + 465.0, + 1710.0, + 465.0, + 1761.0, + 293.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1710.0, + 1197.0, + 1710.0, + 1197.0, + 1761.0, + 866.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1710.0, + 1409.0, + 1710.0, + 1409.0, + 1761.0, + 1291.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1759.0, + 397.0, + 1759.0, + 397.0, + 1805.0, + 294.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1759.0, + 827.0, + 1759.0, + 827.0, + 1805.0, + 604.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1759.0, + 1408.0, + 1759.0, + 1408.0, + 1805.0, + 927.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1792.0, + 297.0, + 1792.0, + 297.0, + 1863.0, + 293.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1792.0, + 742.0, + 1792.0, + 742.0, + 1863.0, + 695.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1792.0, + 895.0, + 1792.0, + 895.0, + 1863.0, + 855.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1792.0, + 1017.0, + 1792.0, + 1017.0, + 1863.0, + 968.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1792.0, + 1388.0, + 1792.0, + 1388.0, + 1863.0, + 1158.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1234.0, + 738.0, + 1234.0, + 738.0, + 1270.0, + 294.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1234.0, + 1175.0, + 1234.0, + 1175.0, + 1270.0, + 963.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1234.0, + 1406.0, + 1234.0, + 1406.0, + 1270.0, + 1213.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1266.0, + 493.0, + 1266.0, + 493.0, + 1298.0, + 295.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1266.0, + 1201.0, + 1266.0, + 1201.0, + 1298.0, + 531.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1266.0, + 1405.0, + 1266.0, + 1405.0, + 1298.0, + 1231.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1295.0, + 1403.0, + 1295.0, + 1403.0, + 1331.0, + 295.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1328.0, + 446.0, + 1328.0, + 446.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1413.0, + 361.0, + 1413.0, + 361.0, + 1453.0, + 292.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1413.0, + 656.0, + 1413.0, + 656.0, + 1453.0, + 400.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1413.0, + 1114.0, + 1413.0, + 1114.0, + 1453.0, + 694.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1413.0, + 1405.0, + 1413.0, + 1405.0, + 1453.0, + 1172.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1440.0, + 383.0, + 1440.0, + 383.0, + 1491.0, + 290.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1440.0, + 494.0, + 1440.0, + 494.0, + 1491.0, + 445.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1440.0, + 923.0, + 1440.0, + 923.0, + 1491.0, + 564.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1440.0, + 1163.0, + 1440.0, + 1163.0, + 1491.0, + 1112.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1440.0, + 1408.0, + 1440.0, + 1408.0, + 1491.0, + 1361.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1480.0, + 986.0, + 1480.0, + 986.0, + 1520.0, + 291.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1480.0, + 1097.0, + 1480.0, + 1097.0, + 1520.0, + 1047.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1480.0, + 1201.0, + 1480.0, + 1201.0, + 1520.0, + 1167.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1938.0, + 360.0, + 1938.0, + 360.0, + 1973.0, + 296.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1938.0, + 1402.0, + 1938.0, + 1402.0, + 1973.0, + 399.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1964.0, + 754.0, + 1964.0, + 754.0, + 2006.0, + 293.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1964.0, + 1091.0, + 1964.0, + 1091.0, + 2006.0, + 813.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1964.0, + 1408.0, + 1964.0, + 1408.0, + 2006.0, + 1152.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1995.0, + 410.0, + 1995.0, + 410.0, + 2042.0, + 292.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1995.0, + 790.0, + 1995.0, + 790.0, + 2042.0, + 481.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1110.0, + 437.0, + 1110.0, + 437.0, + 1155.0, + 293.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1110.0, + 991.0, + 1110.0, + 991.0, + 1155.0, + 495.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 916.0, + 987.0, + 916.0, + 987.0, + 973.0, + 290.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 916.0, + 1098.0, + 916.0, + 1098.0, + 973.0, + 1048.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 916.0, + 1341.0, + 916.0, + 1341.0, + 973.0, + 1169.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1381.0, + 916.0, + 1396.0, + 916.0, + 1396.0, + 973.0, + 1381.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 754.0, + 423.0, + 754.0, + 423.0, + 794.0, + 294.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 463.0, + 412.0, + 463.0, + 412.0, + 509.0, + 293.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 463.0, + 683.0, + 463.0, + 683.0, + 509.0, + 483.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 221.0, + 463.0, + 221.0, + 463.0, + 271.0, + 291.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 221.0, + 613.0, + 221.0, + 613.0, + 271.0, + 520.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 221.0, + 729.0, + 221.0, + 729.0, + 271.0, + 675.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 221.0, + 987.0, + 221.0, + 987.0, + 271.0, + 800.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 221.0, + 1146.0, + 221.0, + 1146.0, + 271.0, + 1049.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 221.0, + 1359.0, + 221.0, + 1359.0, + 271.0, + 1254.0, + 271.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1468, + 1406, + 1468, + 1406, + 1689, + 295, + 1689 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1032, + 1406, + 1032, + 1406, + 1143, + 296, + 1143 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 332, + 1793, + 1376, + 1793, + 1376, + 2046, + 332, + 2046 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 296, + 1700, + 1400, + 1700, + 1400, + 1784, + 296, + 1784 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 295, + 428, + 1406, + 428, + 1406, + 768, + 295, + 768 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 299, + 869, + 1400, + 869, + 1400, + 939, + 299, + 939 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 299, + 780, + 1400, + 780, + 1400, + 858, + 299, + 858 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 298, + 974, + 613, + 974, + 613, + 1008, + 298, + 1008 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 293, + 1154, + 1401, + 1154, + 1401, + 1230, + 293, + 1230 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 298, + 220, + 1405, + 220, + 1405, + 297, + 298, + 297 + ], + "score": 0.918 + }, + { + "category_id": 8, + "poly": [ + 321, + 1241, + 1386, + 1241, + 1386, + 1425, + 321, + 1425 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1423, + 1401, + 1423, + 1401, + 1452, + 1351, + 1452 + ], + "score": 0.87 + }, + { + "category_id": 8, + "poly": [ + 304, + 354, + 1394, + 354, + 1394, + 420, + 304, + 420 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 865, + 2087, + 865, + 2113, + 835, + 2113 + ], + "score": 0.857 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1982, + 1402, + 1982, + 1402, + 2013, + 1351, + 2013 + ], + "score": 0.856 + }, + { + "category_id": 1, + "poly": [ + 297, + 311, + 873, + 311, + 873, + 345, + 297, + 345 + ], + "score": 0.764 + }, + { + "category_id": 14, + "poly": [ + 331, + 1790, + 1372, + 1790, + 1372, + 2049, + 331, + 2049 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\quad \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) ^ { \\top } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] } \\\\ & { = \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] } \\\\ & { = \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , i } \\mathbf { v } _ { t , i } ^ { \\top } \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1007, + 1705, + 1104, + 1705, + 1104, + 1744, + 1007, + 1744 + ], + "score": 0.93, + "latex": "\\textstyle { \\frac { 1 } { n } } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 499, + 1500, + 637, + 1500, + 637, + 1533, + 499, + 1533 + ], + "score": 0.93, + "latex": "\\dot { \\mathbf { V } _ { t } } \\in \\mathbb { R } ^ { d \\times d }" + }, + { + "category_id": 13, + "poly": [ + 547, + 1700, + 760, + 1700, + 760, + 1743, + 547, + 1743 + ], + "score": 0.93, + "latex": "\\sigma _ { 1 } ^ { ( n ) } \\geq \\cdots \\geq \\sigma _ { d } ^ { ( n ) }" + }, + { + "category_id": 13, + "poly": [ + 997, + 1468, + 1186, + 1468, + 1186, + 1505, + 997, + 1505 + ], + "score": 0.93, + "latex": "\\mathbf { X } _ { t } = \\mathbf { U } _ { t } \\mathbf { D } _ { t } \\mathbf { V } _ { t } ^ { \\top }" + }, + { + "category_id": 13, + "poly": [ + 920, + 669, + 1226, + 669, + 1226, + 715, + 920, + 715 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\left. ( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\right. _ { \\mathrm { o p } } ] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 297, + 1500, + 437, + 1500, + 437, + 1533, + 297, + 1533 + ], + "score": 0.92, + "latex": "\\mathbf { D } _ { t } \\in \\mathbb { R } ^ { n \\times d }" + }, + { + "category_id": 13, + "poly": [ + 931, + 530, + 1402, + 530, + 1402, + 574, + 931, + 574 + ], + "score": 0.92, + "latex": "\\mathbf { 0 } \\preceq \\mathbf { I } _ { d } - \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\preceq \\mathbf { I } _ { d }" + }, + { + "category_id": 13, + "poly": [ + 349, + 570, + 603, + 570, + 603, + 613, + 349, + 613 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\left. \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right. _ { \\mathrm { o p } } ] ~ < ~ \\infty" + }, + { + "category_id": 14, + "poly": [ + 320, + 1238, + 1380, + 1238, + 1380, + 1430, + 320, + 1430 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\quad \\mathbb { E } \\big [ \\big ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } \\cdot \\mathsf { r } } \\big ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } \\big ] } \\\\ & { = \\mathbb { E } \\left[ \\Big ( \\mathbf { I } _ { d } - \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\Big ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\left( \\mathbf { I } _ { d } - \\big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + n \\lambda \\mathbf { I } _ { d } \\big ) ^ { - 1 } \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } \\right) \\right] } \\\\ & { \\overset { ( i ) } { = } \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) ^ { \\top } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\left( \\mathbf { I } _ { d } - ( \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } + n \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } \\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 818, + 1561, + 917, + 1561, + 917, + 1594, + 818, + 1594 + ], + "score": 0.91, + "latex": "\\mathbf { Q } \\mathbf { X } _ { t } \\mathbf { P } ^ { \\top }" + }, + { + "category_id": 13, + "poly": [ + 409, + 612, + 786, + 612, + 786, + 667, + 409, + 667 + ], + "score": 0.91, + "latex": "\\mathbb { E } \\left[ \\big \\lVert ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } - \\mathrm { t r } } \\big \\rVert _ { \\mathrm { o p } } ^ { 2 } \\right] \\ < \\ \\infty" + }, + { + "category_id": 13, + "poly": [ + 297, + 1741, + 570, + 1741, + 570, + 1784, + 297, + 1784 + ], + "score": 0.91, + "latex": "\\mathrm { D i a g } ( n \\sigma _ { 1 } ^ { ( n ) } , \\dots , n \\sigma _ { d } ^ { ( n ) } )" + }, + { + "category_id": 13, + "poly": [ + 626, + 1156, + 690, + 1156, + 690, + 1195, + 626, + 1195 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1562, + 428, + 1562, + 428, + 1594, + 297, + 1594 + ], + "score": 0.91, + "latex": "\\mathbf { Q } \\in \\mathbb { \\bar { R } } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 1201, + 780, + 1406, + 780, + 1406, + 817, + 1201, + 817 + ], + "score": 0.91, + "latex": "R ^ { 2 } = \\mathbb { E } [ \\| \\mathbf { w } _ { 0 , \\star } -" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1705, + 1406, + 1705, + 1406, + 1743, + 1289, + 1743 + ], + "score": 0.91, + "latex": "\\mathbf { D } _ { t } ^ { \\top } \\mathbf { D } _ { t } =" + }, + { + "category_id": 13, + "poly": [ + 477, + 224, + 616, + 224, + 616, + 270, + 477, + 270 + ], + "score": 0.9, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { t r - v a l } \\} }" + }, + { + "category_id": 13, + "poly": [ + 481, + 1561, + 605, + 1561, + 605, + 1591, + 481, + 1591 + ], + "score": 0.9, + "latex": "\\mathbf { P } \\in \\mathbb { R } ^ { d \\times d }" + }, + { + "category_id": 14, + "poly": [ + 311, + 351, + 1385, + 351, + 1385, + 419, + 311, + 419 + ], + "score": 0.9, + "latex": "\\left. \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } } \\} } ( \\mathbf { w } _ { 1 } ) - \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } ( \\mathbf { w } _ { 2 } ) \\right. \\leq \\frac { 1 } { n } \\left. ( \\mathbf { M } _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\{ \\mathrm { t r - t r , t r { v a l } \\} } } \\right. _ { \\mathrm { o p } } \\left. \\mathbf { w } _ { 1 } - \\mathbf { w } _ { 2 } \\right. ," + }, + { + "category_id": 13, + "poly": [ + 356, + 1592, + 701, + 1592, + 701, + 1627, + 356, + 1627 + ], + "score": 0.9, + "latex": "\\mathbf { Q } \\mathbf { X } _ { t } \\mathbf { P } ^ { \\top } = ( \\mathbf { Q } \\mathbf { U } _ { t } ) \\mathbf { D } _ { t } ( \\mathbf { P } \\mathbf { V } _ { t } ) ^ { \\top }" + }, + { + "category_id": 13, + "poly": [ + 891, + 1104, + 1104, + 1104, + 1104, + 1144, + 891, + 1144 + ], + "score": 0.9, + "latex": "\\mathrm { C o v } [ \\nabla \\ell _ { t } ^ { \\mathrm { \\{ t r - t r , t r - v a l \\} } } ]" + }, + { + "category_id": 13, + "poly": [ + 560, + 1652, + 624, + 1652, + 624, + 1683, + 560, + 1683 + ], + "score": 0.9, + "latex": "\\mathbb { R } ^ { d \\times d }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1471, + 1393, + 1471, + 1393, + 1502, + 1250, + 1502 + ], + "score": 0.89, + "latex": "\\mathbf { U } _ { t } \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 297, + 819, + 367, + 819, + 367, + 856, + 297, + 856 + ], + "score": 0.89, + "latex": "\\mathbf { w } _ { t } \\| ^ { 2 } \\|" + }, + { + "category_id": 13, + "poly": [ + 505, + 462, + 1005, + 462, + 1005, + 533, + 505, + 533 + ], + "score": 0.89, + "latex": "\\mathbb { E } \\left[ \\left. ( \\mathbf { M } _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { t r } , \\mathsf { t r } - \\mathsf { v a l } \\} } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { t r } , \\mathsf { t r } - \\mathsf { v a l } \\} } \\right. _ { \\mathrm { o p } } \\right] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 944, + 1502, + 982, + 1502, + 982, + 1533, + 944, + 1533 + ], + "score": 0.89, + "latex": "\\mathbf { U } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 476, + 814, + 842, + 814, + 842, + 857, + 476, + 857 + ], + "score": 0.89, + "latex": "\\mathbb { E } [ \\| \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r } - \\mathrm { t r } , \\mathrm { t r } - \\mathrm { v a l } \\} } ( \\mathbf { w } _ { 0 , \\star } ) \\| ^ { 2 } ] < \\infty ." + }, + { + "category_id": 13, + "poly": [ + 614, + 1063, + 1203, + 1063, + 1203, + 1104, + 614, + 1104 + ], + "score": 0.89, + "latex": "\\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } \\mathrm { C o v } \\big [ \\nabla \\ell _ { t } ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } \\big ] \\big \\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r } \\mathrm { - } \\mathrm { t r } , \\mathrm { t r } \\mathrm { - } \\mathsf { v a l } \\} } ." + }, + { + "category_id": 13, + "poly": [ + 299, + 1190, + 532, + 1190, + 532, + 1231, + 299, + 1231 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\frac { 1 } { n } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r - t r } } ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 727, + 1563, + 764, + 1563, + 764, + 1593, + 727, + 1593 + ], + "score": 0.88, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1503, + 1373, + 1503, + 1373, + 1533, + 1336, + 1533 + ], + "score": 0.88, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 439, + 1654, + 508, + 1654, + 508, + 1683, + 439, + 1683 + ], + "score": 0.88, + "latex": "\\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 680, + 574, + 718, + 574, + 718, + 605, + 680, + 605 + ], + "score": 0.88, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1503, + 1073, + 1503, + 1073, + 1533, + 1035, + 1533 + ], + "score": 0.87, + "latex": "\\mathbf { V } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1259, + 622, + 1404, + 622, + 1404, + 656, + 1259, + 656 + ], + "score": 0.87, + "latex": "\\mathrm { ~ { ~ \\bf ~ 0 ~ } ~ } \\preceq \\mathrm { ~ \\bf ~ I } _ { d } \\mathrm { ~ - ~ }" + }, + { + "category_id": 13, + "poly": [ + 298, + 904, + 522, + 904, + 522, + 936, + 298, + 936 + ], + "score": 0.86, + "latex": "\\nabla ^ { 2 } L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} } \\succ \\mathbf { 0 }" + }, + { + "category_id": 13, + "poly": [ + 515, + 1472, + 547, + 1472, + 547, + 1503, + 515, + 1503 + ], + "score": 0.84, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 637, + 436, + 669, + 436, + 669, + 462, + 637, + 462 + ], + "score": 0.83, + "latex": "n _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 946, + 871, + 1082, + 871, + 1082, + 903, + 946, + 903 + ], + "score": 0.83, + "latex": "L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }" + }, + { + "category_id": 13, + "poly": [ + 651, + 1106, + 839, + 1106, + 839, + 1138, + 651, + 1138 + ], + "score": 0.81, + "latex": "\\nabla ^ { - 2 } L ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }" + }, + { + "category_id": 13, + "poly": [ + 371, + 437, + 391, + 437, + 391, + 459, + 371, + 459 + ], + "score": 0.78, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 296, + 713, + 669, + 713, + 669, + 769, + 296, + 769 + ], + "score": 0.76, + "latex": "\\mathbb { E } \\left[ \\left. ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } \\right. _ { \\mathrm { o p } } ^ { 2 } \\right] < \\infty ." + }, + { + "category_id": 13, + "poly": [ + 298, + 668, + 867, + 668, + 867, + 710, + 298, + 710 + ], + "score": 0.75, + "latex": "\\left( ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } + n \\lambda \\mathbf { I } _ { d } \\right) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } \\preceq \\mathbf { I } _ { d }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 973.0, + 616.0, + 973.0, + 616.0, + 1010.0, + 295.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1463.0, + 514.0, + 1463.0, + 514.0, + 1509.0, + 289.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1463.0, + 996.0, + 1463.0, + 996.0, + 1509.0, + 548.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1463.0, + 1249.0, + 1463.0, + 1249.0, + 1509.0, + 1187.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1463.0, + 1407.0, + 1463.0, + 1407.0, + 1509.0, + 1394.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1493.0, + 296.0, + 1493.0, + 296.0, + 1540.0, + 290.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1493.0, + 498.0, + 1493.0, + 498.0, + 1540.0, + 438.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1493.0, + 943.0, + 1493.0, + 943.0, + 1540.0, + 638.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1493.0, + 1034.0, + 1493.0, + 1034.0, + 1540.0, + 983.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 1493.0, + 1335.0, + 1493.0, + 1335.0, + 1540.0, + 1074.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1493.0, + 1409.0, + 1493.0, + 1409.0, + 1540.0, + 1374.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1531.0, + 1406.0, + 1531.0, + 1406.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1555.0, + 296.0, + 1555.0, + 296.0, + 1601.0, + 290.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1555.0, + 480.0, + 1555.0, + 480.0, + 1601.0, + 429.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1555.0, + 726.0, + 1555.0, + 726.0, + 1601.0, + 606.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1555.0, + 817.0, + 1555.0, + 817.0, + 1601.0, + 765.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1555.0, + 1409.0, + 1555.0, + 1409.0, + 1601.0, + 918.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1589.0, + 355.0, + 1589.0, + 355.0, + 1631.0, + 292.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1589.0, + 1407.0, + 1589.0, + 1407.0, + 1631.0, + 702.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1620.0, + 1406.0, + 1620.0, + 1406.0, + 1663.0, + 292.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1642.0, + 438.0, + 1642.0, + 438.0, + 1695.0, + 289.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1642.0, + 559.0, + 1642.0, + 559.0, + 1695.0, + 509.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1642.0, + 794.0, + 1642.0, + 794.0, + 1695.0, + 625.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1031.0, + 1404.0, + 1031.0, + 1404.0, + 1068.0, + 295.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1055.0, + 613.0, + 1055.0, + 613.0, + 1113.0, + 289.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1055.0, + 1411.0, + 1055.0, + 1411.0, + 1113.0, + 1204.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.75, + 1096.5, + 1120.75, + 1096.5, + 1120.75, + 1150.5, + 288.75, + 1150.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1685.0, + 546.0, + 1685.0, + 546.0, + 1761.0, + 283.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1685.0, + 1006.0, + 1685.0, + 1006.0, + 1761.0, + 761.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1685.0, + 1288.0, + 1685.0, + 1288.0, + 1761.0, + 1105.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1407.0, + 1685.0, + 1415.0, + 1685.0, + 1415.0, + 1761.0, + 1407.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1735.0, + 946.0, + 1735.0, + 946.0, + 1793.5, + 512.0, + 1793.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 1731.5, + 455.0, + 1731.5, + 455.0, + 1798.5, + 280.0, + 1798.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1749.5, + 548.0, + 1749.5, + 548.0, + 1787.5, + 487.0, + 1787.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1766.0, + 456.0, + 1766.0, + 456.0, + 1780.0, + 430.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 427.0, + 370.0, + 427.0, + 370.0, + 469.0, + 295.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 427.0, + 636.0, + 427.0, + 636.0, + 469.0, + 392.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 427.0, + 1402.0, + 427.0, + 1402.0, + 469.0, + 670.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 459.0, + 504.0, + 459.0, + 504.0, + 529.0, + 293.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 478.0, + 1403.0, + 478.0, + 1403.0, + 518.0, + 1006.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 532.0, + 930.0, + 532.0, + 930.0, + 575.0, + 292.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 532.0, + 1407.0, + 532.0, + 1407.0, + 575.0, + 1403.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 569.0, + 348.0, + 569.0, + 348.0, + 616.0, + 294.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 569.0, + 679.0, + 569.0, + 679.0, + 616.0, + 604.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 569.0, + 1406.0, + 569.0, + 1406.0, + 616.0, + 719.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 608.0, + 408.0, + 608.0, + 408.0, + 668.0, + 289.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 608.0, + 1258.0, + 608.0, + 1258.0, + 668.0, + 787.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 297.0, + 660.0, + 297.0, + 718.0, + 294.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 660.0, + 919.0, + 660.0, + 919.0, + 718.0, + 868.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 660.0, + 1407.0, + 660.0, + 1407.0, + 718.0, + 1227.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 704.0, + 295.0, + 704.0, + 295.0, + 780.0, + 285.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 704.0, + 689.0, + 704.0, + 689.0, + 780.0, + 670.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 864.0, + 945.0, + 864.0, + 945.0, + 911.0, + 290.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 864.0, + 1407.0, + 864.0, + 1407.0, + 911.0, + 1083.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 895.0, + 297.0, + 895.0, + 297.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 895.0, + 536.0, + 895.0, + 536.0, + 944.0, + 523.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 773.0, + 1200.0, + 773.0, + 1200.0, + 822.0, + 293.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 800.0, + 296.0, + 800.0, + 296.0, + 869.0, + 288.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 800.0, + 475.0, + 800.0, + 475.0, + 869.0, + 368.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 800.0, + 861.0, + 800.0, + 861.0, + 869.0, + 843.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1148.0, + 625.0, + 1148.0, + 625.0, + 1200.0, + 290.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1148.0, + 1407.0, + 1148.0, + 1407.0, + 1200.0, + 691.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1185.0, + 298.0, + 1185.0, + 298.0, + 1234.0, + 292.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1185.0, + 546.0, + 1185.0, + 546.0, + 1234.0, + 533.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 201.0, + 476.0, + 201.0, + 476.0, + 287.0, + 289.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 263.0, + 458.0, + 263.0, + 458.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 219.5, + 1408.0, + 219.5, + 1408.0, + 271.5, + 489.0, + 271.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 310.0, + 876.0, + 310.0, + 876.0, + 347.0, + 296.0, + 347.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 400, + 1191, + 1304, + 1191, + 1304, + 1471, + 400, + 1471 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 396, + 1561, + 1309, + 1561, + 1309, + 1941, + 396, + 1941 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 448, + 495, + 1253, + 495, + 1253, + 948, + 448, + 948 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 569, + 1012, + 1126, + 1012, + 1126, + 1108, + 569, + 1108 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 297, + 1483, + 1404, + 1483, + 1404, + 1547, + 297, + 1547 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1403, + 228, + 1403, + 325, + 295, + 325 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 296, + 1136, + 1216, + 1136, + 1216, + 1178, + 296, + 1178 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 298, + 960, + 808, + 960, + 808, + 996, + 298, + 996 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 298, + 1951, + 654, + 1951, + 654, + 1985, + 298, + 1985 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1043, + 1402, + 1043, + 1402, + 1075, + 1350, + 1075 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 297, + 446, + 1237, + 446, + 1237, + 482, + 297, + 482 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1350, + 883, + 1401, + 883, + 1401, + 915, + 1350, + 915 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1406, + 1401, + 1406, + 1401, + 1438, + 1351, + 1438 + ], + "score": 0.88 + }, + { + "category_id": 1, + "poly": [ + 374, + 1999, + 590, + 1999, + 590, + 2038, + 374, + 2038 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1877, + 1401, + 1877, + 1401, + 1908, + 1350, + 1908 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 299, + 341, + 1391, + 341, + 1391, + 433, + 299, + 433 + ], + "score": 0.867 + }, + { + "category_id": 14, + "poly": [ + 391, + 1559, + 1308, + 1559, + 1308, + 1945, + 391, + 1945 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\quad \\mathrm { A s y m C o v } ( \\widetilde { \\mathbf { w } } _ { 0 , T } ^ { t \\star \\star r } ) } \\\\ & { = \\mathbb { E } [ \\nabla ^ { - 2 } \\ell _ { t } ^ { t \\star r } ] \\mathrm { C o v } [ \\nabla \\ell _ { t } ^ { \\mathrm { r r } + t } ( \\mathbf { w } _ { 0 , \\star } ) ] \\mathbb { E } [ \\nabla ^ { - 2 } \\ell _ { t } ^ { \\mathrm { t r } \\star r } ] } \\\\ & { = \\displaystyle \\frac { d ^ { 2 } } { n ^ { 2 } } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \\right] \\right) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathbb { E } \\left[ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\displaystyle \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } \\right. } \\\\ & { \\quad \\left. \\cdot \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\displaystyle \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\right] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 448, + 495, + 1252, + 495, + 1252, + 950, + 448, + 950 + ], + "score": 0.95, + "latex": "\\begin{array} { l } { { \\displaystyle { d \\mathbb { E } [ ( { \\bf M } _ { t } ^ { \\mathrm { t r u } } ) ^ { \\top } { \\bf M } _ { t } ^ { \\mathrm { t r u } } ; \\tau ] } } } \\\\ { { = \\displaystyle { \\sum _ { u \\ l p \\ r m u t a \\ n e : \\tau } \\mathbb { E } \\left[ \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\alpha \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\sigma _ { i } ^ { u } ) } } \\mathbf { v } _ { t , \\tau _ { r } ( i ) } \\mathbf { v } _ { t , \\tau _ { r } ( i ) } ^ { \\top } \\right] } } } \\\\ { { = ( d - 1 ) ! ! \\mathbb { E } \\left[ \\displaystyle { \\sum _ { j = 1 } ^ { d } \\left[ \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\alpha \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\sigma _ { i } ^ { u } ) } } \\right] ^ { \\top } \\mathbf { v } _ { t , \\tau _ { t } ( j ) } \\mathbf { v } _ { t , j } ^ { \\top } } \\right] } } \\\\ { { = ( d - 1 ) ! \\mathbb { E } \\left[ \\displaystyle { \\nabla _ { t } \\mathrm { D i a g } \\left( \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { \\lambda + \\sigma _ { i } ^ { ( u ) } } } \\right) ^ { 2 } } \\cdots \\displaystyle { \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\lambda + \\sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \\right] \\mathbf { V } _ { t } ^ { \\top } } } \\\\ { { = ( d - 1 ) ! \\mathbb { E } \\left[ \\displaystyle { \\sum _ { j = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( u ) } } { ( \\lambda + \\sigma _ { i } ^ { ( u ) } ) ^ { 2 } } } \\mathbf { V } _ { t } \\mathbf { I } _ { t } \\mathbf { V } _ { t } ^ { \\top } \\right] } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 399, + 1191, + 1306, + 1191, + 1306, + 1474, + 399, + 1474 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad \\mathbb { E } [ \\nabla \\ell _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } ) ( \\nabla \\ell _ { t } ^ { \\mathrm { r t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } ) ) ^ { \\top } ] } \\\\ & { = \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } ( \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ] } \\\\ & { \\stackrel { ( i ) } { = } \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { V } _ { t } \\mathrm { D i a g } \\left( \\frac { n \\lambda ^ { 2 } \\sigma _ { 1 } ^ { ( n ) } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { n \\lambda ^ { 2 } \\sigma _ { d } ^ { ( n ) } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { V } _ { t } ^ { \\top } \\bigg ] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 571, + 1010, + 1129, + 1010, + 1129, + 1107, + 571, + 1107 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { t r } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { t r } } ] = \\frac { n } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } \\right] \\mathbf { I } _ { d } ." + }, + { + "category_id": 13, + "poly": [ + 694, + 259, + 820, + 259, + 820, + 290, + 694, + 290 + ], + "score": 0.92, + "latex": "\\mathbf { P } \\in \\mathbb { R } ^ { d \\times d }" + }, + { + "category_id": 13, + "poly": [ + 806, + 1138, + 1210, + 1138, + 1210, + 1177, + 806, + 1177 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\frac { 1 } { n ^ { 2 } } \\mathbb { E } \\big [ \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } \\big ( \\mathbf { w } _ { 0 , \\star } \\big ) \\big ( \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } \\big ( \\mathbf { w } _ { 0 , \\star } \\big ) \\big ) ^ { \\top } \\big ] , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 846, + 292, + 904, + 292, + 904, + 322, + 846, + 322 + ], + "score": 0.9, + "latex": "\\mathbf { V } _ { t } \\mathbf { P }" + }, + { + "category_id": 13, + "poly": [ + 404, + 962, + 492, + 962, + 492, + 996, + 404, + 996 + ], + "score": 0.89, + "latex": "( d - 1 ) !" + }, + { + "category_id": 13, + "poly": [ + 768, + 1515, + 828, + 1515, + 828, + 1543, + 768, + 1543 + ], + "score": 0.89, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 262, + 1250, + 262, + 1250, + 292, + 1190, + 292 + ], + "score": 0.89, + "latex": "\\mathbf { V } _ { t } \\mathbf { P }" + }, + { + "category_id": 13, + "poly": [ + 635, + 1485, + 671, + 1485, + 671, + 1515, + 635, + 1515 + ], + "score": 0.89, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 461, + 293, + 498, + 293, + 498, + 322, + 461, + 322 + ], + "score": 0.88, + "latex": "\\mathbf { V } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 231, + 1276, + 231, + 1276, + 261, + 1238, + 261 + ], + "score": 0.88, + "latex": "\\mathbf { V } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 683, + 232, + 719, + 232, + 719, + 261, + 683, + 261 + ], + "score": 0.87, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 960, + 450, + 984, + 450, + 984, + 476, + 960, + 476 + ], + "score": 0.81, + "latex": "d !" + }, + { + "category_id": 13, + "poly": [ + 694, + 449, + 719, + 449, + 719, + 476, + 694, + 476 + ], + "score": 0.8, + "latex": "\\mathbf { P }" + }, + { + "category_id": 13, + "poly": [ + 411, + 1485, + 443, + 1485, + 443, + 1517, + 411, + 1517 + ], + "score": 0.79, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 1188, + 373, + 1201, + 373, + 1201, + 398, + 1188, + 398 + ], + "score": 0.69, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1358, + 371, + 1383, + 371, + 1383, + 398, + 1358, + 398 + ], + "score": 0.65, + "latex": "\\mathbf { P }" + }, + { + "category_id": 13, + "poly": [ + 781, + 370, + 840, + 370, + 840, + 406, + 781, + 406 + ], + "score": 0.61, + "latex": "\\tau _ { p } ( i )" + }, + { + "category_id": 13, + "poly": [ + 307, + 339, + 715, + 339, + 715, + 434, + 307, + 434 + ], + "score": 0.51, + "latex": "\\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } ^ { \\top } \\right]" + }, + { + "category_id": 14, + "poly": [ + 305, + 338, + 1349, + 338, + 1349, + 436, + 305, + 436 + ], + "score": 0.27, + "latex": "\\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\frac { n \\lambda ^ { 2 } \\sigma _ { i } ^ { ( n ) } } { ( \\sigma _ { i } ^ { ( n ) } + \\lambda ) ^ { 2 } } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } \\mathbf { v } _ { t , \\tau _ { p } ( i ) } ^ { \\top } \\right] \\mathrm { w i t h } \\tau _ { p } ( i ) \\mathrm { d e n o t e s ~ t h e ~ p e r m u t a t i o n ~ o f ~ t h e ~ } i \\mathrm { \\cdot t h ~ e l e m e n t ~ i n ~ } \\tau _ { p } ( i ) \\mathrm { d e n s ~ } \\tau _ { p } ( i ) \\mathrm { d e n s ~ } \\tau _ { p } ( i ) ." + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1483.0, + 410.0, + 1483.0, + 410.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1483.0, + 634.0, + 1483.0, + 634.0, + 1519.0, + 444.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1483.0, + 1404.0, + 1483.0, + 1404.0, + 1519.0, + 672.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1509.0, + 767.0, + 1509.0, + 767.0, + 1550.0, + 291.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1509.0, + 867.0, + 1509.0, + 867.0, + 1550.0, + 829.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 682.0, + 228.0, + 682.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 228.0, + 1237.0, + 228.0, + 1237.0, + 263.0, + 720.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 263.0, + 1277.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 253.0, + 693.0, + 253.0, + 693.0, + 299.0, + 292.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 253.0, + 1189.0, + 253.0, + 1189.0, + 299.0, + 821.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 253.0, + 1409.0, + 253.0, + 1409.0, + 299.0, + 1251.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 293.0, + 460.0, + 293.0, + 460.0, + 323.0, + 297.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 293.0, + 845.0, + 293.0, + 845.0, + 323.0, + 499.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 293.0, + 1072.0, + 293.0, + 1072.0, + 323.0, + 905.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1135.0, + 805.0, + 1135.0, + 805.0, + 1181.0, + 291.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1135.0, + 1219.0, + 1135.0, + 1219.0, + 1181.0, + 1211.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 959.0, + 403.0, + 959.0, + 403.0, + 999.0, + 296.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 959.0, + 810.0, + 959.0, + 810.0, + 999.0, + 493.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1950.0, + 654.0, + 1950.0, + 654.0, + 1987.0, + 296.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 445.0, + 693.0, + 445.0, + 693.0, + 485.0, + 296.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 445.0, + 959.0, + 445.0, + 959.0, + 485.0, + 720.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 445.0, + 1238.0, + 445.0, + 1238.0, + 485.0, + 985.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1995.0, + 594.0, + 1995.0, + 594.0, + 2047.0, + 368.0, + 2047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 365.0, + 1357.0, + 365.0, + 1357.0, + 404.0, + 1350.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1384.0, + 365.0, + 1395.0, + 365.0, + 1395.0, + 404.0, + 1384.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 334.0, + 526.0, + 334.0, + 526.0, + 398.0, + 393.0, + 398.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 339, + 222, + 1361, + 222, + 1361, + 917, + 339, + 917 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 412, + 1738, + 1292, + 1738, + 1292, + 1992, + 412, + 1992 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 397, + 1132, + 1301, + 1132, + 1301, + 1551, + 397, + 1551 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 1043, + 1402, + 1043, + 1402, + 1119, + 297, + 1119 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 297, + 1561, + 1400, + 1561, + 1400, + 1630, + 297, + 1630 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 298, + 1642, + 1404, + 1642, + 1404, + 1730, + 298, + 1730 + ], + "score": 0.931 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 106, + 296, + 106 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 295, + 2001, + 1400, + 2001, + 1400, + 2038, + 295, + 2038 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1351, + 834, + 1402, + 834, + 1402, + 867, + 1351, + 867 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1927, + 1401, + 1927, + 1401, + 1959, + 1351, + 1959 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 866, + 2087, + 866, + 2113, + 836, + 2113 + ], + "score": 0.87 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1503, + 1401, + 1503, + 1401, + 1537, + 1352, + 1537 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 296, + 961, + 988, + 961, + 988, + 1030, + 296, + 1030 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 303, + 925, + 1398, + 925, + 1398, + 960, + 303, + 960 + ], + "score": 0.54 + }, + { + "category_id": 14, + "poly": [ + 390, + 1135, + 1307, + 1135, + 1307, + 1552, + 390, + 1552 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathrm { t r a i n } } ] } \\\\ & { = \\mathbb { E } \\Bigg [ ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s a } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { s a } } } \\\\ & { \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) \\Bigg ] } \\\\ & { \\stackrel { ( i ) } { = } n _ { 2 } \\mathbb { E } \\Bigg [ ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } ) \\Bigg ] } \\\\ & \\qquad \\cdot ( \\mathbf { I } _ { d } - ( ( \\mathbf { X } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } + n _ \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 412, + 1738, + 1295, + 1738, + 1295, + 1995, + 412, + 1995 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad n _ { 2 } \\mathbb { E } \\left[ \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } \\left( \\mathbf { I } _ { d } - ( ( \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } + n _ { 1 } \\lambda \\mathbf { I } _ { d } ) ^ { - 1 } ( \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathrm { t r a i n } } \\right) ^ { 2 } ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\right] } \\\\ & { \\stackrel { ( i ) } { = } n _ { 2 } \\mathbb { E } \\left[ \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } \\right] } \\\\ & { \\stackrel { ( i i ) } { = } \\frac { n _ { 2 } } { d } \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \\right] \\mathbf { I } _ { d } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 338, + 224, + 1364, + 224, + 1364, + 909, + 338, + 909 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\quad _ { 1 } - ( \\cdot _ { 2 } + \\kappa _ { 3 } \\alpha ) \\alpha ( \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } ) ^ { 2 } } \\\\ & { = \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad - \\kappa ( \\kappa [ \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) \\kappa _ { 1 } ( \\frac { \\rho _ { 1 } ^ { \\varDelta } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\le \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\le \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & { \\quad \\quad \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) ] ^ { 2 } ) ^ { 2 } } \\\\ & \\quad - \\frac { \\alpha ^ { 2 } } { \\beta ^ { 2 } } ( \\kappa [ \\frac { \\delta } { 1 - \\alpha } ( \\frac { \\kappa _ { 1 } ( \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } { ( \\lambda + \\rho _ { 1 } ^ { \\varDelta } ) ^ { 2 } } ) \\kappa _ { 1 } ( \\mathrm { l o g } _ { \\varepsilon } - \\mathrm \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 489, + 1642, + 744, + 1642, + 744, + 1685, + 489, + 1685 + ], + "score": 0.92, + "latex": "\\sigma _ { 1 } ^ { ( n _ { 1 } ) } \\geq \\cdots \\geq \\sigma _ { d } ^ { ( n _ { 1 } ) }" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1646, + 1206, + 1646, + 1206, + 1691, + 1003, + 1691 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\frac { 1 } { n _ { 1 } } ( { \\bf X } _ { t } ^ { \\sf t r a i n } ) ^ { \\top } { \\bf X } _ { t } ^ { \\sf t r a i n } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 830, + 1563, + 1104, + 1563, + 1104, + 1598, + 830, + 1598 + ], + "score": 0.91, + "latex": "\\mathbb { E } [ ( \\mathbf { X } _ { t } ^ { \\mathsf { v a l } } ) ^ { \\top } \\mathbf { X } _ { t . } ^ { \\mathsf { v a l } } ] = n _ { 2 } \\mathbf { I } _ { d }" + }, + { + "category_id": 13, + "poly": [ + 490, + 1594, + 542, + 1594, + 542, + 1629, + 490, + 1629 + ], + "score": 0.9, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1079, + 759, + 1079, + 759, + 1123, + 297, + 1123 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ \\nabla ^ { 2 } \\ell _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ] = \\frac { 1 } { n _ { 2 } } \\mathbb { E } [ ( \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\mathsf { t r } - \\mathsf { v a l } } ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 296, + 1687, + 826, + 1687, + 826, + 1730, + 296, + 1730 + ], + "score": 0.88, + "latex": "( \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top } \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } = \\mathrm { D i a g } ( n _ { 1 } \\sigma _ { 1 } ^ { ( n _ { 1 } ) } , \\ldots , n _ { 1 } \\sigma _ { d } ^ { ( n _ { 1 } ) } )" + }, + { + "category_id": 13, + "poly": [ + 952, + 928, + 988, + 928, + 988, + 957, + 952, + 957 + ], + "score": 0.88, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 447, + 957, + 984, + 957, + 984, + 1031, + 447, + 1031 + ], + "score": 0.87, + "latex": "\\begin{array} { r l r } & { } & { \\left[ { \\bf V } _ { t } \\mathrm { D i a g } \\left( \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { 1 } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 4 } } , \\dots , \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { d } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 4 } } \\right) { \\bf V } _ { t } ^ { \\top } \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 632, + 1043, + 706, + 1043, + 706, + 1081, + 632, + 1081 + ], + "score": 0.86, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 861, + 932, + 897, + 932, + 897, + 957, + 861, + 957 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 978, + 2003, + 1019, + 2003, + 1019, + 2036, + 978, + 2036 + ], + "score": 0.85, + "latex": "( i i )" + }, + { + "category_id": 13, + "poly": [ + 375, + 1565, + 407, + 1565, + 407, + 1597, + 375, + 1597 + ], + "score": 0.84, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 932, + 1595, + 1273, + 1595, + 1273, + 1630, + 932, + 1630 + ], + "score": 0.83, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } = \\mathbf { U } _ { t } ^ { \\mathsf { t r a i n } } \\mathbf { D } _ { t } ^ { \\mathsf { t r a i n } } ( \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } } ) ^ { \\top }" + }, + { + "category_id": 13, + "poly": [ + 355, + 2002, + 387, + 2002, + 387, + 2036, + 355, + 2036 + ], + "score": 0.82, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 371, + 1597, + 438, + 1597, + 438, + 1629, + 371, + 1629 + ], + "score": 0.8, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 429, + 926, + 461, + 926, + 461, + 959, + 429, + 959 + ], + "score": 0.77, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 601, + 1596, + 643, + 1596, + 643, + 1629, + 601, + 1629 + ], + "score": 0.76, + "latex": "( i i )" + }, + { + "category_id": 14, + "poly": [ + 443, + 957, + 987, + 957, + 987, + 1031, + 443, + 1031 + ], + "score": 0.49, + "latex": "\\begin{array} { r l r } & { } & { \\tilde { \\mathrm { ~ \\cal ~ I ~ } } \\left[ { \\bf V } _ { t } \\mathrm { D i a g } \\left( \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { 1 } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n ) } + \\lambda ) ^ { 4 } } , \\dots , \\frac { n ^ { 2 } \\lambda ^ { 4 } ( \\sigma _ { d } ^ { ( n ) } ) ^ { 2 } } { ( \\sigma _ { d } ^ { ( n ) } + \\lambda ) ^ { 4 } } \\right) { \\bf V } _ { t } ^ { \\top } \\right] . } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1027.0, + 631.0, + 1027.0, + 631.0, + 1097.0, + 286.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1027.0, + 723.0, + 1027.0, + 723.0, + 1097.0, + 707.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1040.0, + 1404.0, + 1040.0, + 1404.0, + 1080.0, + 740.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1071.0, + 821.0, + 1071.0, + 821.0, + 1124.0, + 760.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1556.0, + 374.0, + 1556.0, + 374.0, + 1601.0, + 293.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1556.0, + 829.0, + 1556.0, + 829.0, + 1601.0, + 408.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1556.0, + 1404.0, + 1556.0, + 1404.0, + 1601.0, + 1105.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1582.0, + 370.0, + 1582.0, + 370.0, + 1640.0, + 288.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1582.0, + 489.0, + 1582.0, + 489.0, + 1640.0, + 439.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1582.0, + 600.0, + 1582.0, + 600.0, + 1640.0, + 543.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1582.0, + 931.0, + 1582.0, + 931.0, + 1640.0, + 644.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1631.0, + 295.0, + 1631.0, + 295.0, + 1741.0, + 288.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1631.0, + 1002.0, + 1631.0, + 1002.0, + 1741.0, + 827.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1631.0, + 1411.0, + 1631.0, + 1411.0, + 1741.0, + 1207.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.25, + 1681.5, + 1253.25, + 1681.5, + 1253.25, + 1737.5, + 755.25, + 1737.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1997.0, + 354.0, + 1997.0, + 354.0, + 2041.0, + 294.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1997.0, + 977.0, + 1997.0, + 977.0, + 2041.0, + 388.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1997.0, + 1405.0, + 1997.0, + 1405.0, + 2041.0, + 1020.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 947.0, + 442.0, + 947.0, + 442.0, + 1036.0, + 285.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 948.0, + 1004.0, + 948.0, + 1004.0, + 1029.5, + 897.0, + 1029.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 923.0, + 428.0, + 923.0, + 428.0, + 962.0, + 299.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 923.0, + 860.0, + 923.0, + 860.0, + 962.0, + 462.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 923.0, + 951.0, + 923.0, + 951.0, + 962.0, + 898.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 923.0, + 1404.0, + 923.0, + 1404.0, + 962.0, + 989.0, + 962.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 321, + 1478, + 1337, + 1478, + 1337, + 2047, + 321, + 2047 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 345, + 293, + 1358, + 293, + 1358, + 761, + 345, + 761 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 343, + 837, + 1359, + 837, + 1359, + 1409, + 343, + 1409 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 297, + 225, + 1218, + 225, + 1218, + 271, + 297, + 271 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 298, + 1426, + 654, + 1426, + 654, + 1459, + 298, + 1459 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 296, + 74, + 855, + 74, + 855, + 106, + 296, + 106 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 295, + 782, + 1277, + 782, + 1277, + 817, + 295, + 817 + ], + "score": 0.921 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1343, + 1402, + 1343, + 1402, + 1376, + 1350, + 1376 + ], + "score": 0.872 + }, + { + "category_id": 9, + "poly": [ + 1351, + 696, + 1402, + 696, + 1402, + 728, + 1351, + 728 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 867, + 2087, + 867, + 2114, + 834, + 2114 + ], + "score": 0.847 + }, + { + "category_id": 14, + "poly": [ + 318, + 1473, + 1340, + 1473, + 1340, + 2046, + 318, + 2046 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\quad \\mathrm { A s g n a l i t } \\ : \\ : \\mathrm { B e f f } _ { \\mathrm { e f f } } ^ { \\mathrm { o u t } , \\mathrm { p } } } \\\\ & { = \\mathrm { t } \\ : ( \\mathrm { A s g n a l i t y } \\ : ( \\mathrm { w } _ { \\mathrm { i g h } } ^ { \\mathrm { o u t } } ) ^ { \\mathrm { p } } ) } \\\\ & { = \\frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } ( \\mathbb { Z } [ \\displaystyle \\sum _ { i = 1 } ^ { n } \\frac { \\lambda } { ( \\lambda + \\alpha _ { \\mathrm { i f f f } } ^ { \\mathrm { o u t } } ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathrm { ~ t } \\Bigg ( \\mathbb { E } [ \\mathrm { v } _ { \\mathrm { i n } } ^ { \\mathrm { s t a n h } } \\mathrm { l i s k g } ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } } + \\lambda ^ { \\mathrm { ~ , ~ } \\dots , \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } } ) ( \\mathrm { v } _ { \\mathrm { i n } } ^ { \\mathrm { s t a n h } } ) ^ { \\mathrm { T } } ( \\mathrm { X } _ { \\mathrm { f } } ^ { \\mathrm { a d } } ) ^ { \\mathrm { T } } } \\\\ & { \\quad \\cdot \\mathrm { ~ X } _ { \\mathrm { i } } ^ { \\mathrm { o u t } } \\mathrm { Y } _ { \\mathrm { t } } ^ { \\mathrm { o u t } } \\mathrm { D i s k } \\Bigg ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } - \\lambda ^ { \\mathrm { ~ , ~ } \\dots , \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } } \\Bigg ) \\ : ( \\mathrm { Y } _ { \\mathrm { t } } ^ { \\mathrm { p r o n } } ) ^ { \\mathrm { T } } ( \\mathrm { w } _ { \\mathrm { e } _ { k } } - \\mathrm { w } _ { \\mathrm { i f } } ^ { \\mathrm { o u t } } | \\mathrm { w } _ { \\mathrm { i f } } , \\mathrm { ~ } - \\mathrm { w } _ { \\mathrm { i f } } ^ { \\mathrm { o u t } } ) ^ { \\mathrm { T } } } \\\\ & \\quad \\cdot \\mathrm ~ \\mathbb { V } _ { \\mathrm { t } } ^ { \\mathrm { e x i n } } \\mathrm { l i s k g } ( \\frac { \\lambda } { \\sigma _ { \\mathrm { i f f } } ^ { \\mathrm { o u t } } + 1 } - \\lambda ^ { \\mathrm { ~ , ~ } } \\frac \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 344, + 292, + 1362, + 292, + 1362, + 765, + 344, + 765 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad \\mathbb { E } | \\nabla \\xi ^ { t } \\mathbf { t } ^ { \\tau } \\mathbf { w } _ { 0 , k } | ( \\nabla \\xi _ { t } ^ { t \\tau } \\mathbf { w } _ { 0 , k } ) ^ { \\tau } | } \\\\ & { = \\mathbb { E } \\big [ ( \\mathbf { M } _ { t } ^ { \\tau , \\tau } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\tau , \\tau } \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } \\big ) ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ^ { \\top } ( \\mathbf { M } _ { t } ^ { \\tau , \\tau - \\tau } ) ^ { \\top } \\mathbf { M } _ { t } ^ { \\tau , \\tau + \\tau } \\big ] } \\\\ & { = \\mathbb { E } \\Bigg [ \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 0 } ^ { ( 1 ) } \\mathbf { 1 } ^ { \\tau + 1 } } \\lambda ^ { \\prime } \\cdots \\cdots \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) } \\mathbf { 1 } } \\Big ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { x } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } \\Gamma } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n ) } + \\lambda } \\cdots \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) + 1 } } \\Big ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , k } - \\mathbf { w } _ { t } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg [ \\displaystyle \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( 1 ) } + \\lambda } \\cdots \\cdots \\displaystyle \\frac { \\lambda } { \\sigma _ { d } ^ { ( n ) + 1 } + \\lambda } \\Bigg ) ( \\mathbf { V } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } ) ^ { \\top } } \\\\ & \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\tau \\wedge \\tau } \\mathrm { b l a g } \\Bigg ( \\displaystyle \\frac { \\lambda } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 336, + 835, + 1364, + 835, + 1364, + 1412, + 336, + 1412 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad \\mathrm { A s s u p ~ C o s s : } ( \\nabla _ { v _ { \\xi } } \\mathrm { a r } ) } \\\\ & { = \\mathbb { E } \\{ \\nabla _ { v _ { \\xi } } \\mathrm { a r } \\sin [ \\mathrm { C e } ( \\mathrm { B e } ( \\xi _ { v _ { \\xi } } \\cdots ) ) ] \\} } \\\\ & { = \\frac { d ^ { 2 } } { v _ { \\xi } ^ { 2 } } ( \\mathbb { E } [ \\frac { d } { \\sum _ { i = 1 } ^ { d } ( \\lambda + v _ { \\xi } ^ { ( n ) } \\cdots ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot \\mathbb { E } [ \\nabla _ { v _ { \\xi } } \\mathrm { a r n } \\mathrm { b i g h } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots ) ] \\cdot \\mathbf { V } _ { v _ { \\xi } } ^ { \\mathrm { a s s } } ) ^ { \\top } ( \\mathbf { X } _ { \\xi } ^ { \\mathrm { a d } } ) ^ { \\top } } \\\\ & { \\quad \\cdot \\mathbb { E } [ \\nabla _ { v _ { \\xi } } \\mathrm { a r n } \\mathrm { b i g h } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) ^ { 2 } } \\cdots ) \\cdot ( \\mathbf { V } _ { v _ { \\xi } } ^ { \\mathrm { a s s } } ) ^ { \\top } ( \\mathbf { W } _ { \\xi } - \\mathbf { w } _ { \\xi } ) | \\mathbf { \\Psi } ( \\mathbf { x } _ { \\xi } - \\mathbf { w } _ { \\xi } ) \\cdot \\mathbf { V } _ { v _ { \\xi } } ^ { \\top } } \\\\ & \\quad \\cdot \\mathbb { X } _ { v _ { \\xi } } ^ { \\mathrm { a r s t } } \\nabla _ { v _ { \\xi } } \\mathrm { a s } ( \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) } - \\frac { \\lambda } { \\sigma _ { \\xi } ^ { ( n + 1 ) } ( \\lambda + 1 ) } ) ( \\nabla _ { v _ { \\xi } } ^ { \\mathrm { a r s } } ) ^ { \\top } ( \\mathbf { w } _ { \\xi } - \\mathbf { w } _ { \\xi } ) \\cdot \\mathbf { V } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 805, + 227, + 1209, + 227, + 1209, + 274, + 805, + 274 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\frac { 1 } { n _ { 2 } ^ { 2 } } \\mathbb { E } [ \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) ( \\nabla \\ell _ { t } ^ { \\mathrm { t r - t r } } ( \\mathbf { w } _ { 0 , \\star } ) ) ^ { \\top } ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1174, + 782, + 1243, + 782, + 1243, + 812, + 1174, + 812 + ], + "score": 0.87, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 218.0, + 804.0, + 218.0, + 804.0, + 283.0, + 287.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 218.0, + 1223.0, + 218.0, + 1223.0, + 283.0, + 1210.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1425.0, + 654.0, + 1425.0, + 654.0, + 1461.0, + 296.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 775.0, + 1173.0, + 775.0, + 1173.0, + 822.0, + 293.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 775.0, + 1282.0, + 775.0, + 1282.0, + 822.0, + 1244.0, + 822.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1031, + 1405, + 1031, + 1405, + 1156, + 298, + 1156 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 381, + 1172, + 1314, + 1172, + 1314, + 1343, + 381, + 1343 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 526, + 1823, + 1167, + 1823, + 1167, + 2032, + 526, + 2032 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 326, + 219, + 1380, + 219, + 1380, + 608, + 326, + 608 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 438, + 734, + 1288, + 734, + 1288, + 1019, + 438, + 1019 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 478, + 1449, + 1218, + 1449, + 1218, + 1724, + 478, + 1724 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 295, + 1740, + 1402, + 1740, + 1402, + 1808, + 295, + 1808 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 296, + 653, + 1406, + 653, + 1406, + 718, + 296, + 718 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 295, + 1362, + 1401, + 1362, + 1401, + 1435, + 295, + 1435 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 106, + 296, + 106 + ], + "score": 0.929 + }, + { + "category_id": 9, + "poly": [ + 1350, + 602, + 1401, + 602, + 1401, + 633, + 1350, + 633 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1351, + 953, + 1401, + 953, + 1401, + 985, + 1351, + 985 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 863, + 2087, + 863, + 2113, + 834, + 2113 + ], + "score": 0.744 + }, + { + "category_id": 14, + "poly": [ + 435, + 734, + 1289, + 734, + 1289, + 1023, + 435, + 1023 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\mathbb { E } \\bigg [ { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda } , \\ldots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\ldots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } } \\\\ & { \\qquad \\cdot { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda } { \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda } , \\ldots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } \\right) ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } \\bigg ] } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 472, + 1451, + 1223, + 1451, + 1223, + 1729, + 472, + 1729 + ], + "score": 0.95, + "latex": "\\begin{array} { l } { { A _ { k , \\ell } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\sum _ { i } x _ { k , i } x _ { j , i } \\right) \\left( \\sum _ { i } x _ { j , i } x _ { \\ell , i } \\right) \\right) \\right] } } \\\\ { { \\mathrm { } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \\ell , n } \\right) \\right] } } \\\\ { { \\mathrm { } \\overset { ( i ) } { = } 0 , } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 524, + 1821, + 1170, + 1821, + 1170, + 2034, + 524, + 2034 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } & { } & { A _ { k , k } = \\mathbb E \\left[ \\displaystyle \\sum _ { j } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { j } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { j , m } x _ { j , n } x _ { \\ell , n } \\right) \\right] } \\\\ & { } & { = \\mathbb E \\left[ \\displaystyle \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { k } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\left( \\displaystyle \\sum _ { m , n } x _ { k , m } x _ { k , m } x _ { k , n } x _ { k , n } \\right) \\right] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 327, + 221, + 1380, + 221, + 1380, + 612, + 327, + 612 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\frac { ( i ) } { n _ { 2 } ^ { 2 } } ( { \\mathbb { E } } [ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n ) } ) ^ { 2 } } ] ) ^ { - 2 } } \\\\ & { \\quad \\cdot { \\operatorname { t r } } ( { \\mathbb { E } } [ \\displaystyle \\mathbf { V } _ { t } ^ { \\mathrm { r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda } { \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s } a } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s } a } ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } { \\mathrm { D i a g } } ( \\frac { \\lambda } { \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda } ) ( \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } ) ^ { \\top } ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\star } - \\mathbf { w } _ { t } ) ^ { \\top } ] ) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 380, + 1169, + 1319, + 1169, + 1319, + 1345, + 380, + 1345 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\mathbf { A } : = \\mathbb { E } _ { \\mathbf { X } _ { t } ^ { \\mathrm { s i n } } } \\bigg [ \\big ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\big ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) } \\\\ & { \\qquad \\cdot ( { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } ) ^ { \\top } ( { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } ) ^ { \\top } { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { \\mathbf { V } _ { t } ^ { \\mathrm { t r a i n } } } \\bigg ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1273, + 1370, + 1350, + 1370, + 1350, + 1403, + 1273, + 1403 + ], + "score": 0.92, + "latex": "k \\neq \\ell" + }, + { + "category_id": 13, + "poly": [ + 526, + 1366, + 967, + 1366, + 967, + 1404, + 526, + 1404 + ], + "score": 0.92, + "latex": "{ \\bf X } _ { t } ^ { \\mathsf { v a l } } { \\bf V } _ { t } ^ { \\mathsf { t r a i n } } = [ { \\bf x } _ { 1 } , \\ldots , { \\bf x } _ { n } ] ^ { \\top } \\in \\mathbb { R } ^ { n _ { 2 } \\times d }" + }, + { + "category_id": 13, + "poly": [ + 299, + 1401, + 360, + 1401, + 360, + 1435, + 299, + 1435 + ], + "score": 0.92, + "latex": "( k , \\ell )" + }, + { + "category_id": 13, + "poly": [ + 460, + 1403, + 512, + 1403, + 512, + 1435, + 460, + 1435 + ], + "score": 0.92, + "latex": "A _ { k , \\ell }" + }, + { + "category_id": 13, + "poly": [ + 1209, + 1776, + 1264, + 1776, + 1264, + 1808, + 1209, + 1808 + ], + "score": 0.91, + "latex": "A _ { k , k }" + }, + { + "category_id": 13, + "poly": [ + 687, + 1062, + 741, + 1062, + 741, + 1095, + 687, + 1095 + ], + "score": 0.9, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1062, + 951, + 1062, + 951, + 1095, + 881, + 1095 + ], + "score": 0.9, + "latex": "\\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1061, + 1355, + 1061, + 1355, + 1096, + 1236, + 1096 + ], + "score": 0.9, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 838, + 1773, + 1147, + 1773, + 1147, + 1808, + 838, + 1808 + ], + "score": 0.9, + "latex": "\\mathbf { A } = \\operatorname { D i a g } \\left( A _ { 1 , 1 } , \\ldots , A _ { d , d } \\right)" + }, + { + "category_id": 13, + "poly": [ + 565, + 1092, + 617, + 1092, + 617, + 1126, + 565, + 1126 + ], + "score": 0.89, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }" + }, + { + "category_id": 13, + "poly": [ + 535, + 1033, + 576, + 1033, + 576, + 1063, + 535, + 1063 + ], + "score": 0.89, + "latex": "c \\mathbf { I } _ { d }" + }, + { + "category_id": 13, + "poly": [ + 417, + 685, + 469, + 685, + 469, + 719, + 417, + 719 + ], + "score": 0.89, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }" + }, + { + "category_id": 13, + "poly": [ + 839, + 1094, + 875, + 1094, + 875, + 1124, + 839, + 1124 + ], + "score": 0.88, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1748, + 416, + 1748, + 416, + 1776, + 372, + 1776 + ], + "score": 0.87, + "latex": "x _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1749, + 1170, + 1749, + 1170, + 1775, + 1112, + 1775 + ], + "score": 0.87, + "latex": "x _ { k , m }" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1750, + 1253, + 1750, + 1253, + 1775, + 1204, + 1775 + ], + "score": 0.87, + "latex": "x _ { \\ell , n }" + }, + { + "category_id": 13, + "poly": [ + 726, + 1747, + 754, + 1747, + 754, + 1773, + 726, + 1773 + ], + "score": 0.85, + "latex": "\\mathbf { x } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1364, + 1204, + 1364, + 1204, + 1404, + 1106, + 1404 + ], + "score": 0.85, + "latex": "{ \\mathsf { N } } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 551, + 1745, + 567, + 1745, + 567, + 1775, + 551, + 1775 + ], + "score": 0.84, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 869, + 1743, + 901, + 1743, + 901, + 1775, + 869, + 1775 + ], + "score": 0.82, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 374, + 656, + 406, + 656, + 406, + 687, + 374, + 687 + ], + "score": 0.79, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 547, + 1405, + 574, + 1405, + 574, + 1429, + 547, + 1429 + ], + "score": 0.74, + "latex": "\\mathbf { A }" + }, + { + "category_id": 13, + "poly": [ + 297, + 686, + 366, + 686, + 366, + 719, + 297, + 719 + ], + "score": 0.74, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 1030, + 1369, + 1062, + 1369, + 1062, + 1402, + 1030, + 1402 + ], + "score": 0.71, + "latex": "\\mathbf { x } _ { i }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1025.0, + 534.0, + 1025.0, + 534.0, + 1070.0, + 291.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1025.0, + 1407.0, + 1025.0, + 1407.0, + 1070.0, + 577.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1055.0, + 686.0, + 1055.0, + 686.0, + 1098.0, + 289.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1055.0, + 880.0, + 1055.0, + 880.0, + 1098.0, + 742.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1055.0, + 1235.0, + 1055.0, + 1235.0, + 1098.0, + 952.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1055.0, + 1408.0, + 1055.0, + 1408.0, + 1098.0, + 1356.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1089.0, + 564.0, + 1089.0, + 564.0, + 1129.0, + 292.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1089.0, + 838.0, + 1089.0, + 838.0, + 1129.0, + 618.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1089.0, + 1406.0, + 1089.0, + 1406.0, + 1129.0, + 876.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1125.0, + 510.0, + 1125.0, + 510.0, + 1157.0, + 293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1739.0, + 371.0, + 1739.0, + 371.0, + 1781.0, + 295.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1739.0, + 550.0, + 1739.0, + 550.0, + 1781.0, + 417.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1739.0, + 725.0, + 1739.0, + 725.0, + 1781.0, + 568.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1739.0, + 868.0, + 1739.0, + 868.0, + 1781.0, + 755.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1739.0, + 1111.0, + 1739.0, + 1111.0, + 1781.0, + 902.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1739.0, + 1203.0, + 1739.0, + 1203.0, + 1781.0, + 1171.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1739.0, + 1404.0, + 1739.0, + 1404.0, + 1781.0, + 1254.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1770.0, + 837.0, + 1770.0, + 837.0, + 1811.0, + 294.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1770.0, + 1208.0, + 1770.0, + 1208.0, + 1811.0, + 1148.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1770.0, + 1338.0, + 1770.0, + 1338.0, + 1811.0, + 1265.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 373.0, + 652.0, + 373.0, + 692.0, + 294.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 652.0, + 1407.0, + 652.0, + 1407.0, + 692.0, + 407.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 674.0, + 296.0, + 674.0, + 296.0, + 731.0, + 288.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 674.0, + 416.0, + 674.0, + 416.0, + 731.0, + 367.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 674.0, + 644.0, + 674.0, + 644.0, + 731.0, + 470.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1354.0, + 525.0, + 1354.0, + 525.0, + 1412.0, + 288.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1354.0, + 1029.0, + 1354.0, + 1029.0, + 1412.0, + 968.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1354.0, + 1105.0, + 1354.0, + 1105.0, + 1412.0, + 1063.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1354.0, + 1272.0, + 1354.0, + 1272.0, + 1412.0, + 1205.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1354.0, + 1408.0, + 1354.0, + 1408.0, + 1412.0, + 1351.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 298.0, + 1397.0, + 298.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1397.0, + 459.0, + 1397.0, + 459.0, + 1436.0, + 361.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1397.0, + 546.0, + 1397.0, + 546.0, + 1436.0, + 513.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1397.0, + 607.0, + 1397.0, + 607.0, + 1436.0, + 575.0, + 1436.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 384, + 934, + 1317, + 934, + 1317, + 1401, + 384, + 1401 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 416, + 273, + 1287, + 273, + 1287, + 885, + 416, + 885 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 401, + 1938, + 948, + 1938, + 948, + 2047, + 401, + 2047 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 445, + 1449, + 1256, + 1449, + 1256, + 1574, + 445, + 1574 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 294, + 1865, + 1406, + 1865, + 1406, + 1931, + 294, + 1931 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1664, + 1396, + 1664, + 1396, + 1740, + 298, + 1740 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 298, + 1587, + 1399, + 1587, + 1399, + 1654, + 298, + 1654 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 296, + 223, + 1142, + 223, + 1142, + 267, + 296, + 267 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 106, + 296, + 106 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 298, + 892, + 1343, + 892, + 1343, + 926, + 298, + 926 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 297, + 1407, + 1287, + 1407, + 1287, + 1442, + 297, + 1442 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1494, + 1401, + 1494, + 1401, + 1526, + 1350, + 1526 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1800, + 1401, + 1800, + 1401, + 1831, + 1351, + 1831 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1754, + 1400, + 1754, + 1400, + 1785, + 1351, + 1785 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1339, + 1402, + 1339, + 1402, + 1370, + 1351, + 1370 + ], + "score": 0.842 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2114, + 834, + 2114 + ], + "score": 0.834 + }, + { + "category_id": 8, + "poly": [ + 615, + 1747, + 1086, + 1747, + 1086, + 1789, + 615, + 1789 + ], + "score": 0.724 + }, + { + "category_id": 8, + "poly": [ + 613, + 1794, + 894, + 1794, + 894, + 1838, + 613, + 1838 + ], + "score": 0.723 + }, + { + "category_id": 8, + "poly": [ + 611, + 1747, + 1089, + 1747, + 1089, + 1839, + 611, + 1839 + ], + "score": 0.332 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2114, + 834, + 2114 + ], + "score": 0.091 + }, + { + "category_id": 14, + "poly": [ + 376, + 933, + 1318, + 933, + 1318, + 1406, + 376, + 1406 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { c = \\cfrac { 1 } { d } \\mathrm { t r } ( \\mathbb { B } [ \\nabla _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda } { \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda } , \\cdots , \\cfrac { \\lambda } { \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { a b } } ) ^ { \\top } } \\\\ & { \\qquad \\times \\mathbf { X } _ { t } ^ { \\mathrm { s d } } \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { s d } } ) ^ { \\top } } \\\\ & { \\qquad \\times \\mathbf { X } _ { t } ^ { \\mathrm { s d } } \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda } { \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda } , \\cdots , \\cfrac { \\lambda } { \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ] ) } \\\\ & { = \\cfrac { 1 } { d } \\mathrm { t r } ( \\mathbb { B } [ \\mathbf { X } _ { t } ^ { \\mathrm { a i n } } \\mathrm { V } _ { t } ^ { \\mathrm { t x i n } } \\mathrm { D i a g } ( \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\cdots , \\cfrac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( m _ { 1 } ) } + \\lambda ) ^ { 2 } } ) ( \\mathrm { V } _ { t } ^ { \\mathrm { r a i n } } ) ^ { \\top } ( \\mathbf { X } _ { t } ^ { \\mathrm { a b } } ) ^ { \\top } } \\\\ & \\qquad \\times \\mathbf { X } _ { t } ^ \\mathrm s \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 445, + 1449, + 1250, + 1449, + 1250, + 1575, + 445, + 1575 + ], + "score": 0.94, + "latex": "c = \\frac { 1 } { d } \\mathbb { E } \\left[ \\left( \\sum _ { i , j = 1 } ^ { n _ { 2 } } \\mathbf { v } _ { i } ^ { \\top } \\mathrm { D i a g } \\left( \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { 1 } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } , \\dots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { d } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right) \\mathbf { v } _ { j } \\right) ^ { 2 } \\right] ," + }, + { + "category_id": 14, + "poly": [ + 414, + 274, + 1288, + 274, + 1288, + 844, + 414, + 844 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { a t a l p h i s g a } } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { a r s i n g } } ) ^ { - 1 } \\big ( \\mathbf { X } _ { t } ^ { \\mathrm { a r s i } } \\big ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { a p } } \\mathbf { V } _ { t } ^ { \\mathrm { a b l p h i s g } } \\bigg ( \\frac { \\lambda } { ( \\sigma _ { t } ^ { ( 1 ) } + \\lambda ) ^ { 2 } } , \\cdots , \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda ) ^ { 2 } } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { p a l p h } } ) ^ { \\top } \\big ( \\mathbf { X } _ { t } ^ { \\mathrm { a r s i } } \\big ) ^ { \\top } } \\\\ & { \\qquad \\cdot \\mathbf { X } _ { t } ^ { \\mathrm { a p } } \\mathbf { V } _ { t } ^ { \\mathrm { a p } } \\mathrm { P l a s i n g } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { p a r p } } ) ^ { \\top } \\bigg ] } \\\\ & { = \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { s a m p h i s g a } } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( k + 1 ) } + \\lambda } \\bigg ) \\ \\mathrm { D i s g } ( A _ { 1 , 1 } , \\ldots , A _ { t , \\mathrm { d } } ) } \\\\ & { \\qquad \\cdot \\mathrm { D i s g } \\bigg ( \\frac { \\lambda } { \\sigma _ { t } ^ { ( 1 ) } + \\lambda } , \\cdots , \\frac { \\lambda } { \\sigma _ { t } ^ { ( 2 ) ( 1 ) } + \\lambda } \\bigg ) \\ ( \\mathbf { V } _ { t } ^ { \\mathrm { a r p } } ) ^ { \\top } \\bigg ] } \\\\ & = \\mathbb { E } \\bigg [ \\mathbf { V } _ { t } ^ { \\mathrm { s a m p h } } ( \\frac { \\lambda } ( \\sigma _ { t } ^ { ( 1 ) } + \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 693, + 224, + 755, + 224, + 755, + 267, + 693, + 267 + ], + "score": 0.92, + "latex": "\\sigma _ { k } ^ { ( n _ { 1 } ) }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1583, + 534, + 1583, + 534, + 1624, + 372, + 1624 + ], + "score": 0.92, + "latex": "\\mathbf { v } _ { i } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )" + }, + { + "category_id": 13, + "poly": [ + 844, + 1869, + 893, + 1869, + 893, + 1902, + 844, + 1902 + ], + "score": 0.92, + "latex": "A _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 967, + 1868, + 1025, + 1868, + 1025, + 1901, + 967, + 1901 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 945, + 1592, + 1098, + 1592, + 1098, + 1622, + 945, + 1622 + ], + "score": 0.91, + "latex": "i = 1 , \\ldots , n _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 445, + 233, + 501, + 233, + 501, + 266, + 445, + 266 + ], + "score": 0.91, + "latex": "A _ { k , k }" + }, + { + "category_id": 13, + "poly": [ + 512, + 1407, + 739, + 1407, + 739, + 1443, + 512, + 1443 + ], + "score": 0.91, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } } \\mathbf { V } _ { t } ^ { \\mathsf { t r a i n } } \\in \\mathbb { R } ^ { n _ { 2 } \\times d }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1701, + 482, + 1701, + 482, + 1742, + 298, + 1742 + ], + "score": 0.91, + "latex": "\\mathbf { v } , \\mathbf { u } \\overset { \\mathrm { i i d } } { \\sim } \\mathsf { N } ( \\mathbf { 0 } , \\mathbf { I } _ { d } )" + }, + { + "category_id": 14, + "poly": [ + 611, + 1744, + 1090, + 1744, + 1090, + 1840, + 611, + 1840 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { v } ) ^ { 2 } \\right] = 2 \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } + \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) \\quad a n d } \\\\ & { \\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { u } ) ^ { 2 } \\right] = \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 746, + 1665, + 878, + 1665, + 878, + 1698, + 746, + 1698 + ], + "score": 0.91, + "latex": "\\textbf { A } \\in \\mathbb { R } ^ { d \\times d }" + }, + { + "category_id": 14, + "poly": [ + 402, + 1935, + 952, + 1935, + 952, + 2046, + 402, + 2046 + ], + "score": 0.86, + "latex": "\\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { v } ) ^ { 2 } \\right] = \\mathbb { E } \\left[ \\sum _ { i , j , k , \\ell \\leq d } v _ { i } v _ { j } v _ { k } v _ { \\ell } A _ { i , j } A _ { k , \\ell } \\right]" + }, + { + "category_id": 13, + "poly": [ + 1259, + 1872, + 1284, + 1872, + 1284, + 1898, + 1259, + 1898 + ], + "score": 0.85, + "latex": "v _ { i }" + }, + { + "category_id": 13, + "poly": [ + 469, + 894, + 501, + 894, + 501, + 927, + 469, + 927 + ], + "score": 0.81, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1871, + 1370, + 1871, + 1370, + 1894, + 1358, + 1894 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1294, + 900, + 1310, + 900, + 1310, + 921, + 1294, + 921 + ], + "score": 0.76, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1183, + 1869, + 1210, + 1869, + 1210, + 1896, + 1183, + 1896 + ], + "score": 0.59, + "latex": "\\mathbf { A }" + }, + { + "category_id": 13, + "poly": [ + 422, + 1904, + 442, + 1904, + 442, + 1926, + 422, + 1926 + ], + "score": 0.48, + "latex": "\\mathbf { v }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1866.0, + 843.0, + 1866.0, + 843.0, + 1902.0, + 296.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1866.0, + 966.0, + 1866.0, + 966.0, + 1902.0, + 894.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1866.0, + 1182.0, + 1866.0, + 1182.0, + 1902.0, + 1026.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1866.0, + 1258.0, + 1866.0, + 1258.0, + 1902.0, + 1211.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1866.0, + 1357.0, + 1866.0, + 1357.0, + 1902.0, + 1285.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 1866.0, + 1404.0, + 1866.0, + 1404.0, + 1902.0, + 1371.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1899.0, + 421.0, + 1899.0, + 421.0, + 1932.0, + 296.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1899.0, + 897.0, + 1899.0, + 897.0, + 1932.0, + 443.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1658.0, + 745.0, + 1658.0, + 745.0, + 1708.0, + 293.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1658.0, + 1406.0, + 1658.0, + 1406.0, + 1708.0, + 879.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1689.0, + 297.0, + 1689.0, + 297.0, + 1750.0, + 290.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1689.0, + 596.0, + 1689.0, + 596.0, + 1750.0, + 483.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1575.0, + 371.0, + 1575.0, + 371.0, + 1630.0, + 289.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1575.0, + 944.0, + 1575.0, + 944.0, + 1630.0, + 535.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1575.0, + 1409.0, + 1575.0, + 1409.0, + 1630.0, + 1099.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1619.0, + 524.0, + 1619.0, + 524.0, + 1653.0, + 296.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 206.0, + 444.0, + 206.0, + 444.0, + 290.0, + 284.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 206.0, + 692.0, + 206.0, + 692.0, + 290.0, + 502.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 206.0, + 1155.0, + 206.0, + 1155.0, + 290.0, + 756.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 890.0, + 468.0, + 890.0, + 468.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 890.0, + 1293.0, + 890.0, + 1293.0, + 929.0, + 502.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 890.0, + 1344.0, + 890.0, + 1344.0, + 929.0, + 1311.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1400.0, + 511.0, + 1400.0, + 511.0, + 1449.0, + 290.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1400.0, + 1292.0, + 1400.0, + 1292.0, + 1449.0, + 740.0, + 1449.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 442, + 751, + 1260, + 751, + 1260, + 1503, + 442, + 1503 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 565, + 215, + 1291, + 215, + 1291, + 534, + 565, + 534 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 417, + 1574, + 1283, + 1574, + 1283, + 1993, + 417, + 1993 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 504, + 585, + 1194, + 585, + 1194, + 632, + 504, + 632 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 297, + 704, + 865, + 704, + 865, + 738, + 297, + 738 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 2002, + 552, + 2002, + 552, + 2035, + 297, + 2035 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 297, + 542, + 857, + 542, + 857, + 577, + 297, + 577 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 106, + 296, + 106 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1434, + 1401, + 1434, + 1401, + 1466, + 1351, + 1466 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 1373, + 638, + 1405, + 638, + 1405, + 670, + 1373, + 670 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 1374, + 2003, + 1404, + 2003, + 1404, + 2033, + 1374, + 2033 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 296, + 1516, + 1373, + 1516, + 1373, + 1554, + 296, + 1554 + ], + "score": 0.711 + }, + { + "category_id": 14, + "poly": [ + 414, + 1570, + 1287, + 1570, + 1287, + 1998, + 414, + 1998 + ], + "score": 0.96, + "latex": "\\begin{array} { r l } & { \\quad \\mathrm { A s y n M N S E } ( \\widehat { \\mathbf { w } } _ { 0 , \\mathcal { T } } ^ { t , \\mathcal { T } } ) } \\\\ & { = \\displaystyle \\frac { d ^ { 2 } } { n _ { 2 } ^ { 2 } } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } } \\right] \\right) ^ { - 2 } } \\\\ & { \\qquad \\cdot \\displaystyle \\frac { n _ { 2 } } { d } \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\right] ^ { 2 } + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 4 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } } \\right] \\right) } \\\\ & { \\qquad \\cdot \\mathbb { E } \\left[ ( \\mathbf { w } _ { 0 , \\ast } - \\mathbf { w } _ { t } ) ( \\mathbf { w } _ { 0 , \\ast } - \\mathbf { w } _ { t } ) ^ { \\top } \\right] } \\\\ & { = \\displaystyle \\frac { d R ^ { 2 } } { n _ { 2 } } \\frac { \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] ^ { 2 } + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\displaystyle \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\lambda + \\sigma _ { i } ^ { ( n _ { 1 } ) } ) ^ { 2 } \\right] \\right) ^ { 2 } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 561, + 222, + 1288, + 222, + 1288, + 537, + 561, + 537 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { = \\mathbb { E } \\left[ \\underset { i \\leq d } { \\sum } v _ { i } ^ { 4 } A _ { i , i } ^ { 2 } \\right] + \\mathbb { E } \\left[ \\underset { i \\neq j } { \\sum } v _ { i } ^ { 2 } v _ { j } ^ { 2 } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) \\right] } \\\\ & { = 3 \\underset { i \\leq d } { \\sum } A _ { i , i } ^ { 2 } + \\underset { i \\neq j } { \\sum } ( A _ { i , j } ^ { 2 } + A _ { i , i } A _ { j , j } + A _ { i , j } A _ { j , i } ) } \\\\ & { = \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) + 2 \\underset { i \\leq d } { \\sum } A _ { i , i } ^ { 2 } + \\underset { i \\neq j } { \\sum } ( A _ { i , j } ^ { 2 } + A _ { i , j } A _ { j , i } ) } \\\\ & { = \\mathrm { t r } ^ { 2 } ( \\mathbf { A } ) + 2 \\| \\mathbf { A } \\| _ { \\mathrm { F r } } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 443, + 757, + 1262, + 757, + 1262, + 1521, + 443, + 1521 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad _ { 1 } = - \\frac { 1 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } - \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin \\beta } ) ^ { k } ] } \\\\ & { \\quad - \\frac { 3 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) \\sin \\beta ] } \\\\ & { \\quad \\quad + \\frac { 3 } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin ^ { 2 } \\beta } { \\sin ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) ] } \\\\ & { \\quad - \\frac { \\sin \\beta } { 2 ^ { k } } \\mathbb { E } [ ( \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } ) ) ] } \\\\ & { \\quad \\quad _ { 1 } = \\frac { \\sin \\beta } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\alpha } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\sin ^ { 2 } ( k ) } ) ] } \\\\ & { \\quad \\quad + \\frac { \\sin \\beta } { 2 ^ { k } } \\frac { \\sin \\alpha } { \\sin \\alpha + \\sin \\beta } ( \\frac { \\sin \\alpha } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\cos ^ { 2 } ( k ) } - \\frac { \\sin \\beta } { \\cos ^ { 2 } ( k ) + \\sin \\beta } ) ] } \\\\ & \\quad \\quad - \\frac { \\sin \\alpha } { 2 ^ { k } } \\mathbb { E } [ \\frac { \\sin \\beta } { \\sin \\alpha } ( \\frac { \\sin \\beta } { \\sin \\alpha + \\sin ^ { 2 } ( k ) + \\sin \\beta } ) ^ { k } - ( \\sin \\beta + \\frac { \\sin \\beta } \\sin \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 505, + 584, + 1193, + 584, + 1193, + 631, + 505, + 631 + ], + "score": 0.89, + "latex": "\\mathbb { E } \\left[ ( \\mathbf { v } ^ { \\top } \\mathbf { A } \\mathbf { u } ) ^ { 2 } \\right] = \\operatorname { t r } \\left( \\mathbb { E } \\left[ \\mathbf { u } \\mathbf { u } ^ { \\top } \\mathbf { A } \\mathbf { v } \\mathbf { v } ^ { \\top } \\mathbf { A } \\right] \\right) = \\operatorname { t r } ( \\mathbf { A } ^ { 2 } ) = \\| \\mathbf { A } \\| _ { \\mathsf { F r } } ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 922, + 1524, + 958, + 1524, + 958, + 1550, + 922, + 1550 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1009, + 1516, + 1139, + 1516, + 1139, + 1553, + 1009, + 1553 + ], + "score": 0.86, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { t r a i n } } , \\mathbf { X } _ { t } ^ { \\mathsf { v a l } }" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1517, + 1139, + 1517, + 1139, + 1553, + 1085, + 1553 + ], + "score": 0.34, + "latex": "\\mathbf { X } _ { t } ^ { \\mathsf { v a l } }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 642.0, + 1404.0, + 642.0, + 1404.0, + 674.0, + 1376.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 2008.0, + 1403.0, + 2008.0, + 1403.0, + 2034.0, + 1378.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 702.0, + 867.0, + 702.0, + 867.0, + 742.0, + 297.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1998.0, + 555.0, + 1998.0, + 555.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 537.0, + 861.0, + 537.0, + 861.0, + 583.0, + 293.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1504.0, + 921.0, + 1504.0, + 921.0, + 1564.0, + 289.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1504.0, + 1008.0, + 1504.0, + 1008.0, + 1564.0, + 959.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1504.0, + 1380.0, + 1504.0, + 1380.0, + 1564.0, + 1140.0, + 1564.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 630, + 1406, + 630, + 1406, + 910, + 295, + 910 + ], + "score": 0.98 + }, + { + "category_id": 8, + "poly": [ + 398, + 1736, + 1307, + 1736, + 1307, + 2035, + 398, + 2035 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 285, + 1405, + 285, + 1405, + 381, + 298, + 381 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 299, + 1351, + 1403, + 1351, + 1403, + 1494, + 299, + 1494 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 522, + 1591, + 1177, + 1591, + 1177, + 1674, + 522, + 1674 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 296, + 1268, + 1408, + 1268, + 1408, + 1336, + 296, + 1336 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 382, + 1175, + 1315, + 1175, + 1315, + 1251, + 382, + 1251 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 298, + 1539, + 944, + 1539, + 944, + 1575, + 298, + 1575 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 300, + 1689, + 855, + 1689, + 855, + 1723, + 300, + 1723 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 294, + 481, + 1393, + 481, + 1393, + 518, + 294, + 518 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 296, + 1128, + 617, + 1128, + 617, + 1160, + 296, + 1160 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 294, + 922, + 1230, + 922, + 1230, + 959, + 294, + 959 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1488, + 1401, + 1488, + 1401, + 1519, + 1351, + 1519 + ], + "score": 0.846 + }, + { + "category_id": 8, + "poly": [ + 297, + 974, + 1517, + 974, + 1517, + 1115, + 297, + 1115 + ], + "score": 0.837 + }, + { + "category_id": 8, + "poly": [ + 308, + 395, + 1383, + 395, + 1383, + 465, + 308, + 465 + ], + "score": 0.808 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.796 + }, + { + "category_id": 8, + "poly": [ + 479, + 535, + 1216, + 535, + 1216, + 601, + 479, + 601 + ], + "score": 0.729 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1087, + 228, + 1087, + 263, + 296, + 263 + ], + "score": 0.512 + }, + { + "category_id": 8, + "poly": [ + 478, + 534, + 1215, + 534, + 1215, + 602, + 478, + 602 + ], + "score": 0.491 + }, + { + "category_id": 8, + "poly": [ + 310, + 396, + 1384, + 396, + 1384, + 465, + 310, + 465 + ], + "score": 0.317 + }, + { + "category_id": 1, + "poly": [ + 297, + 974, + 1517, + 974, + 1517, + 1115, + 297, + 1115 + ], + "score": 0.189 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.184 + }, + { + "category_id": 2, + "poly": [ + 296, + 228, + 1087, + 228, + 1087, + 263, + 296, + 263 + ], + "score": 0.135 + }, + { + "category_id": 14, + "poly": [ + 395, + 1736, + 1311, + 1736, + 1311, + 2037, + 395, + 2037 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\frac { \\mathbb { E } \\left[ \\left( d - n _ { 1 } + \\sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\left( d - n _ { 1 } + \\sum _ { i = 1 } ^ { n _ { 1 } } X _ { i } ^ { 2 } \\right) \\right] } { \\left( \\mathbb { E } \\left[ d - n _ { 1 } + \\sum _ { i = 1 } ^ { n } X _ { i } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { \\mathbb { E } \\left[ \\left( d - \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \\right) ^ { 2 } + \\left( n _ { 2 } + 1 \\right) \\left( d - 2 \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } + \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } ^ { 2 } \\right) \\right] } { \\left( \\mathbb { E } \\left[ d - \\sum _ { i = 1 } ^ { n _ { 1 } } Y _ { i } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d - 2 ( d + n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } \\right] + \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { d ^ { 2 } - 2 d \\mathbb { E } \\left[ \\sum Y _ { i } \\right] + \\left( \\mathbb { E } \\left[ \\sum Y _ { i } \\right] \\right) ^ { 2 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 520, + 1588, + 1178, + 1588, + 1178, + 1675, + 520, + 1675 + ], + "score": 0.94, + "latex": "X _ { i } : = \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\in [ 0 , 1 ] \\mathrm { a n d } Y _ { i } : = 1 - X _ { i } \\in [ 0 , 1 ] ." + }, + { + "category_id": 14, + "poly": [ + 310, + 1350, + 1407, + 1350, + 1407, + 1493, + 310, + 1493 + ], + "score": 0.94, + "latex": "\\frac { \\Xi \\bigg [ \\Big ( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\bigg ] } { \\Big ( \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ] \\Big ) ^ { 2 } } \\geq \\frac { d + n _ { 2 } + 1 } { d } , \\mathrm { f o r ~ a l l } \\lambda > 0 ." + }, + { + "category_id": 14, + "poly": [ + 375, + 1175, + 1318, + 1175, + 1318, + 1251, + 375, + 1251 + ], + "score": 0.94, + "latex": "\\operatorname* { l i m } _ { \\lambda \\infty } \\mathrm { { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s u } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { d R ^ { 2 } } { n _ { 2 } } \\cdot \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { d ^ { 2 } } = \\frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 970, + 483, + 1164, + 483, + 1164, + 517, + 970, + 517 + ], + "score": 0.93, + "latex": "( n _ { 1 } , n _ { 2 } ) = ( 0 , n )" + }, + { + "category_id": 13, + "poly": [ + 814, + 664, + 1008, + 664, + 1008, + 698, + 814, + 698 + ], + "score": 0.93, + "latex": "( n _ { 1 } , n _ { 2 } ) = ( 0 , n )" + }, + { + "category_id": 13, + "poly": [ + 570, + 1541, + 660, + 1541, + 660, + 1575, + 570, + 1575 + ], + "score": 0.92, + "latex": "i \\in [ n _ { 1 } ]" + }, + { + "category_id": 14, + "poly": [ + 310, + 393, + 1387, + 393, + 1387, + 464, + 310, + 464 + ], + "score": 0.92, + "latex": "\\operatorname* { i n f } _ { \\lambda > 0 } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\operatorname* { l i m } _ { \\lambda \\to \\infty } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { ( d + n _ { 2 } + 1 ) R ^ { 2 } } { n _ { 2 } } ." + }, + { + "category_id": 14, + "poly": [ + 481, + 532, + 1217, + 532, + 1217, + 603, + 481, + 603 + ], + "score": 0.92, + "latex": "\\mathrm { i n f } _ { \\lambda > 0 , n _ { 2 } \\in [ n ] } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } - \\mathsf { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { ( d + n + 1 ) R ^ { 2 } } { n } ." + }, + { + "category_id": 13, + "poly": [ + 621, + 924, + 718, + 924, + 718, + 958, + 621, + 958 + ], + "score": 0.92, + "latex": "n _ { 1 } \\in [ n ]" + }, + { + "category_id": 13, + "poly": [ + 803, + 725, + 1088, + 725, + 1088, + 759, + 803, + 759 + ], + "score": 0.92, + "latex": "\\mathcal { A } _ { \\infty , 0 } ( \\mathbf { w } _ { 0 } ; \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) = \\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 289, + 1192, + 289, + 1192, + 321, + 1127, + 321 + ], + "score": 0.91, + "latex": "( n , d )" + }, + { + "category_id": 13, + "poly": [ + 298, + 318, + 560, + 318, + 560, + 352, + 298, + 352 + ], + "score": 0.91, + "latex": "( n _ { 1 } , n _ { 2 } ) \\stackrel { \\cdot } { = } ( n _ { 1 } , \\stackrel { \\cdot } { = } n - n _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 680, + 666, + 763, + 666, + 763, + 693, + 680, + 693 + ], + "score": 0.91, + "latex": "\\lambda = \\infty" + }, + { + "category_id": 13, + "poly": [ + 1017, + 231, + 1083, + 231, + 1083, + 264, + 1017, + 264 + ], + "score": 0.9, + "latex": "( n , d )" + }, + { + "category_id": 13, + "poly": [ + 770, + 928, + 917, + 928, + 917, + 956, + 770, + 956 + ], + "score": 0.9, + "latex": "n _ { 2 } = n - n _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 344, + 1304, + 414, + 1304, + 414, + 1333, + 344, + 1333 + ], + "score": 0.89, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 941, + 289, + 1013, + 289, + 1013, + 322, + 941, + 322 + ], + "score": 0.89, + "latex": "( n , d ) )" + }, + { + "category_id": 13, + "poly": [ + 421, + 1130, + 511, + 1130, + 511, + 1157, + 421, + 1157 + ], + "score": 0.89, + "latex": "\\lambda \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 1067, + 320, + 1136, + 320, + 1136, + 348, + 1067, + 348 + ], + "score": 0.88, + "latex": "\\lambda > 0" + }, + { + "category_id": 14, + "poly": [ + 310, + 972, + 1428, + 972, + 1428, + 1116, + 310, + 1116 + ], + "score": 0.87, + "latex": "\\mathrm { 1 s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { t r } \\sim \\mathrm { s q l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) = \\frac { d R ^ { 2 } } { n _ { 2 } } \\cdot \\frac { \\mathbb { E } \\Big [ \\Big ( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ^ { 2 } ) \\Big ) \\Big ] } { \\Big ( \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\Big ] \\Big ) ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 661, + 759, + 699, + 759, + 699, + 787, + 661, + 787 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 662, + 489, + 693, + 489, + 693, + 514, + 662, + 514 + ], + "score": 0.83, + "latex": "n _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1013, + 1267, + 1358, + 1267, + 1358, + 1308, + 1013, + 1308 + ], + "score": 0.66, + "latex": "\\mathrm { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\right)" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1016.0, + 225.0, + 1016.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 631.0, + 1407.0, + 631.0, + 1407.0, + 668.0, + 294.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 662.0, + 679.0, + 662.0, + 679.0, + 700.0, + 292.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 662.0, + 813.0, + 662.0, + 813.0, + 700.0, + 764.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 662.0, + 1406.0, + 662.0, + 1406.0, + 700.0, + 1009.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 693.0, + 1404.0, + 693.0, + 1404.0, + 729.0, + 294.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 722.0, + 802.0, + 722.0, + 802.0, + 762.0, + 292.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 722.0, + 1406.0, + 722.0, + 1406.0, + 762.0, + 1089.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 757.0, + 660.0, + 757.0, + 660.0, + 790.0, + 294.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 757.0, + 1403.0, + 757.0, + 1403.0, + 790.0, + 700.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 787.0, + 1404.0, + 787.0, + 1404.0, + 820.0, + 294.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 814.0, + 1403.0, + 814.0, + 1403.0, + 853.0, + 292.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 845.0, + 1404.0, + 845.0, + 1404.0, + 883.0, + 293.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 877.0, + 612.0, + 877.0, + 612.0, + 914.0, + 293.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 285.0, + 940.0, + 285.0, + 940.0, + 323.0, + 296.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 285.0, + 1126.0, + 285.0, + 1126.0, + 323.0, + 1014.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 285.0, + 1405.0, + 285.0, + 1405.0, + 323.0, + 1193.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 297.0, + 320.0, + 297.0, + 351.0, + 294.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 320.0, + 1066.0, + 320.0, + 1066.0, + 351.0, + 561.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 351.0, + 1137.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 457.0, + 350.0, + 457.0, + 382.0, + 293.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1263.0, + 1012.0, + 1263.0, + 1012.0, + 1312.0, + 290.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1263.0, + 1407.0, + 1263.0, + 1407.0, + 1312.0, + 1359.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1302.0, + 343.0, + 1302.0, + 343.0, + 1339.0, + 294.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1302.0, + 675.0, + 1302.0, + 675.0, + 1339.0, + 415.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1538.0, + 569.0, + 1538.0, + 569.0, + 1578.0, + 296.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1538.0, + 943.0, + 1538.0, + 943.0, + 1578.0, + 661.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1687.0, + 858.0, + 1687.0, + 858.0, + 1725.0, + 296.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 480.0, + 661.0, + 480.0, + 661.0, + 519.0, + 295.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 480.0, + 969.0, + 480.0, + 969.0, + 519.0, + 694.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 480.0, + 1396.0, + 480.0, + 1396.0, + 519.0, + 1165.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1123.0, + 420.0, + 1123.0, + 420.0, + 1165.0, + 295.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1123.0, + 621.0, + 1123.0, + 621.0, + 1165.0, + 512.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 920.0, + 620.0, + 920.0, + 620.0, + 961.0, + 294.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 920.0, + 769.0, + 920.0, + 769.0, + 961.0, + 719.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 920.0, + 1232.0, + 920.0, + 1232.0, + 961.0, + 918.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1016.0, + 225.0, + 1016.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1429.0, + 968.0, + 1512.0, + 968.0, + 1512.0, + 1049.0, + 1429.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 996.0, + 760.0, + 996.0, + 760.0, + 1088.0, + 281.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1050.5, + 730.0, + 1050.5, + 730.0, + 1091.5, + 686.0, + 1091.5 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 361, + 1577, + 1300, + 1577, + 1300, + 1735, + 361, + 1735 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 427, + 1086, + 1276, + 1086, + 1276, + 1326, + 427, + 1326 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 442, + 1817, + 1262, + 1817, + 1262, + 2043, + 442, + 2043 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 566, + 271, + 1133, + 271, + 1133, + 357, + 566, + 357 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 294, + 1500, + 1403, + 1500, + 1403, + 1566, + 294, + 1566 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 521, + 1421, + 1176, + 1421, + 1176, + 1490, + 521, + 1490 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 545, + 410, + 1151, + 410, + 1151, + 488, + 545, + 488 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 296, + 1743, + 1403, + 1743, + 1403, + 1809, + 296, + 1809 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 295, + 1337, + 1403, + 1337, + 1403, + 1410, + 295, + 1410 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 299, + 807, + 1404, + 807, + 1404, + 873, + 299, + 873 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 299, + 1006, + 1402, + 1006, + 1402, + 1075, + 299, + 1075 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 401, + 530, + 1300, + 530, + 1300, + 614, + 401, + 614 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 298, + 364, + 1081, + 364, + 1081, + 404, + 298, + 404 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 297, + 622, + 1168, + 622, + 1168, + 657, + 297, + 657 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1099, + 228, + 1099, + 264, + 297, + 264 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 298, + 495, + 510, + 495, + 510, + 526, + 298, + 526 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 107, + 296, + 107 + ], + "score": 0.919 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1191, + 1401, + 1191, + 1401, + 1222, + 1351, + 1222 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 297, + 751, + 1157, + 751, + 1157, + 785, + 297, + 785 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1638, + 1401, + 1638, + 1401, + 1669, + 1351, + 1669 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1350, + 297, + 1402, + 297, + 1402, + 329, + 1350, + 329 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1916, + 1401, + 1916, + 1401, + 1947, + 1350, + 1947 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 1374, + 624, + 1404, + 624, + 1404, + 653, + 1374, + 653 + ], + "score": 0.82 + }, + { + "category_id": 8, + "poly": [ + 297, + 939, + 1403, + 939, + 1403, + 984, + 297, + 984 + ], + "score": 0.802 + }, + { + "category_id": 8, + "poly": [ + 542, + 883, + 1153, + 883, + 1153, + 924, + 542, + 924 + ], + "score": 0.56 + }, + { + "category_id": 1, + "poly": [ + 542, + 883, + 1153, + 883, + 1153, + 924, + 542, + 924 + ], + "score": 0.422 + }, + { + "category_id": 1, + "poly": [ + 297, + 939, + 1403, + 939, + 1403, + 984, + 297, + 984 + ], + "score": 0.116 + }, + { + "category_id": 13, + "poly": [ + 575, + 624, + 713, + 624, + 713, + 655, + 575, + 655 + ], + "score": 0.94, + "latex": "n _ { 1 } \\leq n \\leq d" + }, + { + "category_id": 14, + "poly": [ + 440, + 1815, + 1261, + 1815, + 1261, + 2047, + 440, + 2047 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { \\displaystyle - \\frac { d } { d \\lambda _ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) = - \\frac { d } { d \\lambda _ { 2 } } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Big ) \\Big ] } \\\\ { = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ - \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Big ) \\Big ] } \\\\ { = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 2 } \\widehat { \\pmb { \\Sigma } } _ { n } \\Big ) \\Big ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 663, + 1745, + 768, + 1745, + 768, + 1779, + 663, + 1779 + ], + "score": 0.93, + "latex": "s ( \\lambda _ { 1 } , \\lambda _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 614, + 1006, + 795, + 1006, + 795, + 1048, + 614, + 1048 + ], + "score": 0.93, + "latex": "\\widehat { \\pmb { \\Sigma } } _ { n } : = \\frac { 1 } { n } \\pmb { \\mathrm { X } } _ { t } \\pmb { \\mathrm { X } } _ { t } ^ { \\top }" + }, + { + "category_id": 14, + "poly": [ + 564, + 271, + 1134, + 271, + 1134, + 358, + 564, + 358 + ], + "score": 0.93, + "latex": "\\frac { \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { \\left( \\mathbb { E } [ \\sum Y _ { i } ] \\right) ^ { 2 } } \\geq \\frac { d + n _ { 2 } + 1 } { d } ." + }, + { + "category_id": 14, + "poly": [ + 429, + 1084, + 1277, + 1084, + 1277, + 1330, + 429, + 1330 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ^ { \\mathsf { t r } \\cdot \\mathsf { t r } } ( n ; \\lambda ) ) = R ^ { 2 } \\cdot \\frac { \\frac { 1 } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) ^ { 2 } / \\big ( \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) + \\lambda \\big ) ^ { 4 } \\right] } { \\left( \\frac { 1 } { d } \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) / \\big ( \\sigma _ { i } ( \\widehat { \\pmb \\Sigma } _ { n } ) + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { = R ^ { 2 } \\cdot \\underbrace { \\frac { 1 } { d } \\mathbb { E } \\left[ \\mathrm { t r } \\left( ( \\widehat { \\pmb \\Sigma } _ { n } + \\lambda \\mathbf { I } _ { d } ) ^ { - 4 } \\widehat { \\pmb \\Sigma } _ { n } ^ { 2 } \\right) \\right] } _ { \\mathbf { I } _ { n , d } } / \\Bigg \\{ \\underbrace { \\frac { 1 } { d } \\mathbb { E } \\left[ \\mathrm { t r } \\left( ( \\widehat { \\pmb \\Sigma } _ { n } + \\lambda \\mathbf { I } _ { d } ) ^ { - 2 } \\widehat { \\pmb \\Sigma } _ { n } \\right) \\right] } _ { \\mathbf { I } _ { n , d } } } \\Bigg \\} ^ { 2 } . \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 521, + 1418, + 1176, + 1418, + 1176, + 1490, + 521, + 1490 + ], + "score": 0.93, + "latex": "s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) : = \\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Bigl [ \\mathrm { t r } \\Bigl ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\widehat { \\pmb { \\Sigma } } _ { n } ) ^ { - 1 } \\Bigr ) \\Bigr ] ." + }, + { + "category_id": 13, + "poly": [ + 391, + 366, + 684, + 366, + 684, + 403, + 391, + 403 + ], + "score": 0.93, + "latex": "\\mathbb { E } [ ( \\sum Y _ { i } ) ^ { 2 } ] \\ge ( \\mathbb { E } [ \\sum Y _ { i } ] ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 784, + 840, + 912, + 840, + 912, + 873, + 784, + 873 + ], + "score": 0.92, + "latex": "\\gamma \\in ( 0 , \\infty )" + }, + { + "category_id": 14, + "poly": [ + 397, + 529, + 1300, + 529, + 1300, + 615, + 397, + 615 + ], + "score": 0.92, + "latex": "\\frac { \\mathbb { E } \\left[ ( \\sum Y _ { i } ) ^ { 2 } \\right] + ( n _ { 2 } + 1 ) \\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] } { ( \\mathbb { E } [ \\sum Y _ { i } ] ) ^ { 2 } } \\geq 1 + \\frac { n _ { 2 } + 1 } { n _ { 1 } } \\geq 1 + \\frac { n _ { 2 } + 1 } { d } = \\frac { d + n _ { 2 } + 1 } { d } ," + }, + { + "category_id": 13, + "poly": [ + 631, + 1502, + 715, + 1502, + 715, + 1536, + 631, + 1536 + ], + "score": 0.92, + "latex": "{ \\mathsf { N } } ( 0 , 1 )" + }, + { + "category_id": 14, + "poly": [ + 366, + 1573, + 1302, + 1573, + 1302, + 1737, + 366, + 1737 + ], + "score": 0.92, + "latex": "\\begin{array} { c l } { { s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) = \\displaystyle \\lambda _ { 2 } ^ { - 1 } s ( \\lambda _ { 1 } / \\lambda _ { 2 } , 1 ) = \\displaystyle \\frac { 1 } { \\lambda _ { 2 } } \\cdot \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } / \\lambda _ { 2 } } } } \\\\ { { = \\displaystyle \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } } . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 707, + 1340, + 766, + 1340, + 766, + 1374, + 707, + 1374 + ], + "score": 0.92, + "latex": "\\Pi _ { n , d }" + }, + { + "category_id": 13, + "poly": [ + 608, + 1340, + 657, + 1340, + 657, + 1374, + 608, + 1374 + ], + "score": 0.91, + "latex": "\\mathrm { I } _ { n , d }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1377, + 1350, + 1377, + 1350, + 1408, + 1227, + 1408 + ], + "score": 0.91, + "latex": "\\lambda _ { 1 } , \\lambda _ { 2 } > 0" + }, + { + "category_id": 14, + "poly": [ + 544, + 410, + 1153, + 410, + 1153, + 487, + 544, + 487 + ], + "score": 0.91, + "latex": "\\mathbb { E } \\left[ \\sum Y _ { i } ^ { 2 } \\right] \\geq \\frac { 1 } { n _ { 1 } } \\mathbb { E } \\left[ \\left( \\sum Y _ { i } \\right) ^ { 2 } \\right] \\geq \\frac { 1 } { n _ { 1 } } \\Big ( \\mathbb { E } \\left[ \\sum Y _ { i } \\right] \\Big ) ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 1020, + 1370, + 1060, + 1370, + 1060, + 1408, + 1020, + 1408 + ], + "score": 0.91, + "latex": "\\widehat { \\Sigma } _ { n }" + }, + { + "category_id": 13, + "poly": [ + 299, + 1376, + 375, + 1376, + 375, + 1410, + 299, + 1410 + ], + "score": 0.91, + "latex": "( 0 , \\infty )" + }, + { + "category_id": 13, + "poly": [ + 489, + 1503, + 525, + 1503, + 525, + 1533, + 489, + 1533 + ], + "score": 0.9, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 840, + 1375, + 840, + 1375, + 869, + 1305, + 869 + ], + "score": 0.89, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1339, + 1404, + 1339, + 1404, + 1373, + 1265, + 1373 + ], + "score": 0.79, + "latex": "d / n \\to \\gamma \\in" + }, + { + "category_id": 13, + "poly": [ + 600, + 839, + 708, + 839, + 708, + 873, + 600, + 873 + ], + "score": 0.76, + "latex": "d / n \\gamma" + }, + { + "category_id": 13, + "poly": [ + 473, + 840, + 588, + 840, + 588, + 871, + 473, + 871 + ], + "score": 0.73, + "latex": "d , n \\infty" + }, + { + "category_id": 13, + "poly": [ + 423, + 1044, + 453, + 1044, + 453, + 1074, + 423, + 1074 + ], + "score": 0.71, + "latex": "\\mathbf { \\rho } ( t )" + }, + { + "category_id": 13, + "poly": [ + 942, + 1747, + 965, + 1747, + 965, + 1774, + 942, + 1774 + ], + "score": 0.64, + "latex": "\\mathrm { I I }" + }, + { + "category_id": 14, + "poly": [ + 544, + 884, + 1149, + 884, + 1149, + 926, + 544, + 926 + ], + "score": 0.55, + "latex": "\\begin{array} { r } { \\operatorname* { l i m } _ { d , n \\infty , d / n = \\gamma } \\mathrm { A s y m M S E } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - t r } ( n ; \\lambda ) \\big ) = \\rho _ { \\lambda , \\gamma } R ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1133, + 1340, + 1252, + 1340, + 1252, + 1371, + 1133, + 1371 + ], + "score": 0.52, + "latex": "d , n \\infty" + }, + { + "category_id": 14, + "poly": [ + 365, + 939, + 1352, + 939, + 1352, + 985, + 365, + 985 + ], + "score": 0.5, + "latex": "\\rho _ { \\lambda , \\gamma } = 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] / ( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\left( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\right)" + }, + { + "category_id": 14, + "poly": [ + 385, + 882, + 1407, + 882, + 1407, + 988, + 385, + 988 + ], + "score": 0.5, + "latex": "\\begin{array} { r l } & { \\operatorname* { l i m } _ { d , n \\to \\infty , d / n = \\gamma } { \\mathrm { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r + \\sf t r } ( n ; \\lambda ) \\big ) = \\rho _ { \\lambda , \\gamma } R ^ { 2 } . } \\\\ & { \\qquad \\quad \\lambda , \\gamma = 4 \\gamma ^ { 2 } \\big [ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\big ] / ( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } ) ^ { 2 } / \\big ( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\big ) ^ { 3 / 2 } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 359, + 1657, + 907, + 1657, + 907, + 1737, + 359, + 1737 + ], + "score": 0.49, + "latex": "= \\frac { \\gamma - 1 - \\lambda _ { 1 } / \\lambda _ { 2 } + \\sqrt { ( \\lambda _ { 1 } / \\lambda _ { 2 } + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } { 2 \\gamma \\lambda _ { 1 } } ." + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 751.0, + 1158.0, + 751.0, + 1158.0, + 786.0, + 295.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 629.0, + 1402.0, + 629.0, + 1402.0, + 651.0, + 1380.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1501.0, + 488.0, + 1501.0, + 488.0, + 1537.0, + 296.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1501.0, + 630.0, + 1501.0, + 630.0, + 1537.0, + 526.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1501.0, + 1406.0, + 1501.0, + 1406.0, + 1537.0, + 716.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 1403.0, + 1529.0, + 1403.0, + 1568.0, + 293.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 662.0, + 1742.0, + 662.0, + 1782.0, + 294.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1742.0, + 941.0, + 1742.0, + 941.0, + 1782.0, + 769.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1742.0, + 1405.0, + 1742.0, + 1405.0, + 1782.0, + 966.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1776.0, + 666.0, + 1776.0, + 666.0, + 1811.0, + 291.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1333.0, + 607.0, + 1333.0, + 607.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1333.0, + 706.0, + 1333.0, + 706.0, + 1378.0, + 658.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1333.0, + 1132.0, + 1333.0, + 1132.0, + 1378.0, + 767.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1333.0, + 1264.0, + 1333.0, + 1264.0, + 1378.0, + 1253.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1369.0, + 298.0, + 1369.0, + 298.0, + 1415.0, + 293.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1369.0, + 1019.0, + 1369.0, + 1019.0, + 1415.0, + 376.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1369.0, + 1226.0, + 1369.0, + 1226.0, + 1415.0, + 1061.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1369.0, + 1364.0, + 1369.0, + 1364.0, + 1415.0, + 1351.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 808.0, + 1405.0, + 808.0, + 1405.0, + 844.0, + 297.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 472.0, + 839.0, + 472.0, + 875.0, + 295.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 839.0, + 599.0, + 839.0, + 599.0, + 875.0, + 589.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 839.0, + 783.0, + 839.0, + 783.0, + 875.0, + 709.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 839.0, + 1304.0, + 839.0, + 1304.0, + 875.0, + 913.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 839.0, + 1380.0, + 839.0, + 1380.0, + 875.0, + 1376.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1010.0, + 538.0, + 1010.0, + 538.0, + 1043.0, + 297.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1003.0, + 613.0, + 1003.0, + 613.0, + 1051.0, + 559.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1003.0, + 1407.0, + 1003.0, + 1407.0, + 1051.0, + 796.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1040.0, + 422.0, + 1040.0, + 422.0, + 1077.0, + 295.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1040.0, + 724.0, + 1040.0, + 724.0, + 1077.0, + 454.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 364.0, + 390.0, + 364.0, + 390.0, + 406.0, + 296.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 364.0, + 1082.0, + 364.0, + 1082.0, + 406.0, + 685.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 616.0, + 574.0, + 616.0, + 574.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 616.0, + 1168.0, + 616.0, + 1168.0, + 663.0, + 714.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 1101.0, + 226.0, + 1101.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 491.0, + 511.0, + 491.0, + 511.0, + 530.0, + 295.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 937.0, + 364.0, + 937.0, + 364.0, + 989.0, + 288.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1408.0, + 937.0, + 1411.0, + 937.0, + 1411.0, + 989.0, + 1408.0, + 989.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 24, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1848, + 1405, + 1848, + 1405, + 2036, + 295, + 2036 + ], + "score": 0.98 + }, + { + "category_id": 8, + "poly": [ + 534, + 591, + 1168, + 591, + 1168, + 755, + 534, + 755 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1287, + 1404, + 1287, + 1404, + 1386, + 298, + 1386 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 429, + 806, + 1268, + 806, + 1268, + 1098, + 429, + 1098 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1405, + 228, + 1405, + 324, + 297, + 324 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 493, + 1618, + 1203, + 1618, + 1203, + 1691, + 493, + 1691 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 317, + 1746, + 1377, + 1746, + 1377, + 1836, + 317, + 1836 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 296, + 1477, + 1402, + 1477, + 1402, + 1540, + 296, + 1540 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 298, + 1108, + 634, + 1108, + 634, + 1140, + 298, + 1140 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 1702, + 739, + 1702, + 739, + 1735, + 297, + 1735 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 299, + 763, + 698, + 763, + 698, + 796, + 299, + 796 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 304, + 1395, + 1385, + 1395, + 1385, + 1466, + 304, + 1466 + ], + "score": 0.918 + }, + { + "category_id": 8, + "poly": [ + 301, + 336, + 1394, + 336, + 1394, + 406, + 301, + 406 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 293, + 547, + 1320, + 547, + 1320, + 581, + 293, + 581 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 296, + 1234, + 1069, + 1234, + 1069, + 1266, + 296, + 1266 + ], + "score": 0.907 + }, + { + "category_id": 1, + "poly": [ + 298, + 418, + 503, + 418, + 503, + 450, + 298, + 450 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.891 + }, + { + "category_id": 8, + "poly": [ + 298, + 465, + 1431, + 465, + 1431, + 537, + 298, + 537 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 293, + 1570, + 1259, + 1570, + 1259, + 1605, + 293, + 1605 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 866, + 2088, + 866, + 2113, + 834, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1108, + 1404, + 1108, + 1404, + 1139, + 1374, + 1139 + ], + "score": 0.844 + }, + { + "category_id": 14, + "poly": [ + 433, + 807, + 1273, + 807, + 1273, + 1102, + 433, + 1102 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\underset { d , n \\to \\infty , d / n \\to \\gamma } { \\operatorname* { l i m } } \\mathrm { A s y m M S E } ( \\widehat { \\ w } _ { 0 , T } ^ { \\mathrm { t r } + \\mathrm { t r } } ( n ; \\lambda ) ) = \\underset { d , n \\to \\infty , d / n \\to \\gamma } { \\operatorname* { l i m } } R ^ { 2 } \\cdot \\mathrm { I } _ { n , d } / \\mathrm { I } _ { n , d } ^ { 2 } } \\\\ & { = R ^ { 2 } \\cdot \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 5 / 2 } \\cdot \\left( \\frac { \\lambda + 1 + \\gamma } { \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } - 1 \\right) ^ { 2 } } } \\\\ & { = R ^ { 2 } \\cdot \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 3 / 2 } \\cdot \\left( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } \\right) ^ { 2 } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 322, + 1744, + 1375, + 1744, + 1375, + 1837, + 322, + 1837 + ], + "score": 0.94, + "latex": "\\frac { d } { d \\lambda _ { 2 } } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\operatorname* { l i m } _ { t \\to 0 } \\mathbb { E } \\left[ \\frac { \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } + t \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) - \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } ) ^ { - 1 } \\big ) } { t } \\right] ." + }, + { + "category_id": 14, + "poly": [ + 311, + 1393, + 1388, + 1393, + 1388, + 1467, + 311, + 1467 + ], + "score": 0.94, + "latex": "\\frac { d } { d \\lambda _ { 2 } } \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\frac { 1 } { d } \\mathbb { E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\bigg ] ." + }, + { + "category_id": 14, + "poly": [ + 493, + 1618, + 1205, + 1618, + 1205, + 1693, + 493, + 1693 + ], + "score": 0.93, + "latex": "\\frac { d } { d \\lambda _ { 2 } } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ] = \\mathbb { E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\bigg ] ." + }, + { + "category_id": 13, + "poly": [ + 594, + 262, + 731, + 262, + 731, + 294, + 594, + 294 + ], + "score": 0.93, + "latex": "\\lambda _ { 1 } , \\lambda _ { 2 } ~ > ~ 0" + }, + { + "category_id": 14, + "poly": [ + 534, + 589, + 1168, + 589, + 1168, + 758, + 534, + 758 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { \\displaystyle \\operatorname* { l i m } _ { { d , n \\to \\infty , d / n \\to \\gamma } } \\mathrm { I } _ { n , d } = \\frac { 1 } { 2 \\gamma } \\cdot \\frac { \\lambda + 1 + \\gamma } { \\sqrt { ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma } } - \\frac { 1 } { 2 \\gamma } , } \\\\ { \\displaystyle \\operatorname* { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } \\mathrm { I I } _ { n , d } = \\frac { ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda } { ( ( \\lambda + 1 + \\gamma ) ^ { 2 } - 4 \\gamma ) ^ { 5 / 2 } } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 646, + 1320, + 891, + 1320, + 891, + 1358, + 646, + 1358 + ], + "score": 0.92, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 1182, + 1577, + 1247, + 1577, + 1247, + 1607, + 1182, + 1607 + ], + "score": 0.92, + "latex": "( d , n )" + }, + { + "category_id": 13, + "poly": [ + 433, + 293, + 515, + 293, + 515, + 322, + 433, + 322 + ], + "score": 0.92, + "latex": "\\lambda _ { 2 } = 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 292, + 383, + 292, + 383, + 322, + 297, + 322 + ], + "score": 0.92, + "latex": "\\lambda _ { 1 } = \\lambda" + }, + { + "category_id": 13, + "poly": [ + 346, + 1885, + 488, + 1885, + 488, + 1915, + 346, + 1915 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1156, + 1944, + 1400, + 1944, + 1400, + 1977, + 1156, + 1977 + ], + "score": 0.91, + "latex": "\\vert \\mathrm { t r } ( \\lambda _ { 1 } ^ { - 2 } \\pmb { \\Sigma } ) \\vert + 1 < \\infty" + }, + { + "category_id": 13, + "poly": [ + 792, + 1918, + 1085, + 1918, + 1085, + 1943, + 792, + 1943 + ], + "score": 0.91, + "latex": "\\mathbf { A } = \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\boldsymbol { \\Sigma } \\succeq \\lambda _ { 1 } \\mathbf { I } _ { d }" + }, + { + "category_id": 13, + "poly": [ + 877, + 1889, + 938, + 1889, + 938, + 1909, + 877, + 1909 + ], + "score": 0.91, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 614, + 1853, + 842, + 1853, + 842, + 1885, + 614, + 1885 + ], + "score": 0.9, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1331, + 1393, + 1331, + 1393, + 1355, + 1358, + 1355 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 310, + 334, + 1398, + 334, + 1398, + 407, + 310, + 407 + ], + "score": 0.9, + "latex": "\\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\Pi _ { n , d } = \\operatorname* { l i m } _ { \\substack { d , n \\to \\infty , d / n \\to \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda \\mathbf { I } _ { d } + \\widehat { \\boldsymbol { \\Sigma } } _ { n } ) ^ { - 2 } \\widehat { \\boldsymbol { \\Sigma } } _ { n } \\Big ) \\Big ] = - \\frac { d } { d \\lambda _ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) | _ { \\lambda _ { 1 } = \\lambda , \\lambda _ { 2 } = 1 } ." + }, + { + "category_id": 13, + "poly": [ + 1210, + 1884, + 1393, + 1884, + 1393, + 1916, + 1210, + 1916 + ], + "score": 0.9, + "latex": "\\left| \\operatorname { t r } ( \\mathbf { A } ^ { - 2 } \\mathbf { B } ) \\right| + 1" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1918, + 1224, + 1918, + 1224, + 1939, + 1139, + 1939 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1201, + 1858, + 1262, + 1858, + 1262, + 1878, + 1201, + 1878 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 498, + 1947, + 524, + 1947, + 524, + 1976, + 498, + 1976 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 310, + 462, + 1428, + 462, + 1428, + 539, + 310, + 539 + ], + "score": 0.86, + "latex": "\\operatorname* { l i m } _ { \\substack { , n \\infty , d / n \\gamma } } \\mathrm { I } _ { n , d } = \\operatorname* { l i m } _ { \\substack { d , n \\infty , d / n \\gamma } } \\frac { 1 } { d } \\mathbb { E } \\Big [ \\mathrm { t r } \\Big ( ( \\lambda \\mathrm { I } _ { d } + \\widehat { \\Sigma } _ { n } ) ^ { - 4 } \\widehat { \\Sigma } _ { n } ^ { 2 } \\Big ) \\Big ] = - \\frac { 1 } { 6 } \\frac { d } { d \\lambda _ { 1 } } \\frac { d ^ { 2 } } { d \\lambda _ { 2 } ^ { 2 } } s ( \\lambda _ { 1 } , \\lambda _ { 2 } ) | _ { \\lambda _ { 1 } = \\lambda , \\lambda _ { 2 } = 1 }" + }, + { + "category_id": 13, + "poly": [ + 388, + 1855, + 465, + 1855, + 465, + 1880, + 388, + 1880 + ], + "score": 0.84, + "latex": "\\mathbf A \\succ \\mathbf 0" + }, + { + "category_id": 13, + "poly": [ + 475, + 1981, + 485, + 1981, + 485, + 2000, + 475, + 2000 + ], + "score": 0.82, + "latex": "\\cdot" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1234.0, + 1070.0, + 1234.0, + 1070.0, + 1265.0, + 296.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1114.0, + 1401.0, + 1114.0, + 1401.0, + 1137.0, + 1380.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1846.0, + 387.0, + 1846.0, + 387.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1846.0, + 613.0, + 1846.0, + 613.0, + 1885.0, + 466.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1846.0, + 1200.0, + 1846.0, + 1200.0, + 1885.0, + 843.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1846.0, + 1405.0, + 1846.0, + 1405.0, + 1885.0, + 1263.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1875.0, + 345.0, + 1875.0, + 345.0, + 1916.0, + 292.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1875.0, + 876.0, + 1875.0, + 876.0, + 1916.0, + 489.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1875.0, + 1209.0, + 1875.0, + 1209.0, + 1916.0, + 939.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1875.0, + 1403.0, + 1875.0, + 1403.0, + 1916.0, + 1394.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1906.0, + 791.0, + 1906.0, + 791.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1906.0, + 1138.0, + 1906.0, + 1138.0, + 1946.0, + 1086.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1906.0, + 1405.0, + 1906.0, + 1405.0, + 1946.0, + 1225.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 497.0, + 1941.0, + 497.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1941.0, + 1155.0, + 1941.0, + 1155.0, + 1977.0, + 525.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1973.0, + 474.0, + 1973.0, + 474.0, + 2005.0, + 297.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1973.0, + 1403.0, + 1973.0, + 1403.0, + 2005.0, + 486.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 953.0, + 2001.0, + 953.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1286.0, + 1404.0, + 1286.0, + 1404.0, + 1320.0, + 294.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 645.0, + 1320.0, + 645.0, + 1358.0, + 293.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1320.0, + 1357.0, + 1320.0, + 1357.0, + 1358.0, + 892.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1320.0, + 1404.0, + 1320.0, + 1404.0, + 1358.0, + 1394.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1353.0, + 542.0, + 1353.0, + 542.0, + 1387.0, + 296.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 255.0, + 593.0, + 255.0, + 593.0, + 301.0, + 291.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 255.0, + 1407.0, + 255.0, + 1407.0, + 301.0, + 732.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 289.0, + 432.0, + 289.0, + 432.0, + 328.0, + 384.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 289.0, + 608.0, + 289.0, + 608.0, + 328.0, + 516.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1475.0, + 1406.0, + 1475.0, + 1406.0, + 1511.0, + 296.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1507.0, + 439.0, + 1507.0, + 439.0, + 1541.0, + 292.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1106.0, + 635.0, + 1106.0, + 635.0, + 1142.0, + 295.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1700.0, + 741.0, + 1700.0, + 741.0, + 1737.0, + 295.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 762.0, + 700.0, + 762.0, + 700.0, + 798.0, + 297.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 542.0, + 1323.0, + 542.0, + 1323.0, + 587.0, + 291.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 414.0, + 505.0, + 414.0, + 505.0, + 454.0, + 296.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1566.0, + 1181.0, + 1566.0, + 1181.0, + 1610.0, + 293.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1566.0, + 1260.0, + 1566.0, + 1260.0, + 1610.0, + 1248.0, + 1610.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 25, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 893, + 1406, + 893, + 1406, + 1035, + 296, + 1035 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 295, + 556, + 1406, + 556, + 1406, + 671, + 295, + 671 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 446, + 1265, + 1257, + 1265, + 1257, + 1460, + 446, + 1460 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 575, + 805, + 1120, + 805, + 1120, + 883, + 575, + 883 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 623, + 688, + 1074, + 688, + 1074, + 747, + 623, + 747 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 601, + 1711, + 1098, + 1711, + 1098, + 1787, + 601, + 1787 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 591, + 1848, + 1106, + 1848, + 1106, + 1921, + 591, + 1921 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 1126, + 1403, + 1126, + 1403, + 1192, + 298, + 1192 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 297, + 1472, + 1405, + 1472, + 1405, + 1538, + 297, + 1538 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 573, + 1982, + 1121, + 1982, + 1121, + 2045, + 573, + 2045 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 410, + 424, + 1285, + 424, + 1285, + 498, + 410, + 498 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 541, + 304, + 1156, + 304, + 1156, + 372, + 541, + 372 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 296, + 1932, + 936, + 1932, + 936, + 1968, + 296, + 1968 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 299, + 1070, + 640, + 1070, + 640, + 1102, + 299, + 1102 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 294, + 225, + 1405, + 225, + 1405, + 296, + 294, + 296 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 295, + 510, + 681, + 510, + 681, + 544, + 295, + 544 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 298, + 756, + 1060, + 756, + 1060, + 790, + 298, + 790 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 298, + 1662, + 1184, + 1662, + 1184, + 1700, + 298, + 1700 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 106, + 296, + 106 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 293, + 1797, + 1155, + 1797, + 1155, + 1834, + 293, + 1834 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 297, + 386, + 371, + 386, + 371, + 415, + 297, + 415 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 296, + 1599, + 890, + 1599, + 890, + 1633, + 296, + 1633 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 295, + 1221, + 941, + 1221, + 941, + 1257, + 295, + 1257 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.879 + }, + { + "category_id": 8, + "poly": [ + 372, + 1548, + 1322, + 1548, + 1322, + 1590, + 372, + 1590 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 372, + 1548, + 1322, + 1548, + 1322, + 1590, + 372, + 1590 + ], + "score": 0.108 + }, + { + "category_id": 13, + "poly": [ + 1139, + 931, + 1236, + 931, + 1236, + 972, + 1139, + 972 + ], + "score": 0.95, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 607, + 602, + 654, + 602, + 654, + 631, + 607, + 631 + ], + "score": 0.94, + "latex": "f _ { n , d }" + }, + { + "category_id": 14, + "poly": [ + 600, + 1709, + 1098, + 1709, + 1098, + 1787, + 600, + 1787 + ], + "score": 0.94, + "latex": "f ( 1 - \\gamma / 2 , \\gamma ) = \\frac { 2 ( \\gamma ^ { 2 } - 3 \\gamma + 4 ) } { ( 2 - \\gamma / 2 ) ^ { 3 } } = : g _ { 1 } ( \\gamma ) ." + }, + { + "category_id": 13, + "poly": [ + 391, + 1799, + 506, + 1799, + 506, + 1833, + 391, + 1833 + ], + "score": 0.94, + "latex": "g _ { 1 } ( 0 ) = 1" + }, + { + "category_id": 14, + "poly": [ + 578, + 804, + 1120, + 804, + 1120, + 882, + 578, + 882 + ], + "score": 0.94, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 1302, + 593, + 1400, + 593, + 1400, + 634, + 1302, + 634 + ], + "score": 0.94, + "latex": "f _ { n , d } ^ { \\prime } ( \\widetilde { \\lambda } _ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 592, + 1844, + 1106, + 1844, + 1106, + 1922, + 592, + 1922 + ], + "score": 0.94, + "latex": "g _ { 1 } ^ { \\prime \\prime } ( \\gamma ) = \\frac { \\gamma ^ { 2 } + 7 \\gamma + 4 } { ( 2 - \\gamma / 2 ) ^ { 5 } } > 0 ~ \\mathrm { f o r ~ a l l } \\gamma \\in [ 0 , 1 ] ." + }, + { + "category_id": 14, + "poly": [ + 413, + 423, + 1287, + 423, + 1287, + 499, + 413, + 499 + ], + "score": 0.94, + "latex": "f _ { n , d } ^ { \\prime } ( \\lambda _ { 2 } ) = { \\mathbb E } \\bigg [ \\frac { d } { d \\lambda _ { 2 } } \\frac { 1 } { d } \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\Sigma ) ^ { - 1 } ) \\bigg ] = - \\frac { 1 } { d } { \\mathbb E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\Sigma ) ^ { - 2 } \\Sigma \\big ) \\big ]" + }, + { + "category_id": 13, + "poly": [ + 663, + 973, + 740, + 973, + 740, + 1008, + 663, + 1008 + ], + "score": 0.93, + "latex": "g _ { \\widetilde { \\lambda } _ { 2 } } ^ { } ( \\lambda )" + }, + { + "category_id": 14, + "poly": [ + 624, + 688, + 1074, + 688, + 1074, + 746, + 624, + 746 + ], + "score": 0.93, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 337, + 562, + 581, + 562, + 581, + 593, + 337, + 593 + ], + "score": 0.93, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 821, + 1474, + 935, + 1474, + 935, + 1508, + 821, + 1508 + ], + "score": 0.93, + "latex": "\\lambda = \\lambda ( \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1474, + 1129, + 1474, + 1129, + 1508, + 1008, + 1508 + ], + "score": 0.93, + "latex": "f ( \\lambda ( \\gamma ) , \\gamma )" + }, + { + "category_id": 14, + "poly": [ + 443, + 1265, + 1257, + 1265, + 1257, + 1462, + 443, + 1462 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\underset { \\lambda > 0 } { \\operatorname* { i n f } } \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\overset { \\mathrm { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\right) } { \\operatorname* { A s y m M S E } \\left( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ( n ; \\lambda ) \\right) } } \\\\ & { = \\underset { \\lambda > 0 } { \\operatorname* { i n f } } \\frac { 4 \\gamma ^ { 2 } \\left[ ( \\gamma - 1 ) ^ { 2 } + ( \\gamma + 1 ) \\lambda \\right] } { \\displaystyle \\left( \\lambda + 1 + \\gamma - \\sqrt { ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma } \\right) ^ { 2 } \\cdot \\left( ( \\lambda + \\gamma + 1 ) ^ { 2 } - 4 \\gamma \\right) ^ { 3 / 2 } } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 452, + 901, + 503, + 901, + 503, + 930, + 452, + 930 + ], + "score": 0.93, + "latex": "\\hat { \\mu } _ { n , d }" + }, + { + "category_id": 13, + "poly": [ + 825, + 230, + 1270, + 230, + 1270, + 268, + 825, + 268 + ], + "score": 0.93, + "latex": "f _ { n , d } ( \\lambda _ { 2 } ) : = \\frac { 1 } { d } \\mathbb { E } \\big [ \\mathrm { t r } \\big ( ( \\lambda _ { 1 } \\mathbf { I } _ { d } + \\lambda _ { 2 } \\pmb { \\Sigma } ) ^ { - 1 } \\big ) \\big ]" + }, + { + "category_id": 13, + "poly": [ + 830, + 1665, + 914, + 1665, + 914, + 1699, + 830, + 1699 + ], + "score": 0.93, + "latex": "f ( \\lambda , \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 503, + 1474, + 668, + 1474, + 668, + 1507, + 503, + 1507 + ], + "score": 0.93, + "latex": "\\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 374, + 764, + 424, + 764, + 424, + 793, + 374, + 793 + ], + "score": 0.93, + "latex": "\\hat { \\mu } _ { n , d }" + }, + { + "category_id": 13, + "poly": [ + 557, + 1798, + 727, + 1798, + 727, + 1833, + 557, + 1833 + ], + "score": 0.92, + "latex": "g _ { 1 } ( 1 ) = 3 2 / 2 7" + }, + { + "category_id": 13, + "poly": [ + 628, + 1665, + 775, + 1665, + 775, + 1699, + 628, + 1699 + ], + "score": 0.92, + "latex": "\\lambda = 1 - \\gamma / 2" + }, + { + "category_id": 13, + "poly": [ + 1168, + 640, + 1216, + 640, + 1216, + 676, + 1168, + 676 + ], + "score": 0.92, + "latex": "f _ { n , d } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 628, + 931, + 657, + 931, + 657, + 964, + 628, + 964 + ], + "score": 0.92, + "latex": "\\widetilde { \\lambda } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 573, + 635, + 602, + 635, + 602, + 668, + 573, + 668 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 541, + 299, + 1156, + 299, + 1156, + 371, + 541, + 371 + ], + "score": 0.91, + "latex": "\\frac { d } { d \\lambda _ { 2 } } \\operatorname * { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } f _ { n , d } ( \\lambda _ { 2 } ) = \\operatorname * { l i m } _ { d , n \\to \\infty , d / n \\to \\gamma } f _ { n , d } ^ { \\prime } ( \\lambda _ { 2 } ) ," + }, + { + "category_id": 13, + "poly": [ + 758, + 564, + 787, + 564, + 787, + 589, + 758, + 589 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 720, + 1127, + 807, + 1127, + 807, + 1156, + 720, + 1156 + ], + "score": 0.9, + "latex": "R ^ { 2 } = 1" + }, + { + "category_id": 13, + "poly": [ + 968, + 939, + 997, + 939, + 997, + 964, + 968, + 964 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 846, + 643, + 876, + 643, + 876, + 668, + 846, + 668 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 298, + 947, + 336, + 947, + 336, + 972, + 298, + 972 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 370, + 1548, + 1330, + 1548, + 1330, + 1588, + 370, + 1588 + ], + "score": 0.89, + "latex": "\\lambda = \\lambda ( \\gamma ) = \\operatorname* { m a x } \\left\\{ 1 - \\gamma / 2 , \\gamma - 1 / 2 \\right\\} = ( 1 - \\gamma / 2 ) \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + ( \\gamma - 1 / 2 ) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 979, + 765, + 1002, + 765, + 1002, + 785, + 979, + 785 + ], + "score": 0.89, + "latex": "\\Sigma" + }, + { + "category_id": 14, + "poly": [ + 576, + 1980, + 1123, + 1980, + 1123, + 2046, + 576, + 2046 + ], + "score": 0.88, + "latex": "g _ { 1 } ( \\gamma ) \\leq ( 1 - \\gamma ) \\cdot g _ { 1 } ( 0 ) + \\gamma \\cdot g _ { 1 } ( 1 ) = 1 + \\frac { 5 } { 2 7 } \\gamma ." + }, + { + "category_id": 13, + "poly": [ + 392, + 1666, + 463, + 1666, + 463, + 1698, + 392, + 1698 + ], + "score": 0.87, + "latex": "\\gamma \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 991, + 1805, + 1020, + 1805, + 1020, + 1832, + 991, + 1832 + ], + "score": 0.86, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 438, + 1160, + 473, + 1160, + 473, + 1186, + 438, + 1186 + ], + "score": 0.85, + "latex": "R ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 360, + 1939, + 388, + 1939, + 388, + 1967, + 360, + 1967 + ], + "score": 0.85, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 585, + 1224, + 646, + 1224, + 646, + 1252, + 585, + 1252 + ], + "score": 0.81, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 580, + 1509, + 600, + 1509, + 600, + 1533, + 580, + 1533 + ], + "score": 0.8, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 539, + 1934, + 595, + 1934, + 595, + 1968, + 539, + 1968 + ], + "score": 0.72, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1246, + 565, + 1268, + 565, + 1268, + 585, + 1246, + 585 + ], + "score": 0.56, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1071.0, + 643.0, + 1071.0, + 643.0, + 1104.0, + 296.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 891.0, + 451.0, + 891.0, + 451.0, + 930.0, + 294.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 891.0, + 1406.0, + 891.0, + 1406.0, + 930.0, + 504.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 928.0, + 297.0, + 928.0, + 297.0, + 972.0, + 290.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 928.0, + 627.0, + 928.0, + 627.0, + 972.0, + 337.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 928.0, + 967.0, + 928.0, + 967.0, + 972.0, + 658.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 928.0, + 1138.0, + 928.0, + 1138.0, + 972.0, + 998.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 928.0, + 1408.0, + 928.0, + 1408.0, + 972.0, + 1237.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 967.0, + 662.0, + 967.0, + 662.0, + 1006.0, + 294.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 967.0, + 1406.0, + 967.0, + 1406.0, + 1006.0, + 741.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1002.0, + 775.0, + 1002.0, + 775.0, + 1033.0, + 296.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 553.0, + 336.0, + 553.0, + 336.0, + 595.0, + 294.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 553.0, + 757.0, + 553.0, + 757.0, + 595.0, + 582.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 553.0, + 1245.0, + 553.0, + 1245.0, + 595.0, + 788.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 553.0, + 1406.0, + 553.0, + 1406.0, + 595.0, + 1269.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 589.0, + 606.0, + 589.0, + 606.0, + 634.0, + 293.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 589.0, + 1301.0, + 589.0, + 1301.0, + 634.0, + 655.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 628.0, + 572.0, + 628.0, + 572.0, + 678.0, + 292.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 628.0, + 845.0, + 628.0, + 845.0, + 678.0, + 603.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 628.0, + 1167.0, + 628.0, + 1167.0, + 678.0, + 877.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 628.0, + 1255.0, + 628.0, + 1255.0, + 678.0, + 1217.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1124.0, + 719.0, + 1124.0, + 719.0, + 1163.0, + 294.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1163.0, + 808.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1157.0, + 437.0, + 1157.0, + 437.0, + 1191.0, + 293.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1157.0, + 495.0, + 1157.0, + 495.0, + 1191.0, + 474.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1471.0, + 502.0, + 1471.0, + 502.0, + 1511.0, + 294.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1471.0, + 820.0, + 1471.0, + 820.0, + 1511.0, + 669.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1471.0, + 1007.0, + 1471.0, + 1007.0, + 1511.0, + 936.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1511.0, + 1130.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1506.0, + 579.0, + 1506.0, + 579.0, + 1539.0, + 297.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1506.0, + 1363.0, + 1506.0, + 1363.0, + 1539.0, + 601.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1931.0, + 359.0, + 1931.0, + 359.0, + 1971.0, + 296.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1931.0, + 538.0, + 1931.0, + 538.0, + 1971.0, + 389.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1931.0, + 937.0, + 1931.0, + 937.0, + 1971.0, + 596.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 222.0, + 824.0, + 222.0, + 824.0, + 270.0, + 291.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 222.0, + 1406.0, + 222.0, + 1406.0, + 270.0, + 1271.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 440.0, + 262.0, + 440.0, + 293.0, + 294.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 508.0, + 684.0, + 508.0, + 684.0, + 546.0, + 295.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 754.0, + 373.0, + 754.0, + 373.0, + 793.0, + 295.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 754.0, + 978.0, + 754.0, + 978.0, + 793.0, + 425.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 754.0, + 1060.0, + 754.0, + 1060.0, + 793.0, + 1003.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1658.0, + 391.0, + 1658.0, + 391.0, + 1706.0, + 294.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1658.0, + 627.0, + 1658.0, + 627.0, + 1706.0, + 464.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1658.0, + 829.0, + 1658.0, + 829.0, + 1706.0, + 776.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1658.0, + 1189.0, + 1658.0, + 1189.0, + 1706.0, + 915.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1794.0, + 390.0, + 1794.0, + 390.0, + 1839.0, + 295.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1794.0, + 556.0, + 1794.0, + 556.0, + 1839.0, + 507.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1794.0, + 990.0, + 1794.0, + 990.0, + 1839.0, + 728.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1794.0, + 1156.0, + 1794.0, + 1156.0, + 1839.0, + 1021.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 382.0, + 376.0, + 382.0, + 376.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1599.0, + 888.0, + 1599.0, + 888.0, + 1636.0, + 297.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1215.0, + 584.0, + 1215.0, + 584.0, + 1264.0, + 292.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1215.0, + 944.0, + 1215.0, + 944.0, + 1264.0, + 647.0, + 1264.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 26, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 302, + 1808, + 1400, + 1808, + 1400, + 1903, + 302, + 1903 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 388, + 694, + 1317, + 694, + 1317, + 903, + 388, + 903 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 665, + 1237, + 1034, + 1237, + 1034, + 1315, + 665, + 1315 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 447, + 1610, + 1259, + 1610, + 1259, + 1792, + 447, + 1792 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 297, + 1913, + 1399, + 1913, + 1399, + 1983, + 297, + 1983 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 293, + 1326, + 1402, + 1326, + 1402, + 1391, + 293, + 1391 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 580, + 277, + 1118, + 277, + 1118, + 354, + 580, + 354 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 438, + 415, + 1256, + 415, + 1256, + 489, + 438, + 489 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 521, + 546, + 1175, + 546, + 1175, + 620, + 521, + 620 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 553, + 1404, + 1145, + 1404, + 1145, + 1484, + 553, + 1484 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 347, + 1062, + 1349, + 1062, + 1349, + 1142, + 347, + 1142 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 296, + 981, + 1401, + 981, + 1401, + 1046, + 296, + 1046 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 296, + 1156, + 1401, + 1156, + 1401, + 1224, + 296, + 1224 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 298, + 365, + 1029, + 365, + 1029, + 403, + 298, + 403 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 297, + 1498, + 686, + 1498, + 686, + 1531, + 297, + 1531 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 295, + 647, + 665, + 647, + 665, + 681, + 295, + 681 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 294, + 226, + 1187, + 226, + 1187, + 265, + 294, + 265 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 455, + 1998, + 802, + 1998, + 802, + 2039, + 455, + 2039 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 300, + 917, + 760, + 917, + 760, + 951, + 300, + 951 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 298, + 499, + 707, + 499, + 707, + 533, + 298, + 533 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 107, + 296, + 107 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 296, + 1560, + 1160, + 1560, + 1160, + 1598, + 296, + 1598 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.876 + }, + { + "category_id": 14, + "poly": [ + 662, + 1237, + 1037, + 1237, + 1037, + 1314, + 662, + 1314 + ], + "score": 0.94, + "latex": "{ \\frac { ( t ^ { 2 } - 1 ) ^ { 4 } / 3 2 } { ( t ^ { 2 } / 2 - t + 1 / 2 ) ^ { 2 } t ^ { 3 } } } = { \\frac { ( t + 1 ) ^ { 4 } } { 8 t ^ { 3 } } }" + }, + { + "category_id": 14, + "poly": [ + 579, + 276, + 1119, + 276, + 1119, + 354, + 579, + 354 + ], + "score": 0.94, + "latex": "f ( \\gamma - 1 / 2 , \\gamma ) = \\frac { 2 \\gamma ^ { 2 } ( 4 \\gamma ^ { 2 } - 3 \\gamma + 1 ) } { ( 2 \\gamma - 1 / 2 ) ^ { 3 } } = : g _ { 2 } ( \\gamma ) ." + }, + { + "category_id": 13, + "poly": [ + 399, + 367, + 669, + 367, + 669, + 403, + 399, + 403 + ], + "score": 0.94, + "latex": "g _ { 2 } ( 1 ) = g _ { 1 } ( 1 ) = 3 2 / 2 7 ." + }, + { + "category_id": 14, + "poly": [ + 385, + 692, + 1320, + 692, + 1320, + 907, + 385, + 907 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\quad \\displaystyle \\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , \\gamma ) \\leq g _ { 1 } ( \\gamma ) } \\\\ & { \\leq \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + g _ { 2 } ( \\gamma ) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\} \\leq \\left( 1 + \\frac { 5 } { 2 7 } \\gamma \\right) \\mathbf { 1 } \\left\\{ \\gamma \\leq 1 \\right\\} + \\left( \\frac { 5 } { 2 7 } + \\gamma \\right) \\mathbf { 1 } \\left\\{ \\gamma > 1 \\right\\} } \\\\ & { = \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 346, + 1057, + 1352, + 1057, + 1352, + 1142, + 346, + 1142 + ], + "score": 0.93, + "latex": "f ( \\lambda , 1 ) = \\frac { 8 \\lambda } { ( \\lambda + 2 - \\sqrt { \\lambda ^ { 2 } + 4 \\lambda } ) ^ { 2 } ( \\lambda ^ { 2 } + 4 \\lambda ) ^ { 3 / 2 } } = \\frac { 8 \\lambda ^ { - 4 } } { ( 1 + 2 / \\lambda - \\sqrt { 1 + 4 / \\lambda } ) ^ { 2 } ( 1 + 4 / \\lambda ) ^ { 3 / 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 912, + 1158, + 1135, + 1158, + 1135, + 1195, + 912, + 1195 + ], + "score": 0.93, + "latex": "\\lambda ^ { - 1 } = ( t ^ { 2 } - 1 ) / 4" + }, + { + "category_id": 13, + "poly": [ + 830, + 230, + 914, + 230, + 914, + 265, + 830, + 265 + ], + "score": 0.93, + "latex": "f ( \\lambda , \\gamma )" + }, + { + "category_id": 14, + "poly": [ + 521, + 544, + 1178, + 544, + 1178, + 620, + 521, + 620 + ], + "score": 0.93, + "latex": "g _ { 2 } ( \\gamma ) = g _ { 2 } ( 1 ) + \\int _ { 1 } ^ { \\gamma } g _ { 2 } ^ { \\prime } ( t ) d t \\leq g _ { 2 } ( 1 ) + \\gamma - 1 = \\gamma + \\frac { 5 } { 2 7 } ." + }, + { + "category_id": 13, + "poly": [ + 635, + 1156, + 819, + 1156, + 819, + 1196, + 635, + 1196 + ], + "score": 0.93, + "latex": "t = \\sqrt { 1 + 4 / \\lambda }" + }, + { + "category_id": 14, + "poly": [ + 552, + 1403, + 1145, + 1403, + 1145, + 1486, + 552, + 1486 + ], + "score": 0.92, + "latex": "\\operatorname* { i n f } _ { \\lambda > 0 } f ( \\lambda , 1 ) = \\frac { 3 2 } { 2 7 } = \\operatorname* { m a x } \\left\\{ 1 + \\frac { 5 } { 2 7 } \\gamma , \\frac { 5 } { 2 7 } + \\gamma \\right\\} \\Biggl | _ { \\gamma = 1 } ," + }, + { + "category_id": 14, + "poly": [ + 448, + 1609, + 1260, + 1609, + 1260, + 1795, + 448, + 1795 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\underset { \\lambda > 0 , s \\in ( 0 , 1 ) } { \\operatorname* { i n f } } \\ \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\ \\underset { \\lambda \\in \\gamma } { \\operatorname { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n s , n ( 1 - s ) ; \\lambda ) \\big ) } \\\\ & { \\stackrel { ( i ) } { = } \\underset { d , n \\to \\infty , d / n = \\gamma } { \\operatorname* { l i m } } \\underset { \\lambda > 0 , n _ { 1 } + n _ { 2 } = n } { \\operatorname* { i n f } } \\ \\underset { \\frac { d + n + 1 } { n } } { \\operatorname { A s y m M S E } } \\big ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) \\big ) \\overset { ( i i ) } { = } 1 + \\gamma . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 628, + 230, + 776, + 230, + 776, + 264, + 628, + 264 + ], + "score": 0.92, + "latex": "\\lambda = \\gamma - 1 / 2" + }, + { + "category_id": 13, + "poly": [ + 585, + 502, + 654, + 502, + 654, + 533, + 585, + 533 + ], + "score": 0.92, + "latex": "\\gamma > 1" + }, + { + "category_id": 14, + "poly": [ + 439, + 413, + 1259, + 413, + 1259, + 488, + 439, + 488 + ], + "score": 0.91, + "latex": "g _ { 2 } ^ { \\prime } ( \\gamma ) = - \\frac { 1 } { ( 4 \\gamma - 1 ) ^ { 2 } } - \\frac { 6 } { ( 4 \\gamma - 1 ) ^ { 3 } } - \\frac { 6 } { ( 4 \\gamma - 1 ) ^ { 4 } } + 1 < 1 \\mathrm { f o r } \\mathrm { a l l } \\gamma > 1 ." + }, + { + "category_id": 13, + "poly": [ + 331, + 1016, + 402, + 1016, + 402, + 1047, + 331, + 1047 + ], + "score": 0.91, + "latex": "\\gamma = 1" + }, + { + "category_id": 13, + "poly": [ + 608, + 1501, + 678, + 1501, + 678, + 1530, + 608, + 1530 + ], + "score": 0.91, + "latex": "\\gamma = 1" + }, + { + "category_id": 13, + "poly": [ + 1323, + 986, + 1393, + 986, + 1393, + 1016, + 1323, + 1016 + ], + "score": 0.91, + "latex": "\\gamma = 1" + }, + { + "category_id": 13, + "poly": [ + 976, + 1809, + 1255, + 1809, + 1255, + 1843, + 976, + 1843 + ], + "score": 0.9, + "latex": "( d + n + 1 ) / n \\to 1 + \\gamma ," + }, + { + "category_id": 13, + "poly": [ + 510, + 1951, + 628, + 1951, + 628, + 1982, + 510, + 1982 + ], + "score": 0.9, + "latex": "d , n \\infty" + }, + { + "category_id": 13, + "poly": [ + 691, + 1917, + 771, + 1917, + 771, + 1946, + 691, + 1946 + ], + "score": 0.9, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 645, + 1359, + 709, + 1359, + 709, + 1385, + 645, + 1385 + ], + "score": 0.89, + "latex": "t = 3" + }, + { + "category_id": 13, + "poly": [ + 435, + 985, + 507, + 985, + 507, + 1015, + 435, + 1015 + ], + "score": 0.89, + "latex": "\\gamma = 1" + }, + { + "category_id": 13, + "poly": [ + 354, + 1329, + 424, + 1329, + 424, + 1356, + 354, + 1356 + ], + "score": 0.89, + "latex": "t > 1" + }, + { + "category_id": 13, + "poly": [ + 692, + 918, + 751, + 918, + 751, + 946, + 692, + 946 + ], + "score": 0.89, + "latex": "L ^ { \\mathrm { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 392, + 232, + 464, + 232, + 464, + 263, + 392, + 263 + ], + "score": 0.88, + "latex": "\\gamma > 1" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1564, + 1068, + 1564, + 1068, + 1593, + 1000, + 1593 + ], + "score": 0.86, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 14, + "poly": [ + 451, + 1997, + 800, + 1997, + 800, + 2040, + 451, + 2040 + ], + "score": 0.86, + "latex": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) )" + }, + { + "category_id": 13, + "poly": [ + 932, + 374, + 961, + 374, + 961, + 401, + 932, + 401 + ], + "score": 0.83, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1050, + 1914, + 1258, + 1914, + 1258, + 1955, + 1050, + 1955 + ], + "score": 0.72, + "latex": "( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) )" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1872, + 1104, + 1872, + 1104, + 1901, + 1065, + 1901 + ], + "score": 0.67, + "latex": "\\because" + }, + { + "category_id": 13, + "poly": [ + 402, + 1917, + 440, + 1917, + 440, + 1948, + 402, + 1948 + ], + "score": 0.64, + "latex": "\\because" + }, + { + "category_id": 13, + "poly": [ + 595, + 1564, + 665, + 1564, + 665, + 1592, + 595, + 1592 + ], + "score": 0.62, + "latex": "L ^ { \\mathrm { t r - v a l } }" + }, + { + "category_id": 13, + "poly": [ + 1064, + 1843, + 1090, + 1843, + 1090, + 1869, + 1064, + 1869 + ], + "score": 0.53, + "latex": "\\geq" + }, + { + "category_id": 13, + "poly": [ + 297, + 1840, + 348, + 1840, + 348, + 1871, + 297, + 1871 + ], + "score": 0.48, + "latex": "\\because '" + }, + { + "category_id": 13, + "poly": [ + 349, + 1871, + 377, + 1871, + 377, + 1901, + 349, + 1901 + ], + "score": 0.43, + "latex": "\\because" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1845, + 1116, + 1845, + 1116, + 1868, + 1034, + 1868 + ], + "score": 0.3, + "latex": "\\mathrm { ~ m ~ } { \\geq } \\operatorname { l i l }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1807.0, + 975.0, + 1807.0, + 975.0, + 1843.0, + 293.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1807.0, + 1405.0, + 1807.0, + 1405.0, + 1843.0, + 1256.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1835.0, + 296.0, + 1835.0, + 296.0, + 1876.0, + 292.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1835.0, + 1033.0, + 1835.0, + 1033.0, + 1876.0, + 349.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1835.0, + 1406.0, + 1835.0, + 1406.0, + 1876.0, + 1117.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1868.0, + 348.0, + 1868.0, + 348.0, + 1905.0, + 296.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1868.0, + 1064.0, + 1868.0, + 1064.0, + 1905.0, + 378.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1868.0, + 1218.0, + 1868.0, + 1218.0, + 1905.0, + 1105.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1904.0, + 401.0, + 1904.0, + 401.0, + 1963.0, + 290.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1904.0, + 690.0, + 1904.0, + 690.0, + 1963.0, + 441.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1904.0, + 1049.0, + 1904.0, + 1049.0, + 1963.0, + 772.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1904.0, + 1408.0, + 1904.0, + 1408.0, + 1963.0, + 1259.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1949.0, + 509.0, + 1949.0, + 509.0, + 1984.0, + 293.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1949.0, + 973.0, + 1949.0, + 973.0, + 1984.0, + 629.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1326.0, + 353.0, + 1326.0, + 353.0, + 1362.0, + 293.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1326.0, + 1404.0, + 1326.0, + 1404.0, + 1362.0, + 425.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1357.0, + 644.0, + 1357.0, + 644.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1357.0, + 1271.0, + 1357.0, + 1271.0, + 1393.0, + 710.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 979.0, + 434.0, + 979.0, + 434.0, + 1021.0, + 292.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 979.0, + 1322.0, + 979.0, + 1322.0, + 1021.0, + 508.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 979.0, + 1405.0, + 979.0, + 1405.0, + 1021.0, + 1394.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1015.0, + 330.0, + 1015.0, + 330.0, + 1048.0, + 295.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1015.0, + 511.0, + 1015.0, + 511.0, + 1048.0, + 403.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1152.0, + 634.0, + 1152.0, + 634.0, + 1201.0, + 291.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1152.0, + 911.0, + 1152.0, + 911.0, + 1201.0, + 820.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1152.0, + 1407.0, + 1152.0, + 1407.0, + 1201.0, + 1136.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1190.0, + 733.0, + 1190.0, + 733.0, + 1229.0, + 295.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 362.0, + 398.0, + 362.0, + 398.0, + 408.0, + 294.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 362.0, + 931.0, + 362.0, + 931.0, + 408.0, + 670.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 362.0, + 1030.0, + 362.0, + 1030.0, + 408.0, + 962.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1494.0, + 607.0, + 1494.0, + 607.0, + 1537.0, + 294.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1494.0, + 689.0, + 1494.0, + 689.0, + 1537.0, + 679.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 642.0, + 665.0, + 642.0, + 665.0, + 686.0, + 295.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 223.0, + 391.0, + 223.0, + 391.0, + 272.0, + 295.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 223.0, + 627.0, + 223.0, + 627.0, + 272.0, + 465.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 223.0, + 829.0, + 223.0, + 829.0, + 272.0, + 777.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 223.0, + 1189.0, + 223.0, + 1189.0, + 272.0, + 915.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 914.0, + 691.0, + 914.0, + 691.0, + 952.0, + 293.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 914.0, + 761.0, + 914.0, + 761.0, + 952.0, + 752.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 496.0, + 584.0, + 496.0, + 584.0, + 535.0, + 295.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 496.0, + 707.0, + 496.0, + 707.0, + 535.0, + 655.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1554.0, + 594.0, + 1554.0, + 594.0, + 1605.0, + 291.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1554.0, + 999.0, + 1554.0, + 999.0, + 1605.0, + 666.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1554.0, + 1166.0, + 1554.0, + 1166.0, + 1605.0, + 1069.0, + 1605.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 27, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1624, + 1405, + 1624, + 1405, + 1748, + 296, + 1748 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 296, + 926, + 1408, + 926, + 1408, + 1070, + 296, + 1070 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 527, + 674, + 1176, + 674, + 1176, + 910, + 527, + 910 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 427, + 219, + 1272, + 219, + 1272, + 570, + 427, + 570 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 1910, + 1404, + 1910, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 525, + 1090, + 1174, + 1090, + 1174, + 1163, + 525, + 1163 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 475, + 1388, + 1225, + 1388, + 1225, + 1446, + 475, + 1446 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 417, + 1240, + 1280, + 1240, + 1280, + 1313, + 417, + 1313 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 298, + 1181, + 1115, + 1181, + 1115, + 1218, + 298, + 1218 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 299, + 1466, + 687, + 1466, + 687, + 1499, + 299, + 1499 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 288, + 1332, + 1327, + 1332, + 1327, + 1368, + 288, + 1368 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 297, + 1550, + 945, + 1550, + 945, + 1587, + 297, + 1587 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 296, + 626, + 444, + 626, + 444, + 658, + 296, + 658 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 1761, + 976, + 1761, + 976, + 1795, + 297, + 1795 + ], + "score": 0.916 + }, + { + "category_id": 8, + "poly": [ + 299, + 1815, + 1395, + 1815, + 1395, + 1892, + 299, + 1892 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2113, + 834, + 2113 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 106, + 296, + 106 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 1373, + 1467, + 1404, + 1467, + 1404, + 1498, + 1373, + 1498 + ], + "score": 0.816 + }, + { + "category_id": 13, + "poly": [ + 948, + 960, + 1404, + 960, + 1404, + 1016, + 948, + 1016 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } { { \\mathbb { E } \\Big [ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } \\Big ] \\ = \\ \\mathbb { E } \\Big [ \\mathrm { t r } ( \\frac { 1 } { n _ { 1 } } { \\bf X } _ { t } ^ { \\top } { \\bf X } _ { t } ) \\Big ] \\ = } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 669, + 1183, + 836, + 1183, + 836, + 1217, + 669, + 1217 + ], + "score": 0.94, + "latex": "n _ { 2 } = n ( 1 - s )" + }, + { + "category_id": 14, + "poly": [ + 428, + 221, + 1269, + 221, + 1269, + 571, + 428, + 571 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { = \\frac { d } { n _ { 2 } } \\cdot \\frac { \\mathbb { E } \\left[ \\left( \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right) ^ { 2 } + ( n _ { 2 } + 1 ) \\sum _ { i = 1 } ^ { d } \\lambda ^ { 4 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 4 } \\right] } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { \\leq \\frac { d } { n _ { 2 } } \\cdot \\frac { d ^ { 2 } + ( n _ { 2 } + 1 ) d } { \\left( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\\\ & { = \\frac { d + n _ { 2 } + 1 } { n _ { 2 } } \\cdot \\frac { 1 } { \\left( \\mathbb { E } \\left[ \\frac { 1 } { d } \\sum _ { i = 1 } ^ { d } \\lambda ^ { 2 } / ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } \\right] \\right) ^ { 2 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 524, + 676, + 1180, + 676, + 1180, + 910, + 524, + 910 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\mathbb { E } \\Bigg [ \\frac { 1 } { d } \\displaystyle \\sum _ { i = 1 } ^ { d } \\frac { \\lambda ^ { 2 } } { ( \\sigma _ { i } ^ { ( n _ { 1 } ) } + \\lambda ) ^ { 2 } } \\Bigg ] \\stackrel { ( i ) } { \\geq } \\mathbb { E } \\left[ \\frac { \\lambda ^ { 2 } } { \\Big ( \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } / d + \\lambda \\Big ) ^ { 2 } } \\right] } \\\\ & { \\stackrel { ( i i ) } { \\geq } \\frac { \\lambda ^ { 2 } } { \\Big ( \\mathbb { E } \\left[ \\sum _ { i = 1 } ^ { d } \\sigma _ { i } ^ { ( n _ { 1 } ) } / d \\right] + \\lambda \\Big ) ^ { 2 } } \\stackrel { ( i i ) } { = } \\frac { \\lambda ^ { 2 } } { ( 1 + \\lambda ) ^ { 2 } } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 927, + 1184, + 1037, + 1184, + 1037, + 1217, + 927, + 1217 + ], + "score": 0.93, + "latex": "s \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 450, + 1976, + 514, + 1976, + 514, + 2007, + 450, + 2007 + ], + "score": 0.92, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 524, + 1089, + 1176, + 1089, + 1176, + 1163, + 524, + 1163 + ], + "score": 0.92, + "latex": "\\mathrm { A s y m M S E } ( \\widehat { \\mathbf w } _ { 0 , T } ^ { \\sf t r - v a l } ( n _ { 1 } , n _ { 2 } ; \\lambda ) ) \\leq \\frac { d + n _ { 2 } + 1 } { n _ { 2 } } \\cdot \\frac { ( 1 + \\lambda ) ^ { 2 } } { \\lambda ^ { 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 888, + 1976, + 1166, + 1976, + 1166, + 2007, + 888, + 2007 + ], + "score": 0.92, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 297, + 1011, + 527, + 1011, + 527, + 1069, + 297, + 1069 + ], + "score": 0.91, + "latex": "\\mathbb { E } \\Big [ \\| \\mathbf { X } _ { t } \\| _ { \\mathsf { F r } } ^ { 2 } / n _ { 1 } \\Big ] = d ." + }, + { + "category_id": 14, + "poly": [ + 310, + 1816, + 1401, + 1816, + 1401, + 1893, + 310, + 1893 + ], + "score": 0.91, + "latex": "\\mathbf { w } _ { 0 , \\star } \\sim \\mathbb { N } \\bigg ( 0 , \\frac { \\sigma _ { w } ^ { 2 } } { d } \\mathbf { I } _ { d } \\bigg ) , \\quad \\mathbf { w } _ { t } | \\mathbf { w } _ { 0 , \\star } \\overset { \\mathrm { i i d } } { \\sim } \\mathbb { N } \\bigg ( \\mathbf { w } _ { 0 , \\star } , \\frac { R ^ { 2 } } { d } \\mathbf { I } _ { d } \\bigg ) , \\quad \\mathbf { y } _ { t } = \\mathbf { X } _ { t } \\mathbf { w } _ { t } + \\sigma \\mathbf { z } _ { t } \\mathrm { w h e r e \\mathbf { z } } _ { t } \\overset { \\mathrm { i i d } } { \\sim } \\mathbb { N } ( 0 , \\mathbf { I } _ { n } ) ." + }, + { + "category_id": 13, + "poly": [ + 781, + 1336, + 870, + 1336, + 870, + 1362, + 781, + 1362 + ], + "score": 0.9, + "latex": "\\lambda \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 921, + 1337, + 987, + 1337, + 987, + 1362, + 921, + 1362 + ], + "score": 0.9, + "latex": "s = 0" + }, + { + "category_id": 14, + "poly": [ + 415, + 1237, + 1284, + 1237, + 1284, + 1312, + 415, + 1312 + ], + "score": 0.9, + "latex": "\\operatorname* { l i m } _ { \\substack { d , n \\infty , d / n \\gamma } } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { s u l } } ( n s , n ( 1 - s ) ; \\lambda ) ) \\leq \\frac { \\gamma + 1 - s } { 1 - s } \\cdot \\frac { ( 1 + \\lambda ) ^ { 2 } } { \\lambda ^ { 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 520, + 1189, + 618, + 1189, + 618, + 1214, + 520, + 1214 + ], + "score": 0.9, + "latex": "n _ { 1 } = n s" + }, + { + "category_id": 13, + "poly": [ + 779, + 928, + 1001, + 928, + 1001, + 965, + 779, + 965 + ], + "score": 0.89, + "latex": "t \\ \\mapsto \\ \\lambda ^ { 2 } / ( t + \\lambda ) ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 472, + 1388, + 1222, + 1388, + 1222, + 1446, + 472, + 1446 + ], + "score": 0.88, + "latex": "\\operatorname* { i n f } _ { \\lambda > 0 , s \\in ( 0 , 1 ) } \\operatorname* { l i m } _ { d , n \\to \\infty , \\ d / n \\to \\gamma } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { v a l } } ( n _ { 1 } , n _ { 2 } ; \\lambda ) ) \\leq 1 + \\gamma ," + }, + { + "category_id": 13, + "poly": [ + 1050, + 931, + 1136, + 931, + 1136, + 961, + 1050, + 961 + ], + "score": 0.88, + "latex": "t ~ \\geq ~ 0" + }, + { + "category_id": 13, + "poly": [ + 666, + 1986, + 700, + 1986, + 700, + 2004, + 666, + 2004 + ], + "score": 0.82, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1924, + 1089, + 1924, + 1089, + 1943, + 1053, + 1943 + ], + "score": 0.79, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 537, + 1469, + 566, + 1469, + 566, + 1499, + 537, + 1499 + ], + "score": 0.41, + "latex": "\\because" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1555.0, + 335.0, + 1555.0, + 335.0, + 1582.0, + 300.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1550.0, + 946.0, + 1550.0, + 946.0, + 1587.0, + 348.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 2084.0, + 872.0, + 2084.0, + 872.0, + 2125.0, + 828.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1472.0, + 1403.0, + 1472.0, + 1403.0, + 1499.0, + 1377.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1623.0, + 1403.0, + 1623.0, + 1403.0, + 1658.0, + 293.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1656.0, + 1403.0, + 1656.0, + 1403.0, + 1685.0, + 295.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1720.0, + 295.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1715.0, + 833.0, + 1715.0, + 833.0, + 1748.0, + 295.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 924.0, + 778.0, + 924.0, + 778.0, + 966.0, + 293.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 924.0, + 1049.0, + 924.0, + 1049.0, + 966.0, + 1002.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 924.0, + 1406.0, + 924.0, + 1406.0, + 966.0, + 1137.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 948.0, + 947.0, + 948.0, + 947.0, + 1027.0, + 288.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1012.0, + 296.0, + 1012.0, + 296.0, + 1072.0, + 293.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1012.0, + 1050.0, + 1012.0, + 1050.0, + 1072.0, + 528.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 1052.0, + 1910.0, + 1052.0, + 1943.0, + 295.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1943.0, + 1090.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1967.0, + 449.0, + 1967.0, + 449.0, + 2008.0, + 290.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1967.0, + 665.0, + 1967.0, + 665.0, + 2008.0, + 515.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1967.0, + 887.0, + 1967.0, + 887.0, + 2008.0, + 701.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1967.0, + 1407.0, + 1967.0, + 1407.0, + 2008.0, + 1167.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1997.0, + 457.0, + 1997.0, + 457.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1180.0, + 519.0, + 1180.0, + 519.0, + 1221.0, + 295.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1180.0, + 668.0, + 1180.0, + 668.0, + 1221.0, + 619.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1180.0, + 926.0, + 1180.0, + 926.0, + 1221.0, + 837.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1180.0, + 1114.0, + 1180.0, + 1114.0, + 1221.0, + 1038.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1464.0, + 536.0, + 1464.0, + 536.0, + 1502.0, + 296.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1464.0, + 688.0, + 1464.0, + 688.0, + 1502.0, + 567.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1332.0, + 780.0, + 1332.0, + 780.0, + 1368.0, + 294.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1332.0, + 920.0, + 1332.0, + 920.0, + 1368.0, + 871.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1332.0, + 1330.0, + 1332.0, + 1330.0, + 1368.0, + 988.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 623.0, + 447.0, + 623.0, + 447.0, + 660.0, + 296.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1760.0, + 977.0, + 1760.0, + 977.0, + 1796.0, + 296.0, + 1796.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 28, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1800, + 1406, + 1800, + 1406, + 1930, + 297, + 1930 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 539, + 1259, + 1158, + 1259, + 1158, + 1445, + 539, + 1445 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 307, + 356, + 1397, + 356, + 1397, + 702, + 307, + 702 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 298, + 709, + 1406, + 709, + 1406, + 802, + 298, + 802 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1405, + 229, + 1405, + 304, + 296, + 304 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 298, + 1456, + 1402, + 1456, + 1402, + 1523, + 298, + 1523 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 527, + 1165, + 1170, + 1165, + 1170, + 1223, + 527, + 1223 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 620, + 1603, + 1076, + 1603, + 1076, + 1790, + 620, + 1790 + ], + "score": 0.936 + }, + { + "category_id": 2, + "poly": [ + 297, + 1945, + 1403, + 1945, + 1403, + 2035, + 297, + 2035 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 710, + 1527, + 988, + 1527, + 988, + 1569, + 710, + 1569 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 294, + 1095, + 1416, + 1095, + 1416, + 1159, + 294, + 1159 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 1572, + 370, + 1572, + 370, + 1600, + 298, + 1600 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 298, + 1227, + 370, + 1227, + 370, + 1256, + 298, + 1256 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 299, + 315, + 1152, + 315, + 1152, + 349, + 299, + 349 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 866, + 2087, + 866, + 2113, + 835, + 2113 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.875 + }, + { + "category_id": 8, + "poly": [ + 320, + 813, + 954, + 813, + 954, + 898, + 320, + 898 + ], + "score": 0.623 + }, + { + "category_id": 8, + "poly": [ + 303, + 811, + 1453, + 811, + 1453, + 1089, + 303, + 1089 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 305, + 907, + 556, + 907, + 556, + 991, + 305, + 991 + ], + "score": 0.526 + }, + { + "category_id": 8, + "poly": [ + 348, + 1000, + 1447, + 1000, + 1447, + 1087, + 348, + 1087 + ], + "score": 0.523 + }, + { + "category_id": 14, + "poly": [ + 311, + 352, + 1406, + 352, + 1406, + 708, + 311, + 708 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { p ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } | \\mathbf { w } _ { 0 , \\star } ) \\propto \\displaystyle \\int p ( \\mathbf { w } _ { t } | \\mathbf { w } _ { 0 , \\star } ) \\cdot p ( \\mathbf { y } _ { t } | \\mathbf { X } _ { t } , \\mathbf { w } _ { t } ) d \\mathbf { w } _ { t } } \\\\ & { \\displaystyle \\times \\displaystyle \\int \\exp ( - \\frac { \\| \\mathbf { w } _ { t } - \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { 2 R ^ { 2 } / d } ) \\cdot \\exp ( - \\frac { \\| \\mathbf { y } _ { t } - \\mathbf { X } _ { t } \\mathbf { w } _ { t } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } ) d \\mathbf { w } _ { t } } \\\\ & { \\displaystyle \\overset { ( i ) } { \\propto } \\exp ( - \\frac { \\| \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { 2 R ^ { 2 } / d } + \\frac { 1 } { 2 } \\Big ( \\frac { \\mathbf { w } _ { 0 , \\star } } { R ^ { 2 } / d } + \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { \\sigma ^ { 2 } } \\Big ) ^ { \\top } \\Big ( \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { \\sigma ^ { 2 } } + \\frac { \\mathbf { I } _ { d } } { R ^ { 2 } / d } \\Big ) ^ { - 1 } \\Big ( \\frac { \\mathbf { w } _ { 0 , \\star } } { R ^ { 2 } / d } + \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { \\sigma ^ { 2 } } \\Big ) ) } \\\\ & \\displaystyle \\times \\exp ( - \\frac { 1 } { 2 } \\mathbf { w } _ { 0 , \\star } ^ { \\top } ( ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { R ^ { 2 } / d } ) \\mathbf { w } _ { 0 , \\star } + \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\Big ( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\Big ) ^ { - 1 } \\frac \\mathbf { X } _ { t } ^ \\top \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 310, + 805, + 1428, + 805, + 1428, + 1093, + 310, + 1093 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { p \\Big ( \\mathbf { w } _ { 0 , \\star } | \\{ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\} _ { t = 1 } ^ { T } \\Big ) \\propto p ( \\mathbf { w } _ { 0 , \\star } ) \\cdot \\displaystyle \\prod _ { t = 1 } ^ { T } p ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } | \\mathbf { w } _ { 0 , \\star } ) } \\\\ & { \\propto \\exp \\left( - \\frac { \\displaystyle \\| \\mathbf { w } _ { 0 , \\star } \\| ^ { 2 } } { \\displaystyle 2 \\sigma _ { w } ^ { 2 } / d } \\right) \\cdot } \\\\ & { \\qquad \\displaystyle \\prod _ { t = 1 } ^ { T } \\exp \\left( - \\frac { 1 } { 2 } \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\left( \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\right) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { R ^ { 2 } / d } \\right) \\mathbf { w } _ { 0 , \\star } + \\mathbf { w } _ { 0 , \\star } ^ { \\top } \\left( \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } + \\frac { d \\sigma ^ { 2 } } { R ^ { 2 } } \\mathbf { I } _ { d } \\right) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { y } _ { t } } { R ^ { 2 } / d } \\right. } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 649, + 1802, + 712, + 1802, + 712, + 1841, + 649, + 1841 + ], + "score": 0.92, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 620, + 1599, + 1079, + 1599, + 1079, + 1795, + 620, + 1795 + ], + "score": 0.92, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 454, + 1456, + 530, + 1456, + 530, + 1497, + 454, + 1497 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 992, + 265, + 1162, + 265, + 1162, + 304, + 992, + 304 + ], + "score": 0.91, + "latex": "4" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1982, + 1269, + 1982, + 1269, + 2009, + 1179, + 2009 + ], + "score": 0.91, + "latex": "\\mathsf { N } ( { \\boldsymbol { \\mu } } , { \\boldsymbol { \\Sigma } } )" + }, + { + "category_id": 13, + "poly": [ + 336, + 1798, + 412, + 1798, + 412, + 1841, + 336, + 1841 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { B a y e s } }" + }, + { + "category_id": 13, + "poly": [ + 395, + 2006, + 511, + 2006, + 511, + 2034, + 395, + 2034 + ], + "score": 0.89, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 825, + 1953, + 857, + 1953, + 857, + 1975, + 825, + 1975 + ], + "score": 0.88, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 470, + 1978, + 832, + 1978, + 832, + 2008, + 470, + 2008 + ], + "score": 0.88, + "latex": "p ( \\mathbf { w } ) \\propto \\mathrm { e x p } ( - \\mathbf { w } ^ { \\top } \\mathbf { A } \\mathbf { w } / 2 + \\mathbf { w } ^ { \\top } \\mathbf { c } )" + }, + { + "category_id": 14, + "poly": [ + 540, + 1258, + 1157, + 1258, + 1157, + 1451, + 540, + 1451 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 613, + 741, + 669, + 741, + 669, + 772, + 613, + 772 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 770, + 270, + 826, + 270, + 826, + 303, + 770, + 303 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 789, + 1108, + 844, + 1108, + 844, + 1130, + 789, + 1130 + ], + "score": 0.87, + "latex": "\\mathbf { w } _ { 0 , \\star }" + }, + { + "category_id": 13, + "poly": [ + 337, + 1870, + 443, + 1870, + 443, + 1898, + 337, + 1898 + ], + "score": 0.86, + "latex": "\\sigma _ { w } = \\infty" + }, + { + "category_id": 14, + "poly": [ + 528, + 1165, + 1166, + 1165, + 1166, + 1222, + 528, + 1222 + ], + "score": 0.86, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathsf { B a y e s } } : = \\mathbb { E } \\Big [ \\mathbf { w } _ { 0 , \\star } \\ | \\ \\{ ( \\mathbf { X } _ { t } , \\mathbf { y } _ { t } ) \\} _ { t = 1 } ^ { T } \\Big ] = ( \\mathbf { A } _ { T } ^ { \\mathsf { B a y e s } } ) ^ { - 1 } \\mathbf { c } _ { T } ^ { \\mathsf { B a y e s } } ," + }, + { + "category_id": 13, + "poly": [ + 595, + 2007, + 710, + 2007, + 710, + 2035, + 595, + 2035 + ], + "score": 0.86, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 709, + 1524, + 986, + 1524, + 986, + 1569, + 709, + 1569 + ], + "score": 0.85, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 1110, + 713, + 1146, + 713, + 1146, + 739, + 1110, + 739 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 298, + 2004, + 349, + 2004, + 349, + 2031, + 298, + 2031 + ], + "score": 0.85, + "latex": "\\Sigma ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1170, + 234, + 1225, + 234, + 1225, + 266, + 1170, + 266 + ], + "score": 0.85, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 299, + 781, + 353, + 781, + 353, + 803, + 299, + 803 + ], + "score": 0.84, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1107, + 320, + 1142, + 320, + 1142, + 347, + 1107, + 347 + ], + "score": 0.82, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 669, + 1875, + 723, + 1875, + 723, + 1903, + 669, + 1903 + ], + "score": 0.81, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 826, + 1840, + 845, + 1840, + 845, + 1864, + 826, + 1864 + ], + "score": 0.8, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 529, + 1951, + 562, + 1951, + 562, + 1975, + 529, + 1975 + ], + "score": 0.79, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1348, + 1979, + 1406, + 1979, + 1406, + 2007, + 1348, + 2007 + ], + "score": 0.69, + "latex": "\\mathbf { A } =" + }, + { + "category_id": 13, + "poly": [ + 1218, + 713, + 1243, + 713, + 1243, + 736, + 1218, + 736 + ], + "score": 0.54, + "latex": "\\cdot" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1941.0, + 528.0, + 1941.0, + 528.0, + 1978.0, + 331.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1941.0, + 824.0, + 1941.0, + 824.0, + 1978.0, + 563.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1941.0, + 1241.0, + 1941.0, + 1241.0, + 1978.0, + 858.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1971.0, + 469.0, + 1971.0, + 469.0, + 2011.0, + 330.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1971.0, + 1178.0, + 1971.0, + 1178.0, + 2011.0, + 833.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1971.0, + 1347.0, + 1971.0, + 1347.0, + 2011.0, + 1270.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 2000.0, + 394.0, + 2000.0, + 394.0, + 2036.0, + 350.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 2000.0, + 594.0, + 2000.0, + 594.0, + 2036.0, + 512.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 2000.0, + 724.0, + 2000.0, + 724.0, + 2036.0, + 711.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1796.0, + 648.0, + 1796.0, + 648.0, + 1839.0, + 413.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1796.0, + 1408.0, + 1796.0, + 1408.0, + 1839.0, + 713.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1834.0, + 825.0, + 1834.0, + 825.0, + 1871.0, + 292.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1834.0, + 1407.0, + 1834.0, + 1407.0, + 1871.0, + 846.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1867.0, + 336.0, + 1867.0, + 336.0, + 1901.0, + 292.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1867.0, + 668.0, + 1867.0, + 668.0, + 1901.0, + 444.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1867.0, + 1406.0, + 1867.0, + 1406.0, + 1901.0, + 724.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1892.0, + 421.0, + 1892.0, + 421.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.25, + 1802.0, + 419.25, + 1802.0, + 419.25, + 1841.5, + 295.25, + 1841.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 706.0, + 1109.0, + 706.0, + 1109.0, + 740.0, + 296.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 706.0, + 1217.0, + 706.0, + 1217.0, + 740.0, + 1147.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 706.0, + 1406.0, + 706.0, + 1406.0, + 740.0, + 1244.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 736.0, + 612.0, + 736.0, + 612.0, + 770.0, + 293.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 736.0, + 1404.0, + 736.0, + 1404.0, + 770.0, + 670.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 768.0, + 298.0, + 768.0, + 298.0, + 804.0, + 293.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 768.0, + 487.0, + 768.0, + 487.0, + 804.0, + 354.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 1169.0, + 225.0, + 1169.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 225.0, + 1403.0, + 225.0, + 1403.0, + 267.0, + 1226.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 255.0, + 769.0, + 255.0, + 769.0, + 313.0, + 289.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 255.0, + 991.0, + 255.0, + 991.0, + 313.0, + 827.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 255.0, + 1176.0, + 255.0, + 1176.0, + 313.0, + 1163.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1443.0, + 453.0, + 1443.0, + 453.0, + 1499.0, + 288.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1443.0, + 1411.0, + 1443.0, + 1411.0, + 1499.0, + 531.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 1067.0, + 1487.0, + 1067.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1091.0, + 788.0, + 1091.0, + 788.0, + 1130.0, + 294.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1091.0, + 1404.0, + 1091.0, + 1404.0, + 1130.0, + 845.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1126.0, + 447.0, + 1126.0, + 447.0, + 1162.0, + 289.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1570.0, + 374.0, + 1570.0, + 374.0, + 1602.0, + 295.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 375.0, + 1223.0, + 375.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 310.0, + 1106.0, + 310.0, + 1106.0, + 354.0, + 294.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 310.0, + 1156.0, + 310.0, + 1156.0, + 354.0, + 1143.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 933.5, + 385.0, + 933.5, + 385.0, + 968.0, + 303.0, + 968.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 29, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 657, + 1404, + 657, + 1404, + 964, + 297, + 964 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1071, + 1403, + 1071, + 1403, + 1225, + 298, + 1225 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1240, + 1403, + 1240, + 1403, + 1424, + 298, + 1424 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 492, + 1403, + 492, + 1403, + 615, + 297, + 615 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1912, + 1403, + 1912, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 5, + "poly": [ + 298, + 1528, + 1403, + 1528, + 1403, + 1641, + 298, + 1641 + ], + "score": 0.973, + "html": "
datasetsn1 =25,n2=5n1 =15,n2=15n1=5,n2=25
miniImageNet62.09 ± 0.9763.56 ± 0.9563.92 ± 1.04
tieredImageNet66.45 ± 1.0567.30 ± 0.9867.50 ± 0.94
" + }, + { + "category_id": 1, + "poly": [ + 299, + 375, + 1401, + 375, + 1401, + 477, + 299, + 477 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 1806, + 1399, + 1806, + 1399, + 1868, + 298, + 1868 + ], + "score": 0.953 + }, + { + "category_id": 6, + "poly": [ + 299, + 1459, + 1398, + 1459, + 1398, + 1522, + 299, + 1522 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 300, + 1730, + 1238, + 1730, + 1238, + 1766, + 300, + 1766 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 294, + 300, + 1376, + 300, + 1376, + 333, + 294, + 333 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2112, + 835, + 2112 + ], + "score": 0.817 + }, + { + "category_id": 0, + "poly": [ + 299, + 1013, + 1064, + 1013, + 1064, + 1042, + 299, + 1042 + ], + "score": 0.731 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.708 + }, + { + "category_id": 0, + "poly": [ + 294, + 229, + 1291, + 229, + 1291, + 261, + 294, + 261 + ], + "score": 0.611 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.216 + }, + { + "category_id": 1, + "poly": [ + 299, + 1013, + 1064, + 1013, + 1064, + 1042, + 299, + 1042 + ], + "score": 0.192 + }, + { + "category_id": 13, + "poly": [ + 1074, + 407, + 1314, + 407, + 1314, + 448, + 1074, + 448 + ], + "score": 0.93, + "latex": "\\nabla _ { \\mathbf { w } _ { 0 } } \\ell _ { t } ^ { \\{ \\mathsf { t r } - \\mathsf { v a l } , \\mathsf { t r } - \\mathsf { t r } \\} } ( \\mathbf { w } _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 581, + 1073, + 673, + 1073, + 673, + 1106, + 581, + 1106 + ], + "score": 0.93, + "latex": "( n _ { 1 } , n _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1163, + 1239, + 1163, + 1239, + 1197, + 1028, + 1197 + ], + "score": 0.93, + "latex": "( n _ { 1 } , n _ { 2 } ) = ( 5 , 2 5 )" + }, + { + "category_id": 13, + "poly": [ + 612, + 811, + 762, + 811, + 762, + 840, + 612, + 840 + ], + "score": 0.92, + "latex": "8 4 \\times 8 4 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 936, + 2009, + 979, + 2009, + 979, + 2038, + 936, + 2038 + ], + "score": 0.92, + "latex": "\\hat { \\mathbf { w } } _ { 0 } ^ { \\mathrm { c v } }" + }, + { + "category_id": 13, + "poly": [ + 865, + 720, + 1007, + 720, + 1007, + 749, + 865, + 749 + ], + "score": 0.91, + "latex": "8 4 \\times 8 4 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 819, + 1947, + 1032, + 1947, + 1032, + 1977, + 819, + 1977 + ], + "score": 0.91, + "latex": "( n _ { 1 } , n _ { 2 } ) \\ : = \\ : ( 1 5 , 5 )" + }, + { + "category_id": 13, + "poly": [ + 540, + 1947, + 753, + 1947, + 753, + 1976, + 540, + 1976 + ], + "score": 0.91, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 1061, + 451, + 1099, + 451, + 1099, + 477, + 1061, + 477 + ], + "score": 0.86, + "latex": "\\mathbf { w } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 823, + 1919, + 913, + 1919, + 913, + 1939, + 823, + 1939 + ], + "score": 0.86, + "latex": "n = 2 0" + }, + { + "category_id": 13, + "poly": [ + 932, + 418, + 970, + 418, + 970, + 446, + 932, + 446 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 395, + 449, + 432, + 449, + 432, + 476, + 395, + 476 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 771, + 419, + 807, + 419, + 807, + 445, + 771, + 445 + ], + "score": 0.84, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 731, + 1107, + 764, + 1107, + 764, + 1133, + 731, + 1133 + ], + "score": 0.84, + "latex": "n _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1215, + 526, + 1252, + 526, + 1252, + 554, + 1215, + 554 + ], + "score": 0.81, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 846, + 1490, + 889, + 1490, + 889, + 1521, + 846, + 1521 + ], + "score": 0.81, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 1007, + 555, + 1026, + 555, + 1026, + 581, + 1007, + 581 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 1404.0, + 1459.0, + 1404.0, + 1494.0, + 295.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1491.0, + 845.0, + 1491.0, + 845.0, + 1522.0, + 296.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1491.0, + 1326.0, + 1491.0, + 1326.0, + 1522.0, + 890.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1729.0, + 1243.0, + 1729.0, + 1243.0, + 1767.0, + 296.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1010.0, + 1067.0, + 1010.0, + 1067.0, + 1045.0, + 296.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 226.0, + 1296.0, + 226.0, + 1296.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 657.0, + 1405.0, + 657.0, + 1405.0, + 692.0, + 294.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 686.0, + 1404.0, + 686.0, + 1404.0, + 724.0, + 292.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 716.0, + 864.0, + 716.0, + 864.0, + 753.0, + 292.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 716.0, + 1405.0, + 716.0, + 1405.0, + 753.0, + 1008.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 748.0, + 1404.0, + 748.0, + 1404.0, + 784.0, + 295.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 814.0, + 294.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 808.0, + 611.0, + 808.0, + 611.0, + 844.0, + 295.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 808.0, + 1402.0, + 808.0, + 1402.0, + 844.0, + 763.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 841.0, + 1406.0, + 841.0, + 1406.0, + 875.0, + 294.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 1405.0, + 870.0, + 1405.0, + 906.0, + 295.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 902.0, + 1404.0, + 902.0, + 1404.0, + 938.0, + 295.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 933.0, + 824.0, + 933.0, + 824.0, + 967.0, + 292.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1073.0, + 580.0, + 1073.0, + 580.0, + 1106.0, + 297.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1073.0, + 1404.0, + 1073.0, + 1404.0, + 1106.0, + 674.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1103.0, + 730.0, + 1103.0, + 730.0, + 1136.0, + 296.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1103.0, + 1404.0, + 1103.0, + 1404.0, + 1136.0, + 765.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1131.0, + 1405.0, + 1131.0, + 1405.0, + 1167.0, + 293.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1161.0, + 1027.0, + 1161.0, + 1027.0, + 1200.0, + 292.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1200.0, + 1240.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1193.0, + 1294.0, + 1193.0, + 1294.0, + 1227.0, + 293.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1241.0, + 1404.0, + 1241.0, + 1404.0, + 1272.0, + 297.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1272.0, + 1405.0, + 1272.0, + 1405.0, + 1304.0, + 294.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1299.0, + 1407.0, + 1299.0, + 1407.0, + 1337.0, + 292.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1332.0, + 1402.0, + 1332.0, + 1402.0, + 1366.0, + 293.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1364.0, + 1404.0, + 1364.0, + 1404.0, + 1395.0, + 294.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1393.0, + 433.0, + 1393.0, + 433.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 492.0, + 1405.0, + 492.0, + 1405.0, + 524.0, + 295.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 522.0, + 1214.0, + 522.0, + 1214.0, + 555.0, + 293.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 522.0, + 1407.0, + 522.0, + 1407.0, + 555.0, + 1253.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 551.0, + 1006.0, + 551.0, + 1006.0, + 590.0, + 292.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 551.0, + 1404.0, + 551.0, + 1404.0, + 590.0, + 1027.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 584.0, + 1006.0, + 584.0, + 1006.0, + 616.0, + 293.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1907.0, + 822.0, + 1907.0, + 822.0, + 1944.0, + 292.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1907.0, + 1405.0, + 1907.0, + 1405.0, + 1944.0, + 914.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 539.0, + 1941.0, + 539.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1941.0, + 818.0, + 1941.0, + 818.0, + 1977.0, + 754.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1977.0, + 1033.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2005.0, + 294.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 935.0, + 2001.0, + 935.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2037.0, + 980.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 372.0, + 1405.0, + 372.0, + 1405.0, + 413.0, + 294.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 401.0, + 770.0, + 401.0, + 770.0, + 460.0, + 289.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 401.0, + 931.0, + 401.0, + 931.0, + 460.0, + 808.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 401.0, + 1073.0, + 401.0, + 1073.0, + 460.0, + 971.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 441.0, + 394.0, + 441.0, + 394.0, + 484.0, + 293.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 441.0, + 1060.0, + 441.0, + 1060.0, + 484.0, + 433.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 441.0, + 1300.0, + 441.0, + 1300.0, + 484.0, + 1100.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 402.0, + 1406.0, + 402.0, + 1406.0, + 450.0, + 1122.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1804.0, + 1405.0, + 1804.0, + 1405.0, + 1840.0, + 296.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1834.0, + 956.0, + 1834.0, + 956.0, + 1870.0, + 297.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 298.0, + 1380.0, + 298.0, + 1380.0, + 337.0, + 296.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1010.0, + 1067.0, + 1010.0, + 1067.0, + 1045.0, + 296.0, + 1045.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 30, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1723, + 1405, + 1723, + 1405, + 2035, + 296, + 2035 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1364, + 1404, + 1364, + 1404, + 1521, + 297, + 1521 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 432, + 594, + 1232, + 594, + 1232, + 1164, + 432, + 1164 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1553, + 1404, + 1553, + 1404, + 1708, + 297, + 1708 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 465, + 280, + 1234, + 280, + 1234, + 470, + 465, + 470 + ], + "score": 0.957 + }, + { + "category_id": 4, + "poly": [ + 296, + 1187, + 1405, + 1187, + 1405, + 1291, + 296, + 1291 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 230, + 681, + 230, + 681, + 262, + 296, + 262 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 855, + 74, + 855, + 106, + 297, + 106 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 290, + 483, + 1401, + 483, + 1401, + 546, + 290, + 546 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.862 + }, + { + "category_id": 14, + "poly": [ + 465, + 276, + 1233, + 276, + 1233, + 473, + 465, + 473 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\ell _ { t } ^ { \\mathrm { c v } } ( \\mathbf w _ { 0 } ) : = \\displaystyle \\frac { 1 } { 4 } \\sum _ { j = 1 } ^ { 4 } \\frac { 1 } { 2 n _ { v \\mathrm { e l } } } \\left\\| \\mathbf { y } _ { t } ^ { \\mathrm { v a l } , j } - \\mathbf { X } _ { t } ^ { \\mathrm { v a l } , j } \\mathcal { A } _ { \\lambda } ( \\mathbf w _ { 0 } ; \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } , j } , \\mathbf { y } _ { t } ^ { \\mathrm { t r a i n } , j } ) \\right\\| ^ { 2 } , } \\\\ & { \\quad \\widehat { \\mathbf { w } } _ { 0 } ^ { \\mathrm { c v } } = \\displaystyle \\arg \\operatorname* { m i n } _ { \\mathbf { w } _ { 0 } } \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\ell _ { t } ^ { \\mathrm { c v } } ( \\mathbf w _ { 0 } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 954, + 1856, + 1000, + 1856, + 1000, + 1885, + 954, + 1885 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 745, + 1188, + 908, + 1188, + 908, + 1234, + 745, + 1234 + ], + "score": 0.91, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r , t r - v a l , c v } \\} }" + }, + { + "category_id": 13, + "poly": [ + 558, + 1616, + 764, + 1616, + 764, + 1649, + 558, + 1649 + ], + "score": 0.9, + "latex": "( n _ { 1 } , n _ { 2 } ) = ( 1 , 3 9 )" + }, + { + "category_id": 13, + "poly": [ + 728, + 1460, + 809, + 1460, + 809, + 1489, + 728, + 1489 + ], + "score": 0.9, + "latex": "n _ { 1 } = 5" + }, + { + "category_id": 13, + "poly": [ + 1044, + 1195, + 1093, + 1195, + 1093, + 1229, + 1044, + 1229 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 799, + 1366, + 1027, + 1366, + 1027, + 1400, + 799, + 1400 + ], + "score": 0.89, + "latex": "( n _ { 1 } , n _ { 2 } ) ~ = ~ ( 1 5 , 5 )" + }, + { + "category_id": 13, + "poly": [ + 527, + 1788, + 803, + 1788, + 803, + 1824, + 527, + 1824 + ], + "score": 0.89, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 471, + 1755, + 695, + 1755, + 695, + 1787, + 471, + 1787 + ], + "score": 0.89, + "latex": "( n _ { 1 } , n _ { 2 } ) = ( 1 , 1 9 9 )" + }, + { + "category_id": 13, + "poly": [ + 344, + 1229, + 463, + 1229, + 463, + 1259, + 344, + 1259 + ], + "score": 0.89, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1366, + 1318, + 1366, + 1318, + 1400, + 1091, + 1400 + ], + "score": 0.89, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 298, + 1618, + 506, + 1618, + 506, + 1649, + 298, + 1649 + ], + "score": 0.88, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 1257, + 1852, + 1351, + 1852, + 1351, + 1879, + 1257, + 1879 + ], + "score": 0.86, + "latex": "n = 2 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 1882, + 392, + 1882, + 392, + 1910, + 298, + 1910 + ], + "score": 0.86, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 945, + 1925, + 963, + 1925, + 963, + 1939, + 945, + 1939 + ], + "score": 0.86, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1229, + 1374, + 1229, + 1374, + 1259, + 1281, + 1259 + ], + "score": 0.86, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 394, + 1586, + 478, + 1586, + 478, + 1613, + 394, + 1613 + ], + "score": 0.83, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 618, + 1196, + 645, + 1196, + 645, + 1227, + 618, + 1227 + ], + "score": 0.83, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1957, + 652, + 1957, + 652, + 1970, + 634, + 1970 + ], + "score": 0.83, + "latex": "\\textit { \\textbf { u } }" + }, + { + "category_id": 13, + "poly": [ + 499, + 488, + 515, + 488, + 515, + 515, + 499, + 515 + ], + "score": 0.81, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1310, + 1196, + 1401, + 1196, + 1401, + 1226, + 1310, + 1226 + ], + "score": 0.78, + "latex": "( n = 2 0" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1793, + 1285, + 1793, + 1285, + 1817, + 1268, + 1817 + ], + "score": 0.73, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 814, + 1734, + 833, + 1734, + 833, + 1751, + 814, + 1751 + ], + "score": 0.69, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 298, + 2012, + 317, + 2012, + 317, + 2030, + 298, + 2030 + ], + "score": 0.68, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 580, + 1197, + 606, + 1197, + 606, + 1224, + 580, + 1224 + ], + "score": 0.67, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 547, + 1125, + 578, + 1125, + 578, + 1159, + 547, + 1159 + ], + "score": 0.31, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 588.0, + 538.0, + 588.0, + 538.0, + 631.0, + 491.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 628.0, + 1102.0, + 628.0, + 1102.0, + 642.0, + 1090.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 662.0, + 457.0, + 662.0, + 457.0, + 681.0, + 434.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 669.0, + 516.0, + 669.0, + 516.0, + 954.0, + 423.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 690.0, + 1083.0, + 690.0, + 1083.0, + 703.0, + 1070.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 692.0, + 1047.0, + 692.0, + 1047.0, + 704.0, + 1034.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 698.0, + 1063.0, + 698.0, + 1063.0, + 706.0, + 1055.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 701.0, + 1009.0, + 701.0, + 1009.0, + 717.0, + 994.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 704.0, + 954.0, + 704.0, + 954.0, + 720.0, + 937.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 743.0, + 533.0, + 743.0, + 533.0, + 780.0, + 491.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 723.0, + 812.0, + 723.0, + 812.0, + 782.0, + 615.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 758.0, + 858.0, + 758.0, + 858.0, + 773.0, + 846.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 749.0, + 934.0, + 749.0, + 934.0, + 766.0, + 918.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 763.0, + 992.0, + 763.0, + 992.0, + 780.0, + 976.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 740.0, + 1027.0, + 740.0, + 1027.0, + 754.0, + 1014.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 777.0, + 973.0, + 777.0, + 973.0, + 795.0, + 957.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 807.0, + 803.0, + 807.0, + 803.0, + 824.0, + 788.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 810.0, + 841.0, + 810.0, + 841.0, + 827.0, + 825.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 818.0, + 874.0, + 818.0, + 874.0, + 826.0, + 866.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 810.0, + 896.0, + 810.0, + 896.0, + 827.0, + 879.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 817.0, + 913.0, + 817.0, + 913.0, + 830.0, + 901.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 802.0, + 1229.0, + 802.0, + 1229.0, + 834.0, + 968.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 824.0, + 766.0, + 824.0, + 766.0, + 841.0, + 751.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 828.0, + 820.0, + 828.0, + 820.0, + 841.0, + 809.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 832.0, + 1138.0, + 832.0, + 1138.0, + 860.0, + 1057.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 867.0, + 963.0, + 867.0, + 963.0, + 905.0, + 802.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 890.0, + 1068.0, + 890.0, + 1068.0, + 906.0, + 1050.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 898.0, + 530.0, + 898.0, + 530.0, + 928.0, + 506.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 900.0, + 984.0, + 900.0, + 984.0, + 928.0, + 770.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 907.0, + 1043.0, + 907.0, + 1043.0, + 915.0, + 1035.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 917.0, + 500.0, + 917.0, + 500.0, + 1001.0, + 461.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 922.0, + 671.0, + 922.0, + 671.0, + 939.0, + 655.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 929.0, + 706.0, + 929.0, + 706.0, + 942.0, + 695.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 921.0, + 728.0, + 921.0, + 728.0, + 939.0, + 711.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 930.0, + 895.0, + 930.0, + 895.0, + 942.0, + 881.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 939.0, + 689.0, + 939.0, + 689.0, + 955.0, + 673.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 937.0, + 860.0, + 937.0, + 860.0, + 953.0, + 826.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 942.0, + 1084.0, + 942.0, + 1084.0, + 953.0, + 1071.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 949.0, + 635.0, + 949.0, + 635.0, + 966.0, + 618.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 950.0, + 617.0, + 950.0, + 617.0, + 967.0, + 600.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 964.0, + 707.0, + 964.0, + 707.0, + 978.0, + 694.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 978.0, + 669.0, + 978.0, + 669.0, + 991.0, + 656.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 981.0, + 1082.0, + 981.0, + 1082.0, + 989.0, + 1073.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 988.0, + 1043.0, + 988.0, + 1043.0, + 995.0, + 1035.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1002.0, + 559.0, + 1002.0, + 559.0, + 1018.0, + 543.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1004.0, + 931.0, + 1004.0, + 931.0, + 1013.0, + 922.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 998.0, + 971.0, + 998.0, + 971.0, + 1010.0, + 958.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1022.0, + 613.0, + 1022.0, + 613.0, + 1032.0, + 605.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1017.0, + 875.0, + 1017.0, + 875.0, + 1030.0, + 864.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1011.0, + 1236.0, + 1011.0, + 1236.0, + 1039.0, + 979.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1030.0, + 576.0, + 1030.0, + 576.0, + 1035.0, + 571.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1048.0, + 533.0, + 1048.0, + 533.0, + 1081.0, + 506.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1037.0, + 670.0, + 1037.0, + 670.0, + 1049.0, + 656.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1032.0, + 884.0, + 1032.0, + 884.0, + 1060.0, + 718.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1040.0, + 1141.0, + 1040.0, + 1141.0, + 1064.0, + 1073.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1072.0, + 543.0, + 1072.0, + 543.0, + 1102.0, + 520.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1070.0, + 651.0, + 1070.0, + 651.0, + 1107.0, + 601.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1074.0, + 731.0, + 1074.0, + 731.0, + 1103.0, + 708.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1069.0, + 840.0, + 1069.0, + 840.0, + 1107.0, + 789.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1073.0, + 921.0, + 1073.0, + 921.0, + 1104.0, + 894.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1070.0, + 1028.0, + 1070.0, + 1028.0, + 1107.0, + 977.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1071.0, + 1109.0, + 1071.0, + 1109.0, + 1104.0, + 1082.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1107.0, + 546.0, + 1107.0, + 546.0, + 1176.0, + 540.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1107.0, + 1089.0, + 1107.0, + 1089.0, + 1176.0, + 579.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1185.0, + 1043.0, + 1185.0, + 1043.0, + 1233.0, + 909.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1185.0, + 1309.0, + 1185.0, + 1309.0, + 1233.0, + 1094.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1185.0, + 1406.0, + 1185.0, + 1406.0, + 1233.0, + 1402.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 343.0, + 1228.0, + 343.0, + 1263.0, + 294.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1228.0, + 1280.0, + 1228.0, + 1280.0, + 1263.0, + 464.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1228.0, + 1406.0, + 1228.0, + 1406.0, + 1263.0, + 1375.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1260.0, + 372.0, + 1260.0, + 372.0, + 1291.0, + 292.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1181.5, + 925.0, + 1181.5, + 925.0, + 1237.5, + 287.0, + 1237.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1719.0, + 813.0, + 1719.0, + 813.0, + 1757.0, + 295.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1719.0, + 1406.0, + 1719.0, + 1406.0, + 1757.0, + 834.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1750.0, + 470.0, + 1750.0, + 470.0, + 1786.0, + 295.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1750.0, + 1403.0, + 1750.0, + 1403.0, + 1786.0, + 696.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1770.0, + 526.0, + 1770.0, + 526.0, + 1833.0, + 284.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1770.0, + 1267.0, + 1770.0, + 1267.0, + 1833.0, + 804.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1770.0, + 1414.0, + 1770.0, + 1414.0, + 1833.0, + 1286.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1853.0, + 295.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1848.0, + 953.0, + 1848.0, + 953.0, + 1884.0, + 295.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1848.0, + 1256.0, + 1848.0, + 1256.0, + 1884.0, + 1001.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1884.0, + 1352.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1880.0, + 1401.0, + 1880.0, + 1401.0, + 1912.0, + 393.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1911.0, + 944.0, + 1911.0, + 944.0, + 1943.0, + 296.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1911.0, + 1403.0, + 1911.0, + 1403.0, + 1943.0, + 964.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 633.0, + 1941.0, + 633.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1976.0, + 653.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 297.0, + 2000.0, + 297.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 2000.0, + 742.0, + 2000.0, + 742.0, + 2037.0, + 318.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1359.0, + 798.0, + 1359.0, + 798.0, + 1404.0, + 292.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1359.0, + 1090.0, + 1359.0, + 1090.0, + 1404.0, + 1028.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1359.0, + 1408.0, + 1359.0, + 1408.0, + 1404.0, + 1319.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1397.0, + 1404.0, + 1397.0, + 1404.0, + 1430.0, + 296.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1424.0, + 1404.0, + 1424.0, + 1404.0, + 1463.0, + 295.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1452.0, + 727.0, + 1452.0, + 727.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1452.0, + 1405.0, + 1452.0, + 1405.0, + 1496.0, + 810.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1488.0, + 1355.0, + 1488.0, + 1355.0, + 1521.0, + 295.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1587.0, + 296.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1581.0, + 393.0, + 1581.0, + 393.0, + 1620.0, + 294.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1581.0, + 1406.0, + 1581.0, + 1406.0, + 1620.0, + 479.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1613.0, + 557.0, + 1613.0, + 557.0, + 1649.0, + 507.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1613.0, + 1406.0, + 1613.0, + 1406.0, + 1649.0, + 765.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1644.0, + 1402.0, + 1644.0, + 1402.0, + 1677.0, + 296.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1678.0, + 578.0, + 1678.0, + 578.0, + 1708.0, + 297.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 684.0, + 226.0, + 684.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 480.0, + 498.0, + 480.0, + 498.0, + 520.0, + 294.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 480.0, + 1406.0, + 480.0, + 1406.0, + 520.0, + 516.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 513.0, + 326.0, + 513.0, + 326.0, + 546.0, + 293.0, + 546.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 31, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 426, + 1408, + 1270, + 1408, + 1270, + 1578, + 426, + 1578 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1611, + 1401, + 1611, + 1401, + 1711, + 299, + 1711 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 530, + 1825, + 1167, + 1825, + 1167, + 1949, + 530, + 1949 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 312, + 249, + 1349, + 249, + 1349, + 678, + 312, + 678 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 295, + 703, + 1405, + 703, + 1405, + 839, + 295, + 839 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 297, + 970, + 1401, + 970, + 1401, + 1047, + 297, + 1047 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 293, + 1057, + 1403, + 1057, + 1403, + 1122, + 293, + 1122 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 655, + 1144, + 1036, + 1144, + 1036, + 1241, + 655, + 1241 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 655, + 1248, + 1042, + 1248, + 1042, + 1345, + 655, + 1345 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 293, + 900, + 1300, + 900, + 1300, + 936, + 293, + 936 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 298, + 1771, + 804, + 1771, + 804, + 1805, + 298, + 1805 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1180, + 1400, + 1180, + 1400, + 1209, + 1352, + 1209 + ], + "score": 0.9 + }, + { + "category_id": 1, + "poly": [ + 297, + 1363, + 370, + 1363, + 370, + 1392, + 297, + 1392 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1282, + 1401, + 1282, + 1401, + 1311, + 1351, + 1311 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 865, + 2087, + 865, + 2113, + 835, + 2113 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 296, + 1976, + 1408, + 1976, + 1408, + 2036, + 296, + 2036 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 299, + 1725, + 698, + 1725, + 698, + 1757, + 299, + 1757 + ], + "score": 0.801 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 854, + 76, + 854, + 104, + 298, + 104 + ], + "score": 0.75 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.363 + }, + { + "category_id": 0, + "poly": [ + 299, + 1725, + 698, + 1725, + 698, + 1757, + 299, + 1757 + ], + "score": 0.105 + }, + { + "category_id": 13, + "poly": [ + 734, + 703, + 845, + 703, + 845, + 749, + 734, + 749 + ], + "score": 0.95, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { c v } \\} }" + }, + { + "category_id": 14, + "poly": [ + 533, + 1824, + 1169, + 1824, + 1169, + 1948, + 533, + 1948 + ], + "score": 0.94, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 427, + 1406, + 1272, + 1406, + 1272, + 1581, + 427, + 1581 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathbf { A } _ { t } : = \\lambda ^ { 2 } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 2 } \\frac { \\mathbf { X } _ { t } ^ { \\top } \\mathbf { X } _ { t } } { n } , } \\\\ & { \\mathbf { B } _ { t } : = \\lambda ^ { 2 } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } } { n _ { 1 } } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 1 } \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { v a l } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { v a l } } } { n _ { 2 } } \\bigg ( \\frac { \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } \\top } \\mathbf { X } _ { t } ^ { \\mathrm { t r a i n } } } { n _ { 1 } } + \\lambda \\mathbf { I } _ { d } \\bigg ) ^ { - 1 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 433, + 1777, + 548, + 1777, + 548, + 1806, + 433, + 1806 + ], + "score": 0.94, + "latex": "T = \\Omega ( d )" + }, + { + "category_id": 13, + "poly": [ + 601, + 1777, + 666, + 1777, + 666, + 1807, + 601, + 1807 + ], + "score": 0.94, + "latex": "( d , n )" + }, + { + "category_id": 13, + "poly": [ + 998, + 2008, + 1095, + 2008, + 1095, + 2036, + 998, + 2036 + ], + "score": 0.93, + "latex": "O ( R ^ { 2 } / d )" + }, + { + "category_id": 14, + "poly": [ + 653, + 1140, + 1040, + 1140, + 1040, + 1351, + 653, + 1351 + ], + "score": 0.93, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 595, + 2008, + 653, + 2008, + 653, + 2036, + 595, + 2036 + ], + "score": 0.93, + "latex": "R ^ { 2 } / d" + }, + { + "category_id": 13, + "poly": [ + 468, + 1653, + 530, + 1653, + 530, + 1687, + 468, + 1687 + ], + "score": 0.92, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathtt { t r - t r } }" + }, + { + "category_id": 13, + "poly": [ + 1012, + 806, + 1203, + 806, + 1203, + 840, + 1012, + 840 + ], + "score": 0.91, + "latex": "d / n \\in \\{ 1 . 2 , 1 . 6 \\}" + }, + { + "category_id": 13, + "poly": [ + 1209, + 905, + 1300, + 905, + 1300, + 936, + 1209, + 936 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 724, + 1004, + 975, + 1004, + 975, + 1049, + 724, + 1049 + ], + "score": 0.9, + "latex": "{ } _ { 6 } \\qquad \\quad \\cdot \\qquad ^ { 6 }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 649, + 1145, + 649, + 1145, + 680, + 1095, + 680 + ], + "score": 0.9, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { c v } }" + }, + { + "category_id": 13, + "poly": [ + 976, + 709, + 1025, + 709, + 1025, + 744, + 976, + 744 + ], + "score": 0.89, + "latex": "d / n" + }, + { + "category_id": 13, + "poly": [ + 345, + 744, + 467, + 744, + 467, + 773, + 345, + 773 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 364, + 777, + 458, + 777, + 458, + 804, + 364, + 804 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1234, + 710, + 1400, + 710, + 1400, + 744, + 1234, + 744 + ], + "score": 0.86, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1191, + 648, + 1230, + 648, + 1230, + 677, + 1191, + 677 + ], + "score": 0.85, + "latex": "d / n" + }, + { + "category_id": 13, + "poly": [ + 1285, + 777, + 1393, + 777, + 1393, + 805, + 1285, + 805 + ], + "score": 0.85, + "latex": "n = 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 649, + 1990, + 680, + 1990, + 680, + 2004, + 649, + 2004 + ], + "score": 0.85, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1330, + 1980, + 1403, + 1980, + 1403, + 2007, + 1330, + 2007 + ], + "score": 0.85, + "latex": "w _ { t , i } \\gets" + }, + { + "category_id": 13, + "poly": [ + 1297, + 746, + 1393, + 746, + 1393, + 774, + 1297, + 774 + ], + "score": 0.83, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 609, + 710, + 637, + 710, + 637, + 742, + 609, + 742 + ], + "score": 0.82, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 2011, + 360, + 2011, + 360, + 2035, + 298, + 2035 + ], + "score": 0.82, + "latex": "w _ { 0 , \\star , i }" + }, + { + "category_id": 13, + "poly": [ + 603, + 1617, + 666, + 1617, + 666, + 1651, + 603, + 1651 + ], + "score": 0.82, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 989, + 650, + 1012, + 650, + 1012, + 675, + 989, + 675 + ], + "score": 0.69, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 574, + 712, + 598, + 712, + 598, + 739, + 574, + 739 + ], + "score": 0.69, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 521, + 645, + 618, + 645, + 618, + 681, + 521, + 681 + ], + "score": 0.64, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r } , \\mathrm { c v } \\} }" + }, + { + "category_id": 13, + "poly": [ + 420, + 651, + 441, + 651, + 441, + 676, + 420, + 676 + ], + "score": 0.55, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 662, + 650, + 700, + 650, + 700, + 677, + 662, + 677 + ], + "score": 0.37, + "latex": "d / n" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 284.0, + 934.0, + 284.0, + 934.0, + 309.0, + 915.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 321.0, + 379.0, + 321.0, + 379.0, + 341.0, + 361.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 337.0, + 331.0, + 337.0, + 331.0, + 354.0, + 315.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 357.0, + 344.0, + 357.0, + 344.0, + 440.0, + 320.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 377.0, + 877.0, + 377.0, + 877.0, + 396.0, + 858.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 345.0, + 936.0, + 345.0, + 936.0, + 377.0, + 896.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 407.0, + 359.0, + 407.0, + 359.0, + 445.0, + 334.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 393.0, + 379.0, + 393.0, + 379.0, + 415.0, + 361.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 402.0, + 540.0, + 402.0, + 540.0, + 441.0, + 396.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 387.0, + 904.0, + 387.0, + 904.0, + 563.0, + 854.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 414.0, + 932.0, + 414.0, + 932.0, + 436.0, + 913.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 391.0, + 1290.0, + 391.0, + 1290.0, + 438.0, + 1133.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 430.0, + 355.0, + 430.0, + 355.0, + 530.0, + 319.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 452.0, + 544.0, + 452.0, + 544.0, + 460.0, + 530.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 456.0, + 544.0, + 456.0, + 544.0, + 466.0, + 530.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 466.0, + 378.0, + 466.0, + 378.0, + 481.0, + 364.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 492.0, + 614.0, + 492.0, + 614.0, + 501.0, + 605.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 495.0, + 777.0, + 495.0, + 777.0, + 515.0, + 623.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 474.0, + 936.0, + 474.0, + 936.0, + 505.0, + 897.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 467.0, + 1266.0, + 467.0, + 1266.0, + 487.0, + 1247.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 515.0, + 772.0, + 515.0, + 772.0, + 534.0, + 640.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 523.0, + 1183.0, + 523.0, + 1183.0, + 531.0, + 1174.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 533.0, + 352.0, + 533.0, + 352.0, + 557.0, + 326.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 552.0, + 440.0, + 552.0, + 440.0, + 562.0, + 430.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 549.0, + 481.0, + 549.0, + 481.0, + 558.0, + 473.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 545.0, + 608.0, + 545.0, + 608.0, + 570.0, + 486.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 552.0, + 1189.0, + 552.0, + 1189.0, + 574.0, + 1064.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 567.0, + 403.0, + 567.0, + 403.0, + 594.0, + 388.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 608.0, + 380.0, + 608.0, + 380.0, + 630.0, + 361.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 602.0, + 937.0, + 602.0, + 937.0, + 632.0, + 896.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 618.0, + 468.0, + 618.0, + 468.0, + 650.0, + 428.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 622.0, + 527.0, + 622.0, + 527.0, + 648.0, + 505.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 619.0, + 605.0, + 619.0, + 605.0, + 650.0, + 566.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 619.0, + 667.0, + 619.0, + 667.0, + 650.0, + 640.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 619.0, + 742.0, + 619.0, + 742.0, + 650.0, + 701.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 622.0, + 801.0, + 622.0, + 801.0, + 648.0, + 778.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 622.0, + 944.0, + 622.0, + 944.0, + 648.0, + 921.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 618.0, + 1056.0, + 618.0, + 1056.0, + 650.0, + 1014.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 623.0, + 1146.0, + 623.0, + 1146.0, + 647.0, + 1127.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 618.0, + 1259.0, + 618.0, + 1259.0, + 650.0, + 1218.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 623.0, + 1349.0, + 623.0, + 1349.0, + 647.0, + 1330.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 641.0, + 419.0, + 641.0, + 419.0, + 685.0, + 413.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 641.0, + 520.0, + 641.0, + 520.0, + 685.0, + 442.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 641.0, + 661.0, + 641.0, + 661.0, + 685.0, + 619.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 641.0, + 756.0, + 641.0, + 756.0, + 685.0, + 701.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 642.0, + 988.0, + 642.0, + 988.0, + 683.0, + 984.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 642.0, + 1094.0, + 642.0, + 1094.0, + 683.0, + 1013.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 642.0, + 1190.0, + 642.0, + 1190.0, + 683.0, + 1146.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 642.0, + 1291.0, + 642.0, + 1291.0, + 683.0, + 1231.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 246.0, + 390.0, + 246.0, + 390.0, + 270.0, + 352.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.25, + 363.5, + 830.25, + 363.5, + 830.25, + 452.5, + 476.25, + 452.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.25, + 621.0, + 395.25, + 621.0, + 395.25, + 647.0, + 363.25, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 702.0, + 975.0, + 702.0, + 975.0, + 746.0, + 846.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 702.0, + 1233.0, + 702.0, + 1233.0, + 746.0, + 1026.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 739.0, + 344.0, + 739.0, + 344.0, + 777.0, + 293.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 739.0, + 1296.0, + 739.0, + 1296.0, + 777.0, + 468.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 739.0, + 1403.0, + 739.0, + 1403.0, + 777.0, + 1394.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 772.0, + 363.0, + 772.0, + 363.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 772.0, + 1284.0, + 772.0, + 1284.0, + 810.0, + 459.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 772.0, + 1406.0, + 772.0, + 1406.0, + 810.0, + 1394.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 803.0, + 1011.0, + 803.0, + 1011.0, + 841.0, + 293.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 803.0, + 1214.0, + 803.0, + 1214.0, + 841.0, + 1204.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 697.5, + 855.0, + 697.5, + 855.0, + 751.5, + 286.0, + 751.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 896.0, + 1208.0, + 896.0, + 1208.0, + 937.0, + 289.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 896.0, + 1305.0, + 896.0, + 1305.0, + 937.0, + 1301.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1971.0, + 648.0, + 1971.0, + 648.0, + 2012.0, + 328.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1971.0, + 1329.0, + 1971.0, + 1329.0, + 2012.0, + 681.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 297.0, + 2001.0, + 297.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 2001.0, + 594.0, + 2001.0, + 594.0, + 2038.0, + 361.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 2001.0, + 997.0, + 2001.0, + 997.0, + 2038.0, + 654.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 2001.0, + 1383.0, + 2001.0, + 1383.0, + 2038.0, + 1096.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 699.0, + 1718.0, + 699.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1597.0, + 602.0, + 1597.0, + 602.0, + 1661.0, + 288.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1597.0, + 1403.0, + 1597.0, + 1403.0, + 1661.0, + 667.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1632.0, + 467.0, + 1632.0, + 467.0, + 1710.0, + 285.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1632.0, + 1413.0, + 1632.0, + 1413.0, + 1710.0, + 531.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 970.0, + 1405.0, + 970.0, + 1405.0, + 1004.0, + 297.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 999.0, + 723.0, + 999.0, + 723.0, + 1057.0, + 294.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 999.0, + 988.0, + 999.0, + 988.0, + 1057.0, + 976.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1056.0, + 1406.0, + 1056.0, + 1406.0, + 1092.0, + 296.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1088.0, + 575.0, + 1088.0, + 575.0, + 1123.0, + 295.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1770.0, + 432.0, + 1770.0, + 432.0, + 1807.0, + 296.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1770.0, + 600.0, + 1770.0, + 600.0, + 1807.0, + 549.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1770.0, + 803.0, + 1770.0, + 803.0, + 1807.0, + 667.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1358.0, + 376.0, + 1358.0, + 376.0, + 1395.0, + 294.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 699.0, + 1718.0, + 699.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 32, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1760, + 1406, + 1760, + 1406, + 1890, + 296, + 1890 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1392, + 1406, + 1392, + 1406, + 1494, + 299, + 1494 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 538, + 1505, + 1156, + 1505, + 1156, + 1672, + 538, + 1672 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 303, + 1146, + 1606, + 1146, + 1606, + 1382, + 303, + 1382 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 298, + 972, + 1405, + 972, + 1405, + 1068, + 298, + 1068 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 488, + 535, + 1210, + 535, + 1210, + 634, + 488, + 634 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 359, + 275, + 1345, + 275, + 1345, + 437, + 359, + 437 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 643, + 1401, + 643, + 1401, + 708, + 297, + 708 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 292, + 1683, + 1404, + 1683, + 1404, + 1749, + 292, + 1749 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 581, + 1902, + 1113, + 1902, + 1113, + 1991, + 581, + 1991 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 313, + 871, + 1379, + 871, + 1379, + 961, + 313, + 961 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 825, + 1364, + 825, + 1364, + 860, + 298, + 860 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 297, + 2002, + 539, + 2002, + 539, + 2036, + 297, + 2036 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 1096, + 1247, + 1096, + 1247, + 1133, + 297, + 1133 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 296, + 73, + 855, + 73, + 855, + 107, + 296, + 107 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 292, + 228, + 1403, + 228, + 1403, + 265, + 292, + 265 + ], + "score": 0.916 + }, + { + "category_id": 8, + "poly": [ + 456, + 719, + 1239, + 719, + 1239, + 816, + 456, + 816 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 296, + 495, + 781, + 495, + 781, + 527, + 296, + 527 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 292, + 448, + 1238, + 448, + 1238, + 482, + 292, + 482 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.875 + }, + { + "category_id": 8, + "poly": [ + 455, + 719, + 1238, + 719, + 1238, + 816, + 455, + 816 + ], + "score": 0.19 + }, + { + "category_id": 14, + "poly": [ + 459, + 715, + 1241, + 715, + 1241, + 818, + 459, + 818 + ], + "score": 0.95, + "latex": "\\_" + }, + { + "category_id": 14, + "poly": [ + 315, + 870, + 1383, + 870, + 1383, + 963, + 315, + 963 + ], + "score": 0.95, + "latex": "-" + }, + { + "category_id": 14, + "poly": [ + 540, + 1504, + 1158, + 1504, + 1158, + 1676, + 540, + 1676 + ], + "score": 0.94, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 488, + 532, + 1210, + 532, + 1210, + 635, + 488, + 635 + ], + "score": 0.94, + "latex": "\\pmb { \\Sigma } _ { T } : = \\left( \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } \\right) ^ { - 2 } \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } ^ { 2 } = \\frac { 1 } { T } \\cdot \\left( \\frac { \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } } { T } \\right) ^ { - 2 } \\frac { \\sum _ { t = 1 } ^ { T } \\mathbf { A } _ { t } ^ { 2 } } { T } ," + }, + { + "category_id": 14, + "poly": [ + 365, + 274, + 1347, + 274, + 1347, + 442, + 365, + 442 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\quad \\mathrm { M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) = \\displaystyle \\frac { R ^ { 2 } } { d } \\bigg ( 1 \\pm O \\bigg ( \\frac { 1 } { \\sqrt { d } } \\bigg ) \\bigg ) \\cdot \\bigg [ \\frac { 1 } { T } \\cdot \\bigg ( d \\cdot f _ { \\mathrm { t r - t r } } ( d , n ) \\pm O \\bigg ( d \\sqrt { \\frac { \\log ( T / \\delta ) } { T } } \\bigg ) \\bigg ) \\bigg ] } \\\\ & { \\approx \\displaystyle \\frac { R ^ { 2 } } { T } \\cdot f _ { \\mathrm { t r - t r } } ( d , n ) = \\frac { 1 } { T } \\mathrm { A s y m M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r - t r } } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 977, + 1719, + 1189, + 1719, + 1189, + 1749, + 977, + 1749 + ], + "score": 0.93, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 328, + 1797, + 386, + 1797, + 386, + 1826, + 328, + 1826 + ], + "score": 0.93, + "latex": "O ( d )" + }, + { + "category_id": 14, + "poly": [ + 584, + 1903, + 1115, + 1903, + 1115, + 1993, + 584, + 1993 + ], + "score": 0.93, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 689, + 1428, + 780, + 1428, + 780, + 1467, + 689, + 1467 + ], + "score": 0.92, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 434, + 1435, + 609, + 1435, + 609, + 1466, + 434, + 1466 + ], + "score": 0.92, + "latex": "\\lambda ^ { 2 } \\sigma _ { i } / ( \\lambda + \\sigma _ { i } ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 613, + 233, + 678, + 233, + 678, + 265, + 613, + 265 + ], + "score": 0.92, + "latex": "( d , n )" + }, + { + "category_id": 13, + "poly": [ + 1330, + 1834, + 1392, + 1834, + 1392, + 1857, + 1330, + 1857 + ], + "score": 0.91, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 796, + 1721, + 840, + 1721, + 840, + 1747, + 796, + 1747 + ], + "score": 0.91, + "latex": "d , n" + }, + { + "category_id": 13, + "poly": [ + 617, + 1827, + 1050, + 1827, + 1050, + 1862, + 617, + 1862 + ], + "score": 0.91, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 890, + 1039, + 975, + 1039, + 975, + 1069, + 890, + 1069 + ], + "score": 0.91, + "latex": "\\operatorname { t r } ( \\Sigma _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 858, + 1398, + 923, + 1398, + 923, + 1429, + 858, + 1429 + ], + "score": 0.91, + "latex": "( d , n )" + }, + { + "category_id": 13, + "poly": [ + 1031, + 1429, + 1142, + 1429, + 1142, + 1466, + 1031, + 1466 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1019, + 976, + 1105, + 976, + 1105, + 1008, + 1019, + 1008 + ], + "score": 0.9, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 310, + 1144, + 1428, + 1144, + 1428, + 1361, + 310, + 1361 + ], + "score": 0.89, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1097, + 1133, + 1097, + 1133, + 1128, + 1070, + 1128 + ], + "score": 0.89, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 994, + 644, + 1030, + 644, + 1030, + 675, + 994, + 675 + ], + "score": 0.88, + "latex": "{ \\bf A } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 575, + 977, + 641, + 977, + 641, + 1003, + 575, + 1003 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1201, + 1432, + 1240, + 1432, + 1240, + 1463, + 1201, + 1463 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 743, + 1101, + 779, + 1101, + 779, + 1132, + 743, + 1132 + ], + "score": 0.86, + "latex": "{ \\bf A } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1315, + 1395, + 1355, + 1395, + 1355, + 1426, + 1315, + 1426 + ], + "score": 0.86, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 505, + 1100, + 591, + 1100, + 591, + 1134, + 505, + 1134 + ], + "score": 0.84, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 384, + 688, + 417, + 688, + 417, + 706, + 384, + 706 + ], + "score": 0.79, + "latex": "\\mathbf { w } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1398, + 1202, + 1398, + 1202, + 1422, + 1180, + 1422 + ], + "score": 0.79, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 621, + 1763, + 645, + 1763, + 645, + 1789, + 621, + 1789 + ], + "score": 0.26, + "latex": "\\cdot" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1758.0, + 620.0, + 1758.0, + 620.0, + 1794.0, + 295.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1758.0, + 1408.0, + 1758.0, + 1408.0, + 1794.0, + 646.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 327.0, + 1789.0, + 327.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1789.0, + 1407.0, + 1789.0, + 1407.0, + 1826.0, + 387.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1824.0, + 616.0, + 1824.0, + 616.0, + 1863.0, + 293.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1824.0, + 1329.0, + 1824.0, + 1329.0, + 1863.0, + 1051.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1824.0, + 1407.0, + 1824.0, + 1407.0, + 1863.0, + 1393.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1857.0, + 662.0, + 1857.0, + 662.0, + 1891.0, + 295.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1392.0, + 857.0, + 1392.0, + 857.0, + 1428.0, + 297.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1392.0, + 1179.0, + 1392.0, + 1179.0, + 1428.0, + 924.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1392.0, + 1314.0, + 1392.0, + 1314.0, + 1428.0, + 1203.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1392.0, + 1406.0, + 1392.0, + 1406.0, + 1428.0, + 1356.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1425.0, + 433.0, + 1425.0, + 433.0, + 1471.0, + 292.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1425.0, + 688.0, + 1425.0, + 688.0, + 1471.0, + 610.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1425.0, + 1030.0, + 1425.0, + 1030.0, + 1471.0, + 781.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1425.0, + 1200.0, + 1425.0, + 1200.0, + 1471.0, + 1143.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1425.0, + 1406.0, + 1425.0, + 1406.0, + 1471.0, + 1241.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1461.0, + 1177.0, + 1461.0, + 1177.0, + 1496.0, + 296.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 972.0, + 574.0, + 972.0, + 574.0, + 1007.0, + 296.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 972.0, + 1018.0, + 972.0, + 1018.0, + 1007.0, + 642.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 972.0, + 1405.0, + 972.0, + 1405.0, + 1007.0, + 1106.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1002.0, + 1405.0, + 1002.0, + 1405.0, + 1038.0, + 295.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1032.0, + 889.0, + 1032.0, + 889.0, + 1069.0, + 295.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1032.0, + 985.0, + 1032.0, + 985.0, + 1069.0, + 976.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 638.0, + 993.0, + 638.0, + 993.0, + 679.0, + 293.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 638.0, + 1405.0, + 638.0, + 1405.0, + 679.0, + 1031.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 383.0, + 673.0, + 383.0, + 709.0, + 293.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 673.0, + 538.0, + 673.0, + 538.0, + 709.0, + 418.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1681.0, + 1406.0, + 1681.0, + 1406.0, + 1717.0, + 296.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1708.0, + 795.0, + 1708.0, + 795.0, + 1751.0, + 294.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1708.0, + 976.0, + 1708.0, + 976.0, + 1751.0, + 841.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1708.0, + 1200.0, + 1708.0, + 1200.0, + 1751.0, + 1190.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 823.0, + 1367.0, + 823.0, + 1367.0, + 862.0, + 298.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1997.0, + 543.0, + 1997.0, + 543.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1091.0, + 504.0, + 1091.0, + 504.0, + 1136.0, + 292.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1091.0, + 742.0, + 1091.0, + 742.0, + 1136.0, + 592.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1091.0, + 1069.0, + 1091.0, + 1069.0, + 1136.0, + 780.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1091.0, + 1253.0, + 1091.0, + 1253.0, + 1136.0, + 1134.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 612.0, + 224.0, + 612.0, + 269.0, + 294.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 224.0, + 1408.0, + 224.0, + 1408.0, + 269.0, + 679.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 493.0, + 458.0, + 493.0, + 458.0, + 526.0, + 295.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 492.0, + 778.0, + 492.0, + 778.0, + 528.0, + 488.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 448.0, + 1237.0, + 448.0, + 1237.0, + 481.0, + 295.0, + 481.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 33, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1070, + 1406, + 1070, + 1406, + 1227, + 296, + 1227 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 586, + 1406, + 586, + 1406, + 696, + 297, + 696 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 433, + 1282, + 1260, + 1282, + 1260, + 1850, + 433, + 1850 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 680, + 307, + 1021, + 307, + 1021, + 382, + 680, + 382 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 296, + 1872, + 1406, + 1872, + 1406, + 1978, + 296, + 1978 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 493, + 475, + 1204, + 475, + 1204, + 569, + 493, + 569 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 295, + 396, + 1402, + 396, + 1402, + 461, + 295, + 461 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 361, + 774, + 1335, + 774, + 1335, + 866, + 361, + 866 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 227, + 1404, + 227, + 1404, + 296, + 298, + 296 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 296, + 880, + 983, + 880, + 983, + 915, + 296, + 915 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 296, + 726, + 910, + 726, + 910, + 760, + 296, + 760 + ], + "score": 0.926 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 855, + 73, + 855, + 106, + 297, + 106 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 298, + 1014, + 670, + 1014, + 670, + 1045, + 298, + 1045 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 1374, + 882, + 1403, + 882, + 1403, + 911, + 1374, + 911 + ], + "score": 0.759 + }, + { + "category_id": 14, + "poly": [ + 493, + 473, + 1206, + 473, + 1206, + 571, + 493, + 571 + ], + "score": 0.94, + "latex": "\\_" + }, + { + "category_id": 14, + "poly": [ + 680, + 304, + 1020, + 304, + 1020, + 382, + 680, + 382 + ], + "score": 0.94, + "latex": "\\left\\| \\Sigma _ { T } \\right\\| _ { \\mathsf { F r } } \\leq O \\left( { \\frac { 1 } { \\sqrt { d } } } \\right) \\cdot \\operatorname { t r } ( \\Sigma _ { T } )" + }, + { + "category_id": 14, + "poly": [ + 362, + 773, + 1336, + 773, + 1336, + 867, + 362, + 867 + ], + "score": 0.93, + "latex": "\\mathrm { M S E } ( \\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { t r } \\cdot \\mathrm { t r } } ) = \\frac { R ^ { 2 } } { d } \\bigg ( 1 \\pm O \\bigg ( \\frac { 1 } { \\sqrt { d } } \\bigg ) \\bigg ) \\cdot \\bigg [ \\frac { 1 } { T } \\cdot \\bigg ( d \\cdot f _ { \\mathrm { t r } \\cdot \\mathrm { t r } } ( d , n ) \\pm O \\bigg ( d \\sqrt { \\frac { \\log ( T / \\delta ) } { T } } \\bigg ) \\bigg ) \\bigg ] ." + }, + { + "category_id": 13, + "poly": [ + 415, + 885, + 528, + 885, + 528, + 915, + 415, + 915 + ], + "score": 0.92, + "latex": "T = \\Omega ( d )" + }, + { + "category_id": 13, + "poly": [ + 565, + 589, + 775, + 589, + 775, + 624, + 565, + 624 + ], + "score": 0.92, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 299, + 666, + 412, + 666, + 412, + 696, + 299, + 696 + ], + "score": 0.92, + "latex": "T = \\Omega ( d )" + }, + { + "category_id": 13, + "poly": [ + 299, + 626, + 491, + 626, + 491, + 664, + 299, + 664 + ], + "score": 0.92, + "latex": "\\left\\| \\mathbf { A } _ { t } ^ { 2 } \\right\\| _ { \\mathsf { F r } } \\leq \\lambda ^ { 2 } \\sqrt { d }" + }, + { + "category_id": 13, + "poly": [ + 923, + 231, + 1014, + 231, + 1014, + 265, + 923, + 265 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1245, + 230, + 1339, + 230, + 1339, + 269, + 1245, + 269 + ], + "score": 0.91, + "latex": "\\| \\Sigma _ { T } \\| _ { \\mathrm { o p } }" + }, + { + "category_id": 13, + "poly": [ + 963, + 666, + 1203, + 666, + 1203, + 696, + 963, + 696 + ], + "score": 0.91, + "latex": "\\lambda _ { \\operatorname* { m i n } } ( \\mathbb { E } [ \\mathbf { A } _ { 1 } ] ) = \\Omega ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 763, + 883, + 974, + 883, + 974, + 916, + 763, + 916 + ], + "score": 0.9, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 1114, + 588, + 1296, + 588, + 1296, + 623, + 1114, + 623 + ], + "score": 0.9, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 999, + 1881, + 1048, + 1881, + 1048, + 1915, + 999, + 1915 + ], + "score": 0.89, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1094, + 1164, + 1212, + 1164, + 1212, + 1192, + 1094, + 1192 + ], + "score": 0.89, + "latex": "T = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1183, + 396, + 1400, + 396, + 1400, + 431, + 1183, + 431 + ], + "score": 0.89, + "latex": "\\mathrm { t r } ( \\Sigma _ { T } ) = \\Omega ( d / T )" + }, + { + "category_id": 13, + "poly": [ + 975, + 1076, + 1052, + 1076, + 1052, + 1104, + 975, + 1104 + ], + "score": 0.88, + "latex": "d , n , T" + }, + { + "category_id": 13, + "poly": [ + 653, + 1133, + 760, + 1133, + 760, + 1162, + 653, + 1162 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 731, + 1873, + 869, + 1873, + 869, + 1920, + 731, + 1920 + ], + "score": 0.88, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\{ \\mathrm { t r - t r , t r - v a l } \\} }" + }, + { + "category_id": 13, + "poly": [ + 585, + 630, + 899, + 630, + 899, + 665, + 585, + 665 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\lambda _ { \\operatorname* { m i n } } \\bigl ( \\sum _ { t \\leq T } \\mathbf { A } _ { t } / T \\bigr ) = \\Omega ( 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 582, + 885, + 626, + 885, + 626, + 914, + 582, + 914 + ], + "score": 0.88, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1134, + 1151, + 1134, + 1151, + 1161, + 1047, + 1161 + ], + "score": 0.87, + "latex": "n = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 473, + 1916, + 576, + 1916, + 576, + 1945, + 473, + 1945 + ], + "score": 0.87, + "latex": "\\mathit { n } = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 628, + 1916, + 733, + 1916, + 733, + 1944, + 628, + 1944 + ], + "score": 0.87, + "latex": "T = 3 0 0" + }, + { + "category_id": 13, + "poly": [ + 593, + 1947, + 704, + 1947, + 704, + 1975, + 593, + 1975 + ], + "score": 0.87, + "latex": "\\lambda = 2 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1160, + 1195, + 1187, + 1195, + 1187, + 1225, + 1160, + 1225 + ], + "score": 0.85, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 607, + 1881, + 635, + 1881, + 635, + 1913, + 607, + 1913 + ], + "score": 0.82, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1196, + 1917, + 1217, + 1917, + 1217, + 1944, + 1196, + 1944 + ], + "score": 0.81, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 521, + 1165, + 544, + 1165, + 544, + 1192, + 521, + 1192 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1269, + 1134, + 1287, + 1134, + 1287, + 1161, + 1269, + 1161 + ], + "score": 0.77, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 812, + 1165, + 830, + 1165, + 830, + 1192, + 812, + 1192 + ], + "score": 0.77, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 740, + 1168, + 761, + 1168, + 761, + 1192, + 740, + 1192 + ], + "score": 0.76, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 572, + 1883, + 596, + 1883, + 596, + 1911, + 572, + 1911 + ], + "score": 0.66, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 718, + 1799, + 893, + 1799, + 893, + 1852, + 718, + 1852 + ], + "score": 0.52, + "latex": "\\widehat { \\mathbf { w } } _ { 0 , T } ^ { \\mathrm { \\{ t r - t r , ~ t r - v a l \\} } }" + }, + { + "category_id": 13, + "poly": [ + 959, + 1807, + 1014, + 1807, + 1014, + 1847, + 959, + 1847 + ], + "score": 0.28, + "latex": "d / n" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1281.0, + 541.0, + 1281.0, + 541.0, + 1314.0, + 513.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1361.0, + 459.0, + 1361.0, + 459.0, + 1381.0, + 435.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1356.0, + 539.0, + 1356.0, + 539.0, + 1389.0, + 512.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1356.0, + 1124.0, + 1356.0, + 1124.0, + 1373.0, + 1109.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1389.0, + 478.0, + 1389.0, + 478.0, + 1547.0, + 443.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1399.0, + 1066.0, + 1399.0, + 1066.0, + 1416.0, + 1050.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1406.0, + 1103.0, + 1406.0, + 1103.0, + 1423.0, + 1086.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1411.0, + 1090.0, + 1411.0, + 1090.0, + 1430.0, + 1067.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1417.0, + 1050.0, + 1417.0, + 1050.0, + 1433.0, + 1032.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1433.0, + 541.0, + 1433.0, + 541.0, + 1464.0, + 512.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1441.0, + 1025.0, + 1441.0, + 1025.0, + 1454.0, + 1013.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1442.0, + 1120.0, + 1442.0, + 1120.0, + 1450.0, + 1112.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1449.0, + 1085.0, + 1449.0, + 1085.0, + 1462.0, + 1071.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1465.0, + 1026.0, + 1465.0, + 1026.0, + 1482.0, + 1010.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1455.0, + 1250.0, + 1455.0, + 1250.0, + 1489.0, + 1086.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1480.0, + 515.0, + 1480.0, + 515.0, + 1617.0, + 449.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1472.0, + 767.0, + 1472.0, + 767.0, + 1506.0, + 593.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1484.0, + 875.0, + 1484.0, + 875.0, + 1503.0, + 858.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1495.0, + 892.0, + 1495.0, + 892.0, + 1506.0, + 879.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1482.0, + 971.0, + 1482.0, + 971.0, + 1499.0, + 954.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1472.0, + 1009.0, + 1472.0, + 1009.0, + 1489.0, + 993.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1482.0, + 1049.0, + 1482.0, + 1049.0, + 1498.0, + 1030.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1479.0, + 1064.0, + 1479.0, + 1064.0, + 1489.0, + 1051.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1479.0, + 1262.0, + 1479.0, + 1262.0, + 1516.0, + 1073.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1507.0, + 539.0, + 1507.0, + 539.0, + 1541.0, + 512.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1504.0, + 789.0, + 1504.0, + 789.0, + 1533.0, + 572.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1501.0, + 856.0, + 1501.0, + 856.0, + 1519.0, + 840.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1528.0, + 874.0, + 1528.0, + 874.0, + 1544.0, + 857.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1516.0, + 914.0, + 1516.0, + 914.0, + 1533.0, + 897.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1520.0, + 949.0, + 1520.0, + 949.0, + 1534.0, + 936.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1512.0, + 990.0, + 1512.0, + 990.0, + 1529.0, + 971.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1500.0, + 1010.0, + 1500.0, + 1010.0, + 1519.0, + 991.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1525.0, + 1088.0, + 1525.0, + 1088.0, + 1542.0, + 1069.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1550.0, + 701.0, + 1550.0, + 701.0, + 1567.0, + 686.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1542.0, + 781.0, + 1542.0, + 781.0, + 1562.0, + 745.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1542.0, + 795.0, + 1542.0, + 795.0, + 1551.0, + 785.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1549.0, + 819.0, + 1549.0, + 819.0, + 1570.0, + 798.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1565.0, + 969.0, + 1565.0, + 969.0, + 1578.0, + 955.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1567.0, + 1006.0, + 1567.0, + 1006.0, + 1576.0, + 996.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1540.0, + 1027.0, + 1540.0, + 1027.0, + 1558.0, + 1011.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1552.0, + 1065.0, + 1552.0, + 1065.0, + 1573.0, + 1029.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1543.0, + 1105.0, + 1543.0, + 1105.0, + 1560.0, + 1086.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1575.0, + 988.0, + 1575.0, + 988.0, + 1588.0, + 974.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1586.0, + 501.0, + 1586.0, + 501.0, + 1670.0, + 463.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1585.0, + 537.0, + 1585.0, + 537.0, + 1615.0, + 513.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1597.0, + 662.0, + 1597.0, + 662.0, + 1611.0, + 649.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1599.0, + 721.0, + 1599.0, + 721.0, + 1610.0, + 708.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1599.0, + 761.0, + 1599.0, + 761.0, + 1616.0, + 744.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1585.0, + 776.0, + 1585.0, + 776.0, + 1597.0, + 764.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1581.0, + 932.0, + 1581.0, + 932.0, + 1597.0, + 916.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1591.0, + 950.0, + 1591.0, + 950.0, + 1607.0, + 934.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1609.0, + 720.0, + 1609.0, + 720.0, + 1621.0, + 708.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1609.0, + 873.0, + 1609.0, + 873.0, + 1621.0, + 859.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1612.0, + 891.0, + 1612.0, + 891.0, + 1620.0, + 880.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1616.0, + 567.0, + 1616.0, + 567.0, + 1633.0, + 551.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1632.0, + 662.0, + 1632.0, + 662.0, + 1644.0, + 649.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1630.0, + 813.0, + 1630.0, + 813.0, + 1639.0, + 804.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1651.0, + 565.0, + 1651.0, + 565.0, + 1658.0, + 555.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1644.0, + 581.0, + 1644.0, + 581.0, + 1653.0, + 573.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1653.0, + 625.0, + 1653.0, + 625.0, + 1673.0, + 590.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1645.0, + 642.0, + 1645.0, + 642.0, + 1657.0, + 630.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1642.0, + 682.0, + 1642.0, + 682.0, + 1652.0, + 668.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1654.0, + 700.0, + 1654.0, + 700.0, + 1667.0, + 688.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1665.0, + 723.0, + 1665.0, + 723.0, + 1681.0, + 705.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1661.0, + 738.0, + 1661.0, + 738.0, + 1672.0, + 724.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1655.0, + 779.0, + 1655.0, + 779.0, + 1670.0, + 762.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1644.0, + 799.0, + 1644.0, + 799.0, + 1659.0, + 781.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1637.0, + 1016.0, + 1637.0, + 1016.0, + 1669.0, + 845.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1674.0, + 489.0, + 1674.0, + 489.0, + 1711.0, + 451.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1676.0, + 644.0, + 1676.0, + 644.0, + 1700.0, + 590.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1672.0, + 683.0, + 1672.0, + 683.0, + 1688.0, + 667.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1735.0, + 543.0, + 1735.0, + 543.0, + 1769.0, + 511.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1759.0, + 553.0, + 1759.0, + 553.0, + 1792.0, + 527.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1757.0, + 663.0, + 1757.0, + 663.0, + 1795.0, + 610.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1762.0, + 745.0, + 1762.0, + 745.0, + 1790.0, + 721.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1757.0, + 857.0, + 1757.0, + 857.0, + 1794.0, + 803.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1760.0, + 937.0, + 1760.0, + 937.0, + 1792.0, + 908.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1756.0, + 1048.0, + 1756.0, + 1048.0, + 1796.0, + 990.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1760.0, + 1126.0, + 1760.0, + 1126.0, + 1790.0, + 1104.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1777.0, + 717.0, + 1777.0, + 717.0, + 1873.0, + 548.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1777.0, + 958.0, + 1777.0, + 958.0, + 1873.0, + 894.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1777.0, + 1093.0, + 1777.0, + 1093.0, + 1873.0, + 1015.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1452.5, + 982.0, + 1452.5, + 982.0, + 1480.5, + 907.0, + 1480.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1855.0, + 571.0, + 1855.0, + 571.0, + 1937.0, + 281.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1855.0, + 606.0, + 1855.0, + 606.0, + 1937.0, + 597.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1855.0, + 730.0, + 1855.0, + 730.0, + 1937.0, + 636.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1855.0, + 998.0, + 1855.0, + 998.0, + 1937.0, + 870.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1855.0, + 1407.0, + 1855.0, + 1407.0, + 1937.0, + 1049.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1912.0, + 472.0, + 1912.0, + 472.0, + 1949.0, + 291.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1912.0, + 627.0, + 1912.0, + 627.0, + 1949.0, + 577.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1912.0, + 1195.0, + 1912.0, + 1195.0, + 1949.0, + 734.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1912.0, + 1407.0, + 1912.0, + 1407.0, + 1949.0, + 1218.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 592.0, + 1943.0, + 592.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1943.0, + 983.0, + 1943.0, + 983.0, + 1979.0, + 705.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 855.0, + 72.0, + 855.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1015.0, + 342.0, + 1015.0, + 342.0, + 1044.0, + 295.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1017.0, + 671.0, + 1017.0, + 671.0, + 1043.0, + 362.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2123.0, + 829.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1065.0, + 974.0, + 1065.0, + 974.0, + 1107.0, + 295.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1065.0, + 1406.0, + 1065.0, + 1406.0, + 1107.0, + 1053.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1102.0, + 1403.0, + 1102.0, + 1403.0, + 1135.0, + 295.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1128.0, + 652.0, + 1128.0, + 652.0, + 1167.0, + 294.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1128.0, + 1046.0, + 1128.0, + 1046.0, + 1167.0, + 761.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1128.0, + 1268.0, + 1128.0, + 1268.0, + 1167.0, + 1152.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1128.0, + 1406.0, + 1128.0, + 1406.0, + 1167.0, + 1288.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 520.0, + 1161.0, + 520.0, + 1198.0, + 294.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1161.0, + 739.0, + 1161.0, + 739.0, + 1198.0, + 545.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1161.0, + 811.0, + 1161.0, + 811.0, + 1198.0, + 762.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1161.0, + 1093.0, + 1161.0, + 1093.0, + 1198.0, + 831.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1198.0, + 1213.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 1159.0, + 1191.0, + 1159.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1191.0, + 1268.0, + 1191.0, + 1268.0, + 1229.0, + 1188.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 583.0, + 564.0, + 583.0, + 564.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 583.0, + 1113.0, + 583.0, + 1113.0, + 628.0, + 776.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 583.0, + 1408.0, + 583.0, + 1408.0, + 628.0, + 1297.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 617.0, + 298.0, + 617.0, + 298.0, + 670.0, + 295.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 617.0, + 584.0, + 617.0, + 584.0, + 670.0, + 492.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 617.0, + 1408.0, + 617.0, + 1408.0, + 670.0, + 900.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 655.0, + 298.0, + 655.0, + 298.0, + 699.0, + 292.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 655.0, + 962.0, + 655.0, + 962.0, + 699.0, + 413.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 655.0, + 1214.0, + 655.0, + 1214.0, + 699.0, + 1204.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 390.0, + 1182.0, + 390.0, + 1182.0, + 434.0, + 293.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 423.0, + 630.0, + 423.0, + 630.0, + 461.0, + 295.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 221.0, + 922.0, + 221.0, + 922.0, + 273.0, + 291.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 221.0, + 1244.0, + 221.0, + 1244.0, + 273.0, + 1015.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 221.0, + 1405.0, + 221.0, + 1405.0, + 273.0, + 1340.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 501.0, + 263.0, + 501.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 877.0, + 414.0, + 877.0, + 414.0, + 921.0, + 294.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 877.0, + 581.0, + 877.0, + 581.0, + 921.0, + 529.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 877.0, + 762.0, + 877.0, + 762.0, + 921.0, + 627.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 877.0, + 987.0, + 877.0, + 987.0, + 921.0, + 975.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 725.0, + 909.0, + 725.0, + 909.0, + 762.0, + 295.0, + 762.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 34, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/train/0lz69oI5iZP/0.png b/vlm/train/0lz69oI5iZP/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ff3fcf2a291f3ee264d9400a7c3e8448d363bcf3 --- /dev/null +++ b/vlm/train/0lz69oI5iZP/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534d14840429191b6798772f5bca3ea511acb046a4fc90bc0a4c8622bf3032ab +size 487556 diff --git a/vlm/train/0lz69oI5iZP/1.png b/vlm/train/0lz69oI5iZP/1.png new file mode 100644 index 0000000000000000000000000000000000000000..13176a4488e04f5e40731c0fe53cd21f0149d5fe --- /dev/null +++ b/vlm/train/0lz69oI5iZP/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7e2704cc5df60949ea14d29370c98925d09413cd6a42c4dea4bf2bb36c5f26 +size 636871 diff --git a/vlm/train/0lz69oI5iZP/11.png b/vlm/train/0lz69oI5iZP/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b9fae68aa090799587fe8f4ddb1d48aa8a08afc6 --- /dev/null +++ b/vlm/train/0lz69oI5iZP/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0fa621be285c76541e18f41172f342ac5177c01e68c64a9708afa889daaa0a1 +size 295004 diff --git a/vlm/train/0lz69oI5iZP/2.png b/vlm/train/0lz69oI5iZP/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3365df1ed642fd4bf2042f19404b38d0e0c8631a --- /dev/null +++ b/vlm/train/0lz69oI5iZP/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b900ad5874c6aa97d5d7d61f47e87f6f144d3cc91aef01d951ae25db2fda4018 +size 602564 diff --git a/vlm/train/0lz69oI5iZP/3.png b/vlm/train/0lz69oI5iZP/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ae05f430a9570ed353ba6c249fe575ea2a260071 --- /dev/null +++ b/vlm/train/0lz69oI5iZP/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9e735be9791531f05021d9f07bcc2d23c16dd512f3b7faeae1f38108515f92 +size 625330 diff --git a/vlm/train/0lz69oI5iZP/4.png b/vlm/train/0lz69oI5iZP/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e2bd503497311a669a0ddda30a3c18fe5ada8d90 --- /dev/null +++ b/vlm/train/0lz69oI5iZP/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413f3313c33063f11481ae32c5388fe5bd7d26c9686a7547a219ef71b621b51f +size 648610 diff --git a/vlm/train/0lz69oI5iZP/5.png b/vlm/train/0lz69oI5iZP/5.png new file mode 100644 index 0000000000000000000000000000000000000000..51211872cb73b5f6282be246b6a47e2df441e116 --- /dev/null +++ b/vlm/train/0lz69oI5iZP/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b8ce82e464e05573ee4be4994e7551b084a7ba08da305967a8bc41209ebab3 +size 650659 diff --git a/vlm/train/0lz69oI5iZP/7.png b/vlm/train/0lz69oI5iZP/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3c043bf3f5f38a4aec26812c2b38907ca3f832fd --- /dev/null +++ b/vlm/train/0lz69oI5iZP/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764fe7d14595f443b5ceae73141e922ead698dd3444d91fbecf04e6b0ec00c5a +size 634910 diff --git a/vlm/train/0lz69oI5iZP/8.png b/vlm/train/0lz69oI5iZP/8.png new file mode 100644 index 0000000000000000000000000000000000000000..741f6d183c956a7f6cedc2dbb78ac88d75369ad0 --- /dev/null +++ b/vlm/train/0lz69oI5iZP/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ee66506a7b7b45f8e96605fa07236c63bd46738af16b526dc618b77bbf7e9b +size 571612 diff --git a/vlm/train/0lz69oI5iZP/9.png b/vlm/train/0lz69oI5iZP/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b3b48400e7bc16d2ea295796e31215c95af8f10f --- /dev/null +++ b/vlm/train/0lz69oI5iZP/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edaffeff85bbbee07abc27ff08677845dd114693b400551ca49a9037c25103e1 +size 548261 diff --git a/vlm/train/9uFiX_HRsIL/0.png b/vlm/train/9uFiX_HRsIL/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e29002fceba6860532a5344c8e06a2f7b47cd1 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6beb74caf633a395b466666df6adb6b908213562a54b59dc7ef25821831b849a +size 509772 diff --git a/vlm/train/9uFiX_HRsIL/1.png b/vlm/train/9uFiX_HRsIL/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b5b93682c60e9bbf07e469da5921fa25c637dd84 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d462d6f824244cf9792711c60aebf7e421699af13dc2bb3cfdc3bd066b3c4f +size 974648 diff --git a/vlm/train/9uFiX_HRsIL/10.png b/vlm/train/9uFiX_HRsIL/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0b5552c49e2f7cd7182a81ccb41a91218f5dd1e2 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ca355ee5f9adf5d8c5ded2d24b4ef2f4891fabe0dbcd21b4d89272f0d5a5f5 +size 545725 diff --git a/vlm/train/9uFiX_HRsIL/11.png b/vlm/train/9uFiX_HRsIL/11.png new file mode 100644 index 0000000000000000000000000000000000000000..676239a8acf85cbbd39ea6fe85abc5a14a6b510c --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a036456aa45772db0c309b1d51288c0936bea4d96ca5763b68697e1c181fda1c +size 552270 diff --git a/vlm/train/9uFiX_HRsIL/12.png b/vlm/train/9uFiX_HRsIL/12.png new file mode 100644 index 0000000000000000000000000000000000000000..70cb76c307a465dfdc509046aa255bda2e9d34b7 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d10c5e6bec6164d931d41de5a696364b95d3effa4376e77fa53e1ff69182311 +size 124099 diff --git a/vlm/train/9uFiX_HRsIL/2.png b/vlm/train/9uFiX_HRsIL/2.png new file mode 100644 index 0000000000000000000000000000000000000000..694e4c89b419335515daa3212e22f149f07ccf66 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ec47c5b3265a4cff970c542d35adc8068dabb6e7fa5309d1d0ba87da3026b1 +size 541274 diff --git a/vlm/train/9uFiX_HRsIL/3.png b/vlm/train/9uFiX_HRsIL/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8376fd7dfa57990af43eac9bf9345eb6dc3826a9 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02699be29409434dce12d99808d6f7ee48476b23c902e7cb7d1e99b39f9704e5 +size 532454 diff --git a/vlm/train/9uFiX_HRsIL/4.png b/vlm/train/9uFiX_HRsIL/4.png new file mode 100644 index 0000000000000000000000000000000000000000..16331acc5cbbe6a3ee95767670e0f7c8911586b9 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0ec0f1a991ba20c5852e5f89b291078a64d6b67c451652e063440e9b995f6f +size 646407 diff --git a/vlm/train/9uFiX_HRsIL/5.png b/vlm/train/9uFiX_HRsIL/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c3b87064709db49b49bedc227571072390eaad8f --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072a676c7fb9522a2c47ed10635ade43f91ae69c2ec7fcc4ac6b55c5b076ecfa +size 591095 diff --git a/vlm/train/9uFiX_HRsIL/6.png b/vlm/train/9uFiX_HRsIL/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1ecb6a3184f6f8c16934e76ba46a5ce4fca2e5ed --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e5715fd6362eec9c7495186d187c2a03d62a30ee6d5c2343218d23f1b03adbe +size 733144 diff --git a/vlm/train/9uFiX_HRsIL/7.png b/vlm/train/9uFiX_HRsIL/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5561bb73ae2377707cd9fab6047ab3267401d01d --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e64396fc424ba5382e89f4fbb2476074881236a6894f74f963c279b3481eca +size 755028 diff --git a/vlm/train/9uFiX_HRsIL/8.png b/vlm/train/9uFiX_HRsIL/8.png new file mode 100644 index 0000000000000000000000000000000000000000..993d5301e0840042a598b968095d031b7eeecb04 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f4b270818fc7f2bef4ae5a2f03ec4f0e75617e4587c6abadc504c53159c4a2 +size 539030 diff --git a/vlm/train/9uFiX_HRsIL/9.png b/vlm/train/9uFiX_HRsIL/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fe5d0f1cdfa280a8744b60f459080c43939cd708 --- /dev/null +++ b/vlm/train/9uFiX_HRsIL/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1817bf09b0901b4953bdd704be59dddd1127eb6f29eab4ab9d9ca56ece3d2e3 +size 586248 diff --git a/vlm/train/Aw96fN64soV/0.png b/vlm/train/Aw96fN64soV/0.png new file mode 100644 index 0000000000000000000000000000000000000000..07e1aa44fe46118bad9a67da2220a32555380680 --- /dev/null +++ b/vlm/train/Aw96fN64soV/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b71f5357060166f64bdc891487d75d04effdc922865f4677262838cac22daa4 +size 417999 diff --git a/vlm/train/Aw96fN64soV/1.png b/vlm/train/Aw96fN64soV/1.png new file mode 100644 index 0000000000000000000000000000000000000000..01d0d82a79363cb8555dbc97edb061fe363df732 --- /dev/null +++ b/vlm/train/Aw96fN64soV/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09792930d2202c5954750818e85c83c76140173e01786ef30f32e313f4ad741f +size 544452 diff --git a/vlm/train/Aw96fN64soV/10.png b/vlm/train/Aw96fN64soV/10.png new file mode 100644 index 0000000000000000000000000000000000000000..622593fbb6a61d20c382b9fb09f0024dc39dd453 --- /dev/null +++ b/vlm/train/Aw96fN64soV/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3289f72ac74e89702a762c19fd4218d778ddbf5b9bf7fe34e76ac285e8abd6 +size 573452 diff --git a/vlm/train/Aw96fN64soV/11.png b/vlm/train/Aw96fN64soV/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6924d4fee597069dfaf08192bf19227eb62b8654 --- /dev/null +++ b/vlm/train/Aw96fN64soV/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96818aa6a21992faa01006fed84e9f85265baf7aef85c6cd7b2f162045911f2 +size 624120 diff --git a/vlm/train/Aw96fN64soV/12.png b/vlm/train/Aw96fN64soV/12.png new file mode 100644 index 0000000000000000000000000000000000000000..48eb8ea9fe88d2a1899716a4cba5350fc13459af --- /dev/null +++ b/vlm/train/Aw96fN64soV/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d711efe1191e360e23f7a778f29529ff2030d0b105374f86a5e2c5fa98cc601 +size 565073 diff --git a/vlm/train/Aw96fN64soV/13.png b/vlm/train/Aw96fN64soV/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3f8bb7938d442c14ea9e5274ab6baee33029224a --- /dev/null +++ b/vlm/train/Aw96fN64soV/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7c2a69bc9180f79baf21be84712a689dd4d8ecc21774637be6ef6f0ad2fa714 +size 505110 diff --git a/vlm/train/Aw96fN64soV/14.png b/vlm/train/Aw96fN64soV/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f7559facc199bb31798d45c9dbf5aa5bd853ade1 --- /dev/null +++ b/vlm/train/Aw96fN64soV/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a188b02632c128bd6671a5c3098a77049c9868e0f4263b53e49fb1100d5f37e7 +size 247144 diff --git a/vlm/train/Aw96fN64soV/2.png b/vlm/train/Aw96fN64soV/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c8aa9580c19cc977de9d4255b07a607175b97c54 --- /dev/null +++ b/vlm/train/Aw96fN64soV/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28eddd05122ecc5479bbbf658d746735304c425d4998a8d232754ece0a353a37 +size 626655 diff --git a/vlm/train/Aw96fN64soV/3.png b/vlm/train/Aw96fN64soV/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f938619ccb923bd00fefbcae6ce5171616da2e99 --- /dev/null +++ b/vlm/train/Aw96fN64soV/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a836c7274c4322b91fdffc0d2be9eba87c652b57cd9b759c0b6d8220c906f6b +size 641905 diff --git a/vlm/train/Aw96fN64soV/4.png b/vlm/train/Aw96fN64soV/4.png new file mode 100644 index 0000000000000000000000000000000000000000..aa8d06b4cee687dfbcea01c3d010346beed8dee5 --- /dev/null +++ b/vlm/train/Aw96fN64soV/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b5090037995ce489ee20fdd3ce629d214ee864327229bfaae039dc4f78587c +size 735082 diff --git a/vlm/train/Aw96fN64soV/5.png b/vlm/train/Aw96fN64soV/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e6e2a3c3bc3dc2b249918bd7a0978e1e3d6435f2 --- /dev/null +++ b/vlm/train/Aw96fN64soV/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37bee2f8790e0e4b07a9f1c176a28ac2c987c2a9ee37c14c52b31cfe7fcf75c2 +size 528848 diff --git a/vlm/train/Aw96fN64soV/6.png b/vlm/train/Aw96fN64soV/6.png new file mode 100644 index 0000000000000000000000000000000000000000..852d784af6015c4996fea67a7a5fbac086f0052f --- /dev/null +++ b/vlm/train/Aw96fN64soV/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17deee848c4c9e9e1f4917cbcfaa163656efda194a49296026225b68e34a2ae +size 523864 diff --git a/vlm/train/Aw96fN64soV/7.png b/vlm/train/Aw96fN64soV/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8fae2fd9027569fc4580de4accc744be05a99e50 --- /dev/null +++ b/vlm/train/Aw96fN64soV/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a4449052228edfffa80b42047bd9fe5f16ebf7ab4b0efdff3d978beeeee2b6 +size 593502 diff --git a/vlm/train/Aw96fN64soV/8.png b/vlm/train/Aw96fN64soV/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3dbccd36ab914b419f2a27a6bc9500ec2e456765 --- /dev/null +++ b/vlm/train/Aw96fN64soV/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c8a5bc1140386c72e11cd9805c2caa4eac3f3aeabf459a73107f82cef8b167 +size 503237 diff --git a/vlm/train/Aw96fN64soV/9.png b/vlm/train/Aw96fN64soV/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e140685706b1d9d05e9e262a7602b98ec649d684 --- /dev/null +++ b/vlm/train/Aw96fN64soV/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac26718acbd72d7df48717915dc8f2758d3efe501a69c2f28ed4a28bea97a34d +size 588964 diff --git a/vlm/train/B1hYRMbCW/0.png b/vlm/train/B1hYRMbCW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..03d7415ae27811e9dcb384466f170d08a5e594eb --- /dev/null +++ b/vlm/train/B1hYRMbCW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6975d17a4b3b5401e0eb622839bf84fb2d4ac40a34e8c5c746c111fe3bcbf49f +size 488690 diff --git a/vlm/train/B1hYRMbCW/1.png b/vlm/train/B1hYRMbCW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dfd5bc29414706400db1585a6d9b777c5075d498 --- /dev/null +++ b/vlm/train/B1hYRMbCW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6f79988d44976506e2b3f421f7f62c1ee482ddc8512fed446cff44e930726a +size 497831 diff --git a/vlm/train/B1hYRMbCW/10.png b/vlm/train/B1hYRMbCW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..85b0185011b8367dfa36fa96bac5345778d88533 --- /dev/null +++ b/vlm/train/B1hYRMbCW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:863e60f08dacbbaafa8051d3c2c3ae3c15c0fa8d3425a789d1644614fa439ba0 +size 423399 diff --git a/vlm/train/B1hYRMbCW/11.png b/vlm/train/B1hYRMbCW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..99a7a937b6cdab843fba864a0aa1ada82a4ac14b --- /dev/null +++ b/vlm/train/B1hYRMbCW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd43a88dc774e2e7bfe77a6f627c05235f072e9467ef0161c01ab802ec8d3c32 +size 410158 diff --git a/vlm/train/B1hYRMbCW/12.png b/vlm/train/B1hYRMbCW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f2bdc8b692ccfd1c4bba82d230c2917b0ac16615 --- /dev/null +++ b/vlm/train/B1hYRMbCW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111ed34fb10242d7d74b30b328c683145f0604b71b75adc4f277e5ac197011ac +size 524113 diff --git a/vlm/train/B1hYRMbCW/13.png b/vlm/train/B1hYRMbCW/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3d1b94faea0e2dedbc57a5f39df23ff55001e754 --- /dev/null +++ b/vlm/train/B1hYRMbCW/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7f5e1ab80295cb266118e9114c51fe05be08e05264cd10602b8e22bb6361c0 +size 353571 diff --git a/vlm/train/B1hYRMbCW/14.png b/vlm/train/B1hYRMbCW/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b4c4fd0f4337b47beaa0ebf2ccc89a50e8c70e91 --- /dev/null +++ b/vlm/train/B1hYRMbCW/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a567254c7500866b1c990a210b4d2469c11a6417306f62e853aa4a6974e00794 +size 451438 diff --git a/vlm/train/B1hYRMbCW/15.png b/vlm/train/B1hYRMbCW/15.png new file mode 100644 index 0000000000000000000000000000000000000000..67f3bbf7959ef74dadcbc098d05cf154ea579da2 --- /dev/null +++ b/vlm/train/B1hYRMbCW/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29763e37f1289d86570247eb6a460be9547a4ccb1955018bd477910ad39a51d9 +size 398063 diff --git a/vlm/train/B1hYRMbCW/16.png b/vlm/train/B1hYRMbCW/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c9642eb3d9266ab4bc5ea2407568362b78568ac6 --- /dev/null +++ b/vlm/train/B1hYRMbCW/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e8fdec174f720a3ab99a14fa7ee5ef7dd6d965455b1a5c669088b7c3fe91a1 +size 271956 diff --git a/vlm/train/B1hYRMbCW/17.png b/vlm/train/B1hYRMbCW/17.png new file mode 100644 index 0000000000000000000000000000000000000000..844d4212513acaf909d768068380481955ffe4ff --- /dev/null +++ b/vlm/train/B1hYRMbCW/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79c7fea4e0c89891e98076d2a9b324694ae6b6234b14efa09ea6e3ed1294d0a4 +size 335292 diff --git a/vlm/train/B1hYRMbCW/18.png b/vlm/train/B1hYRMbCW/18.png new file mode 100644 index 0000000000000000000000000000000000000000..98e6e342bdb87acfdc7556eef3f0027be113964c --- /dev/null +++ b/vlm/train/B1hYRMbCW/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7aed7183c2932d7073ffcca8f410403a3c790fdb4ce1b05f78e8d9e551a514 +size 1175158 diff --git a/vlm/train/B1hYRMbCW/19.png b/vlm/train/B1hYRMbCW/19.png new file mode 100644 index 0000000000000000000000000000000000000000..abf3441d7b1586defd0f10abdbdabf9f592cfe2a --- /dev/null +++ b/vlm/train/B1hYRMbCW/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:249bbcae90e9210e27f8c61bfd4db20ef7dd5cd99412bb36de60d2cc706a239f +size 321721 diff --git a/vlm/train/B1hYRMbCW/2.png b/vlm/train/B1hYRMbCW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..601b2f82bf83961d51810ea2989b8e170d52fa2a --- /dev/null +++ b/vlm/train/B1hYRMbCW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbc8c18ba8e3597e8a6a47a371c6e429abaa8bc2149cee71629d4ca81f28ccc1 +size 522699 diff --git a/vlm/train/B1hYRMbCW/20.png b/vlm/train/B1hYRMbCW/20.png new file mode 100644 index 0000000000000000000000000000000000000000..d635d75729b81a5129ab02a3e58e0f2f2829865e --- /dev/null +++ b/vlm/train/B1hYRMbCW/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3586ae7db5bf25ed8ec13a761ee05b3c60383f9cf0500a6200fc07a6585e6550 +size 389912 diff --git a/vlm/train/B1hYRMbCW/21.png b/vlm/train/B1hYRMbCW/21.png new file mode 100644 index 0000000000000000000000000000000000000000..6e107298b0f56bf38bbdfeaddf1f688817c35d32 --- /dev/null +++ b/vlm/train/B1hYRMbCW/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b148abd6b4d1bd1586c83dc6a431e62f44ad257215f9d82a127352a620b5271 +size 374229 diff --git a/vlm/train/B1hYRMbCW/22.png b/vlm/train/B1hYRMbCW/22.png new file mode 100644 index 0000000000000000000000000000000000000000..27296f53d39d1175d0ecdcb1b8211a7602cb89c7 --- /dev/null +++ b/vlm/train/B1hYRMbCW/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06eee669f486590684eb7bc4052d01e3285a10fb74a8979ac89d28a2aba7381d +size 515484 diff --git a/vlm/train/B1hYRMbCW/23.png b/vlm/train/B1hYRMbCW/23.png new file mode 100644 index 0000000000000000000000000000000000000000..729cafe5c10696864d8e4b7d8b95c0af586afd8f --- /dev/null +++ b/vlm/train/B1hYRMbCW/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce247861ec99b9e348ae2ee6dd672fac6143ee68cac88437580af0a96a60149 +size 523675 diff --git a/vlm/train/B1hYRMbCW/3.png b/vlm/train/B1hYRMbCW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3417029b03bb8cd321218526a8356f4fe64dd3f4 --- /dev/null +++ b/vlm/train/B1hYRMbCW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fc49939cb27219f946c59432988e5887008a6999547f2d77762e138081e64a +size 471345 diff --git a/vlm/train/B1hYRMbCW/4.png b/vlm/train/B1hYRMbCW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b91f8362b98aa6b35f675131fda2898dd5976ca8 --- /dev/null +++ b/vlm/train/B1hYRMbCW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8148f60d38d9c19fb71b2964875842b7ed71422ee970b266a00e13092201088b +size 495900 diff --git a/vlm/train/B1hYRMbCW/5.png b/vlm/train/B1hYRMbCW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..202eef061e0579805df5f2ceb75979c488aabe3f --- /dev/null +++ b/vlm/train/B1hYRMbCW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2992bde630a4470e3075f24a1084e87549788ade2297719f6cd576918a803426 +size 551946 diff --git a/vlm/train/B1hYRMbCW/6.png b/vlm/train/B1hYRMbCW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b0164820573521ed916c054c4e81e5a5de958359 --- /dev/null +++ b/vlm/train/B1hYRMbCW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721f848ed26a7372c5505ead5c9ae9e7298bfa89ef6437914d64282afe11873d +size 579148 diff --git a/vlm/train/B1hYRMbCW/7.png b/vlm/train/B1hYRMbCW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..98a1f5eb7e5a6854b44e2a3ff02ea8e4d1aa4705 --- /dev/null +++ b/vlm/train/B1hYRMbCW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a894ae2a1e0d4a319254f9b3c8229ff8983d77847dfd61dc85792ebf39fbf5fa +size 833639 diff --git a/vlm/train/B1hYRMbCW/8.png b/vlm/train/B1hYRMbCW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2079368ec7b2b8e1d93423a72542df7df18466a3 --- /dev/null +++ b/vlm/train/B1hYRMbCW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322bd72b7a5af310e0091ba06a4e062ea8ef36341f86742eef60623d50b37b04 +size 424200 diff --git a/vlm/train/B1hYRMbCW/9.png b/vlm/train/B1hYRMbCW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c3b754535c946ac2208010f21d17e47b61912c --- /dev/null +++ b/vlm/train/B1hYRMbCW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92fe8fd7c2821ec6c4420c97dc50165892e635fba584f2dc8388b3cfe2fd6a5a +size 541720 diff --git a/vlm/train/BJE-4xW0W/0.png b/vlm/train/BJE-4xW0W/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2f8e83049e5ea2471e46db3f77671174c940d533 --- /dev/null +++ b/vlm/train/BJE-4xW0W/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604277f0b26aa468dbdeceff9edcf70b822b9f2efb588e20acc9a9980f476a2c +size 464403 diff --git a/vlm/train/BJE-4xW0W/1.png b/vlm/train/BJE-4xW0W/1.png new file mode 100644 index 0000000000000000000000000000000000000000..cb83f51263dac67bf0292456adda302ebcb71f20 --- /dev/null +++ b/vlm/train/BJE-4xW0W/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c67577001b0de9e7b9139a2a8aac2b6a4d1537d7b47c9f02afd63498f96f61c2 +size 749794 diff --git a/vlm/train/BJE-4xW0W/10.png b/vlm/train/BJE-4xW0W/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a2def72ffcb03723997c3934fb3bb79198a4756d --- /dev/null +++ b/vlm/train/BJE-4xW0W/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a7f3619c6a3c435e357100355ee4b8ecaa7e1a0c8b567797d12ce4d7aab641 +size 500786 diff --git a/vlm/train/BJE-4xW0W/11.png b/vlm/train/BJE-4xW0W/11.png new file mode 100644 index 0000000000000000000000000000000000000000..82df6144d16bd1368cfb43752be2724862081cfb --- /dev/null +++ b/vlm/train/BJE-4xW0W/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c4c04013e43b42ac7cd93245f15dd6ddc278cccc4ae5c7772ad92b5abcf539 +size 443268 diff --git a/vlm/train/BJE-4xW0W/12.png b/vlm/train/BJE-4xW0W/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6eb1fd5112a93363298317d894678e99a87c161f --- /dev/null +++ b/vlm/train/BJE-4xW0W/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203038f4dbbdeae54dd1be959e4cf15d85ddfcece48065ad7747d397c86504ff +size 426084 diff --git a/vlm/train/BJE-4xW0W/13.png b/vlm/train/BJE-4xW0W/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5942136ca5f391920293050f44f7dffcba5255d3 --- /dev/null +++ b/vlm/train/BJE-4xW0W/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58f9433c224b6dbfe5a363e9e182c180d7d61585c88ea515dfd91b0c08aea5b +size 395556 diff --git a/vlm/train/BJE-4xW0W/14.png b/vlm/train/BJE-4xW0W/14.png new file mode 100644 index 0000000000000000000000000000000000000000..221f2654de513acb45482b82cd0084d2e0160c97 --- /dev/null +++ b/vlm/train/BJE-4xW0W/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835dbb855d0459dc1070f8298295c2e6f0b38bf5931ed2ff4a20c5d77176e1c7 +size 568079 diff --git a/vlm/train/BJE-4xW0W/15.png b/vlm/train/BJE-4xW0W/15.png new file mode 100644 index 0000000000000000000000000000000000000000..1c8e83090fe1a24add7f0a5c59b080c75000fa77 --- /dev/null +++ b/vlm/train/BJE-4xW0W/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c84174792a54a2757f22df7c8e4555b5f65e0df0c3398faf7561a3fe8a50d117 +size 353692 diff --git a/vlm/train/BJE-4xW0W/16.png b/vlm/train/BJE-4xW0W/16.png new file mode 100644 index 0000000000000000000000000000000000000000..89ace6d82699e22c6b38f34850db34ba8025bb2d --- /dev/null +++ b/vlm/train/BJE-4xW0W/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a6e99537f8d9a85513bba258db8e4f2755657ebafe9187120c0abb8e6ea609 +size 386252 diff --git a/vlm/train/BJE-4xW0W/17.png b/vlm/train/BJE-4xW0W/17.png new file mode 100644 index 0000000000000000000000000000000000000000..7bc5eae79033f59ce822fa600b1e26308027d7d9 --- /dev/null +++ b/vlm/train/BJE-4xW0W/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17910b4e9d7392c574735fedd1463cfb0dbe65056934bcc7680a53cfdcc5e1bb +size 479804 diff --git a/vlm/train/BJE-4xW0W/18.png b/vlm/train/BJE-4xW0W/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5e102b3d02b62a44e09604c0274a63c77d2bc371 --- /dev/null +++ b/vlm/train/BJE-4xW0W/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a699606e89ef47c9bb96a0027d8dbc245038ff67c2acba81717fd43d88a8594 +size 514584 diff --git a/vlm/train/BJE-4xW0W/19.png b/vlm/train/BJE-4xW0W/19.png new file mode 100644 index 0000000000000000000000000000000000000000..78c20db4ab9c507fdd2a1ce31fe7469927462547 --- /dev/null +++ b/vlm/train/BJE-4xW0W/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10654f308e85768c966202446e55f783f4f41633c8cf6e5bbb99085c65dbbda3 +size 625326 diff --git a/vlm/train/BJE-4xW0W/2.png b/vlm/train/BJE-4xW0W/2.png new file mode 100644 index 0000000000000000000000000000000000000000..09f7cab495e0b73d4c40982dca2148c3c060808b --- /dev/null +++ b/vlm/train/BJE-4xW0W/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8498b332ee24f96aca382e9d8b222ee5790041eed9e2390c15372191fb718a +size 602280 diff --git a/vlm/train/BJE-4xW0W/20.png b/vlm/train/BJE-4xW0W/20.png new file mode 100644 index 0000000000000000000000000000000000000000..b04a01ca13faf70cbbfcf3764922a536d18de7b2 --- /dev/null +++ b/vlm/train/BJE-4xW0W/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de36df9ad98438f4d17877592d4031581963cf0f22485297eed0fe676110f0ab +size 610142 diff --git a/vlm/train/BJE-4xW0W/21.png b/vlm/train/BJE-4xW0W/21.png new file mode 100644 index 0000000000000000000000000000000000000000..59513130c3caa3c87be314d360514919660f6dcd --- /dev/null +++ b/vlm/train/BJE-4xW0W/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7011cea3b57293830ea92a02fee5c0f40645b2071c8838b85b93fdab9ba3e9 +size 422027 diff --git a/vlm/train/BJE-4xW0W/22.png b/vlm/train/BJE-4xW0W/22.png new file mode 100644 index 0000000000000000000000000000000000000000..92be7ca52dbdf9f3938ebf6e868c68b659ff694d --- /dev/null +++ b/vlm/train/BJE-4xW0W/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:675f86997b78bcd8fed6d23d0c055905c332b77e74d1e6fa43433f485a783455 +size 917365 diff --git a/vlm/train/BJE-4xW0W/23.png b/vlm/train/BJE-4xW0W/23.png new file mode 100644 index 0000000000000000000000000000000000000000..6ee0aed5e01e785961fccfeb0bc91ae98676e3f4 --- /dev/null +++ b/vlm/train/BJE-4xW0W/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6e8fef31665eb51d14fbbc8ec2684518559599449a5a75df2fa10def256285 +size 856332 diff --git a/vlm/train/BJE-4xW0W/24.png b/vlm/train/BJE-4xW0W/24.png new file mode 100644 index 0000000000000000000000000000000000000000..ae85c845a4f3b12734531bbacce81ed215f79160 --- /dev/null +++ b/vlm/train/BJE-4xW0W/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79540674cb9fd43ad3e9e33aab8202b2f7097579e9f5f4c1d7d0fc8cec493feb +size 1895336 diff --git a/vlm/train/BJE-4xW0W/25.png b/vlm/train/BJE-4xW0W/25.png new file mode 100644 index 0000000000000000000000000000000000000000..03e86b87cf1a5ebbc7d37622e25657f7a12b6563 --- /dev/null +++ b/vlm/train/BJE-4xW0W/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80a856924333215b95abe639b3d1506a0f0d655a4a62cf90faf6df397cc1980c +size 2170667 diff --git a/vlm/train/BJE-4xW0W/26.png b/vlm/train/BJE-4xW0W/26.png new file mode 100644 index 0000000000000000000000000000000000000000..9e25e9a2970ae76dc234229bf693d4a6a08e55ab --- /dev/null +++ b/vlm/train/BJE-4xW0W/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f17b96f5b22813159abdf9934b039417dbfa18d674b77db701bcdd3b62df24 +size 972141 diff --git a/vlm/train/BJE-4xW0W/27.png b/vlm/train/BJE-4xW0W/27.png new file mode 100644 index 0000000000000000000000000000000000000000..0cd0280a0c7c3b1aa3af0d6e3c548450db9c3371 --- /dev/null +++ b/vlm/train/BJE-4xW0W/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72357c270c27f29e64f44945b87a91421f0d0689f1a0c8c1c2763893b14b758b +size 1558062 diff --git a/vlm/train/BJE-4xW0W/28.png b/vlm/train/BJE-4xW0W/28.png new file mode 100644 index 0000000000000000000000000000000000000000..384af46967e4885c97017fa420c9b70577e20209 --- /dev/null +++ b/vlm/train/BJE-4xW0W/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8416302b76f3419602f347cbf8284497f3c69152bb416afe317b1eca957b2ca +size 1908569 diff --git a/vlm/train/BJE-4xW0W/29.png b/vlm/train/BJE-4xW0W/29.png new file mode 100644 index 0000000000000000000000000000000000000000..3b02e966131b5d508d8ea71b5576cdebf955e921 --- /dev/null +++ b/vlm/train/BJE-4xW0W/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9d12a7c1fdacb868af00f5679be949d0e99dfb4cde5eb2db900d64904749c6 +size 384305 diff --git a/vlm/train/BJE-4xW0W/3.png b/vlm/train/BJE-4xW0W/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f0fea988244457d4631c04608d3a80489f8c7d3e --- /dev/null +++ b/vlm/train/BJE-4xW0W/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a53b505780d645ea9140b84cdce774e13642da9555090054dca51571ceecb63 +size 630312 diff --git a/vlm/train/BJE-4xW0W/30.png b/vlm/train/BJE-4xW0W/30.png new file mode 100644 index 0000000000000000000000000000000000000000..9687392b3c89ee530eb580d936e96e1c076ccc18 --- /dev/null +++ b/vlm/train/BJE-4xW0W/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5daf4dbea844681f173bda083dcfbfc9e9449e73eb91e65f305e618f81b79e24 +size 302034 diff --git a/vlm/train/BJE-4xW0W/31.png b/vlm/train/BJE-4xW0W/31.png new file mode 100644 index 0000000000000000000000000000000000000000..2c01f7b9454daf977b882ae2e08d2ff6e4e60d7d --- /dev/null +++ b/vlm/train/BJE-4xW0W/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:337da4c3c1ee5b4bd7b07e02f32b6c2360cc602126ed33be9f58c913d7063a77 +size 2058677 diff --git a/vlm/train/BJE-4xW0W/32.png b/vlm/train/BJE-4xW0W/32.png new file mode 100644 index 0000000000000000000000000000000000000000..fce6c03d36d35ac0abfa694270c9533367f7e55b --- /dev/null +++ b/vlm/train/BJE-4xW0W/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d06866bd8f8e8c452af2d1b5cecea31e06ba1379198ef5194963d95b9eccd3 +size 1036642 diff --git a/vlm/train/BJE-4xW0W/4.png b/vlm/train/BJE-4xW0W/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fd9ed527051330ff846091a3ba06858b19de7caf --- /dev/null +++ b/vlm/train/BJE-4xW0W/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311cefa48341fe872fa0f29b19d14f65ca53b4503fc65f152ec8988ff3c29d73 +size 494435 diff --git a/vlm/train/BJE-4xW0W/5.png b/vlm/train/BJE-4xW0W/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3a52378f38f74bbfcb1969173bfa7cc3c0e0395a --- /dev/null +++ b/vlm/train/BJE-4xW0W/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055d8b38e3a2f5f10aaff66b282efb19001c4a5e32667ce41e07994a17bae839 +size 502915 diff --git a/vlm/train/BJE-4xW0W/6.png b/vlm/train/BJE-4xW0W/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9bf796f3123d09d5b449ac9a8701f89c099f651e --- /dev/null +++ b/vlm/train/BJE-4xW0W/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e98f13fedd4dbf4711396fc483ac9328cfdd59c5604ada572b6dddd8fbc1caf +size 510472 diff --git a/vlm/train/BJE-4xW0W/7.png b/vlm/train/BJE-4xW0W/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3a32043cdfa99416ecb91808b9dd5a6118e2ba3c --- /dev/null +++ b/vlm/train/BJE-4xW0W/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7335efac53822e6208b44d50df33c2eb22a67faba2001ae1a8b36cb1ff335452 +size 577521 diff --git a/vlm/train/BJE-4xW0W/8.png b/vlm/train/BJE-4xW0W/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4f38edf9b03ee1cd0e4e756b8e5301d5da726e8f --- /dev/null +++ b/vlm/train/BJE-4xW0W/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b1f478ca64d2f6d8c9d38c60459a2440b8773177872e80a6601b368ccd9fac +size 1129634 diff --git a/vlm/train/BJE-4xW0W/9.png b/vlm/train/BJE-4xW0W/9.png new file mode 100644 index 0000000000000000000000000000000000000000..74f7a9d28af4ff7987236c47e8cac33b10ba6ab8 --- /dev/null +++ b/vlm/train/BJE-4xW0W/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb07741b2c76add8961890977cec5564eda3f762e9d4a02b3f8afb05914ec6ee +size 421069 diff --git a/vlm/train/BJbD_Pqlg/0.png b/vlm/train/BJbD_Pqlg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3e739fdd409baef3fefaf1882f8c7a7e025d1047 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24d6f29582127d3b3a50dde74c658c80733699d3260c16c117317d61b1b7f73c +size 430870 diff --git a/vlm/train/BJbD_Pqlg/1.png b/vlm/train/BJbD_Pqlg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..aeeac8062f2e28d14bff540c7a71c039e3f01daa --- /dev/null +++ b/vlm/train/BJbD_Pqlg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f96303444870ff8367751ff9b44a92097505cc7e15bf7e96929468f9183ee4 +size 588914 diff --git a/vlm/train/BJbD_Pqlg/10.png b/vlm/train/BJbD_Pqlg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bba950dba22cc87e7ebc17659ee7ade81efd03fc --- /dev/null +++ b/vlm/train/BJbD_Pqlg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a48d117fd4ec69f3fac1bbf06a60a32438bcd88955f7fd58e2b2958abbcda0 +size 585707 diff --git a/vlm/train/BJbD_Pqlg/11.png b/vlm/train/BJbD_Pqlg/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9d4e343e8d45c9c13fb1d72255f28af1f20b0749 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8482c0e87aa9bc831b30012e1d1a1f0021f2bc5d684564d89c82df3977f33e63 +size 545268 diff --git a/vlm/train/BJbD_Pqlg/12.png b/vlm/train/BJbD_Pqlg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2825af6690f975b593068503735d7d9f07ce72ea --- /dev/null +++ b/vlm/train/BJbD_Pqlg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a5fdaf2ecdd835b0c267c5ddb17bd8deced52f99be7144a4b7cec79d0e24302 +size 196129 diff --git a/vlm/train/BJbD_Pqlg/13.png b/vlm/train/BJbD_Pqlg/13.png new file mode 100644 index 0000000000000000000000000000000000000000..78d8b50ecc5938bd53b36d38358ead4e44ea2db4 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec3926f646a33e65cc554d89083e3115cff56f802354b6470601ff87f0823d1 +size 330814 diff --git a/vlm/train/BJbD_Pqlg/14.png b/vlm/train/BJbD_Pqlg/14.png new file mode 100644 index 0000000000000000000000000000000000000000..16e3a631ac93135b27186eaffc9a72c9896d9354 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3b37cb38d6768e0794245403eb908a6bebc2469ce9e24140dbdfa997a53cc8 +size 362162 diff --git a/vlm/train/BJbD_Pqlg/15.png b/vlm/train/BJbD_Pqlg/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b54cf6bab8a9ab83a69b37f49aa3432966e27db7 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b307982c9db3c5802c93bb6c54221ae9279c9131ccadb31a044b6380249431d5 +size 790010 diff --git a/vlm/train/BJbD_Pqlg/16.png b/vlm/train/BJbD_Pqlg/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9ae4103785d28e1436e50aa575cf02c2b664666b --- /dev/null +++ b/vlm/train/BJbD_Pqlg/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84248847b539ece93cac868cc5495106a9fbef957ca4807112a93b40fe525175 +size 175224 diff --git a/vlm/train/BJbD_Pqlg/17.png b/vlm/train/BJbD_Pqlg/17.png new file mode 100644 index 0000000000000000000000000000000000000000..1a71586a16362f46b693ac70edea4b686354406f --- /dev/null +++ b/vlm/train/BJbD_Pqlg/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6049c396d184cfc38e674611ab98247045e1b29392f4b8d4ab0271ca38012618 +size 266363 diff --git a/vlm/train/BJbD_Pqlg/18.png b/vlm/train/BJbD_Pqlg/18.png new file mode 100644 index 0000000000000000000000000000000000000000..283b11aa9091e5b047fd92ecd970a87ad24c79b4 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79fe8386be7c3765c6b8297cd4c9ca19a28a26dddaafd768b5aaa3a1aaba90e8 +size 409262 diff --git a/vlm/train/BJbD_Pqlg/19.png b/vlm/train/BJbD_Pqlg/19.png new file mode 100644 index 0000000000000000000000000000000000000000..234665a0f63a1ec03a319df03dd00ce91f82f4e4 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f776cb1dd396ef8a4977af0325252d34687511949ab8e70977dde98bb83b3eee +size 296852 diff --git a/vlm/train/BJbD_Pqlg/2.png b/vlm/train/BJbD_Pqlg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bd281d2beb9541146862521a00f0fa8aa7915a42 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca2746fb80ea18f2fba4da6ae3e988fbf29051ca3c2f17c25c9bcb4031ed08e +size 579520 diff --git a/vlm/train/BJbD_Pqlg/20.png b/vlm/train/BJbD_Pqlg/20.png new file mode 100644 index 0000000000000000000000000000000000000000..aa963bd7ad811763195b06e4cad5bb729f5932e2 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2caa6621030920a57cc90c9293bd9dcf0edc190aab58e86dad9a20c4d931ccb +size 496095 diff --git a/vlm/train/BJbD_Pqlg/21.png b/vlm/train/BJbD_Pqlg/21.png new file mode 100644 index 0000000000000000000000000000000000000000..1e754b414d8e1988033cab1bf6e346098188c88a --- /dev/null +++ b/vlm/train/BJbD_Pqlg/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6663e46d46c19450447067f2c3b8b8dc38b3b3cef2280a77bafbccf8dc104239 +size 295501 diff --git a/vlm/train/BJbD_Pqlg/22.png b/vlm/train/BJbD_Pqlg/22.png new file mode 100644 index 0000000000000000000000000000000000000000..da04f15acd2ff4c803bcf4a1afc24b92db804dcb --- /dev/null +++ b/vlm/train/BJbD_Pqlg/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd71b8443a0d5e599e77d4af0cd7da49f35077474c5e09f37de1f1cd1c02a5e6 +size 123988 diff --git a/vlm/train/BJbD_Pqlg/3.png b/vlm/train/BJbD_Pqlg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9a0329b88bdaefe57ff6ffe47e22e370a6a1690b --- /dev/null +++ b/vlm/train/BJbD_Pqlg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a68156735292c680bd16d96e27f2d8ff763d4099af7f99ca3eb2ba9107083b +size 453616 diff --git a/vlm/train/BJbD_Pqlg/4.png b/vlm/train/BJbD_Pqlg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a192624ad6836c8cb3da0890cf91d9cc8d1ff4e8 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560d84878d4ce25c80cbc9578f3052478efd2281e27c0f4abfe88b1bb96a7d3f +size 505392 diff --git a/vlm/train/BJbD_Pqlg/5.png b/vlm/train/BJbD_Pqlg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..304ba693743c511198bf76115661ac3d8eecd21f --- /dev/null +++ b/vlm/train/BJbD_Pqlg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98a0628d23a02d007a60f3157fe2ba0a323ef43baa1c39f3379cb22bee05fb81 +size 486568 diff --git a/vlm/train/BJbD_Pqlg/6.png b/vlm/train/BJbD_Pqlg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f3cfc07b67db4009a3322e1c0e90440c92ec8053 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0034e1a7803fb460e5e30eadd05f1b2a2741aeabfee189c241612502250f2413 +size 549792 diff --git a/vlm/train/BJbD_Pqlg/7.png b/vlm/train/BJbD_Pqlg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8b9feb3d9b4a45c2e632875c4813488e4d2350c8 --- /dev/null +++ b/vlm/train/BJbD_Pqlg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf7937c522fd143427a660993afb860aa5f6be67a783871a4dee86a23ef875d +size 537532 diff --git a/vlm/train/BJbD_Pqlg/8.png b/vlm/train/BJbD_Pqlg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2d9c75692fd12d7bf8644cc5e7195894e8b5282f --- /dev/null +++ b/vlm/train/BJbD_Pqlg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85e0eadde69a5010768e997a72f3d0b92c8bf147b33828f7218ad755e713d6b1 +size 513756 diff --git a/vlm/train/BJbD_Pqlg/9.png b/vlm/train/BJbD_Pqlg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1ad2f6faa5276b426e3f9318ac9278129f27707a --- /dev/null +++ b/vlm/train/BJbD_Pqlg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdbafcf247277101b63c4f8928392a9f2571e1922e8418f34f4ee3224046fbd1 +size 537936 diff --git a/vlm/train/BJgcwh4FwS/0.png b/vlm/train/BJgcwh4FwS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0a07e899dd0c90e29a4e485aa14072947b321f22 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865a89fbaa1e7364a8fe1032b1c7a49cb20c46b94f3df307f41b172bbef79083 +size 529859 diff --git a/vlm/train/BJgcwh4FwS/1.png b/vlm/train/BJgcwh4FwS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..56705b88ac1059e9ac1d1d4bcfadb8b558a7d327 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb118ddf850ce43eb7aa14d05ad3ffbae5683783d8f376067f0ff679def947b +size 527997 diff --git a/vlm/train/BJgcwh4FwS/10.png b/vlm/train/BJgcwh4FwS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1b4dcb55c68fe5b21ec229bf1e8868b603289530 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309a633fedcaeb5e8c2db42d05ee02f531a9964998c6a473b722fd52fdb303b6 +size 471962 diff --git a/vlm/train/BJgcwh4FwS/11.png b/vlm/train/BJgcwh4FwS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b3b0afe5be1b140a2ed26664ee558d737bcb6d4e --- /dev/null +++ b/vlm/train/BJgcwh4FwS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a99cde038dbd31c51f187cf3c611aaf8eb682806eb097dd711e357b098828cfa +size 579362 diff --git a/vlm/train/BJgcwh4FwS/12.png b/vlm/train/BJgcwh4FwS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..07827e3782f7043f4d2134d3549b9b1339566435 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e3e7fe3d3b178b0200836aabb10ee79dfb59f2e6d964a60f3d77a069a7b4428 +size 500767 diff --git a/vlm/train/BJgcwh4FwS/13.png b/vlm/train/BJgcwh4FwS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5e7490172f19c1142891c9cdfe2c801f5df76d0d --- /dev/null +++ b/vlm/train/BJgcwh4FwS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c2681bfb3c4d3e5c2445bc0663aa7753c9982e6cf9f1217de9c711eab1a43d2 +size 456702 diff --git a/vlm/train/BJgcwh4FwS/14.png b/vlm/train/BJgcwh4FwS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a8235711682b0bd71a2061590f1e7011dad8c74d --- /dev/null +++ b/vlm/train/BJgcwh4FwS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff349cd868a72f513fc62776411f7b2074071eec5dd0b91e8099b6a3ebf7861 +size 543682 diff --git a/vlm/train/BJgcwh4FwS/15.png b/vlm/train/BJgcwh4FwS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..36d9a90f81b78b902aee273eba333929be7500c3 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247d8469afc4aecb121cc21d5adb1829a4a8ce8dc49eff18300bcda55545713f +size 457048 diff --git a/vlm/train/BJgcwh4FwS/16.png b/vlm/train/BJgcwh4FwS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..056b1a6e8ab227d8e25dc5e756ffa74a8a1692cf --- /dev/null +++ b/vlm/train/BJgcwh4FwS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c309aa6a13bbbdcc81a4cb312aa12025e2d3a70a9873be76f856ea61f899044e +size 576504 diff --git a/vlm/train/BJgcwh4FwS/17.png b/vlm/train/BJgcwh4FwS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..7508a18bafc888118620f8cef70c3038896319a5 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ad976845410d4f1a2eb09423a4d559b6d09b27da73eb1bdb1e5475343f410a +size 307251 diff --git a/vlm/train/BJgcwh4FwS/18.png b/vlm/train/BJgcwh4FwS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..d5daa7467b99922259e278fa1de0199c93bcdd7b --- /dev/null +++ b/vlm/train/BJgcwh4FwS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc912894cd5a6eb37f06a734cfaea8cc0e9aaab5e534e3a2810b6381049b24b +size 791369 diff --git a/vlm/train/BJgcwh4FwS/2.png b/vlm/train/BJgcwh4FwS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a8349f34de1adcdc22dec25b972ff281abccedf1 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6fb000d163628730fc1b8418d177235bc3b9fd2220b939e6d7c60151be0e14 +size 513835 diff --git a/vlm/train/BJgcwh4FwS/3.png b/vlm/train/BJgcwh4FwS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0b9e07b31f11a62b5f7ab49bc843357cecace725 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b22afdfe308276c0c4ff29f9c34e07b8142364b2381b10eb62989e7049535ef +size 578898 diff --git a/vlm/train/BJgcwh4FwS/4.png b/vlm/train/BJgcwh4FwS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..851c871e9db15b0dfa9a965bce6257d017c9eda7 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:103935a097a1b87212675816f595bc3922433abfc1f724e7d3534db6f0330679 +size 481697 diff --git a/vlm/train/BJgcwh4FwS/5.png b/vlm/train/BJgcwh4FwS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f32191f5de9945997347bc716976c78e8a331130 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9df35a3f35f03719852767c35e80d24c93ecd5dc44a41c039d5acc9a729630 +size 456429 diff --git a/vlm/train/BJgcwh4FwS/6.png b/vlm/train/BJgcwh4FwS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0b11d3592074e86befc0d864366247fca9b45151 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46c355c16176f59610cdb3d620a3d4ac507ca6c2f29408399eda45309b147b4 +size 513612 diff --git a/vlm/train/BJgcwh4FwS/7.png b/vlm/train/BJgcwh4FwS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..360825202cde539feb43937a72331110adfb9408 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9092ac19afceefe4aa2e2f3c5f9ccb16056e71ccd02abe72a04694a6afdadbd +size 707865 diff --git a/vlm/train/BJgcwh4FwS/8.png b/vlm/train/BJgcwh4FwS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f464130b9a9777af5b8ef284e90e43cce23485d0 --- /dev/null +++ b/vlm/train/BJgcwh4FwS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aba259ba0e42f48d0f5640f23d5d5745d6fdfddd5a4ca3f34e7dad0e553278e +size 520069 diff --git a/vlm/train/BJgcwh4FwS/9.png b/vlm/train/BJgcwh4FwS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..cae1339b8ae892a6a2ff42d22f9ebf1adfd0524f --- /dev/null +++ b/vlm/train/BJgcwh4FwS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b6577f71fedb583f9bf7fd4c87fb59b96754939ec96d2910e1c366b2ea3580 +size 517804 diff --git a/vlm/train/BJj6qGbRW/0.png b/vlm/train/BJj6qGbRW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6721604fe77533ba952a7f05577b3ded346c2c62 --- /dev/null +++ b/vlm/train/BJj6qGbRW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea2e2add91fa83f5d8e0cc103548b5bda6f3b68ddac5e546a0da7c06872eff2a +size 481706 diff --git a/vlm/train/BJj6qGbRW/1.png b/vlm/train/BJj6qGbRW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9e143f474323c1b32b5370e05b9a963cd9a9472c --- /dev/null +++ b/vlm/train/BJj6qGbRW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a31e85c7f268ee3d6ab8b6983bbb2a0db8f26bed814c38924e58bb8a464a7c +size 561130 diff --git a/vlm/train/BJj6qGbRW/10.png b/vlm/train/BJj6qGbRW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0814f2c7301f38b2106a79483779645cae1c65 --- /dev/null +++ b/vlm/train/BJj6qGbRW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2b96fdb9c7fa21cd77223c2548a54df9fedc940fe054f7e539b3eaa76b8895 +size 522379 diff --git a/vlm/train/BJj6qGbRW/11.png b/vlm/train/BJj6qGbRW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..16999922a08ea7082aa82779975d8a8c1cddeb29 --- /dev/null +++ b/vlm/train/BJj6qGbRW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6959bdb63d457f017a9de7ce593b0eea194fa9088d3a0992774cdacfd0c0ce +size 204981 diff --git a/vlm/train/BJj6qGbRW/12.png b/vlm/train/BJj6qGbRW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..74ad137519c1290f2150024f3ffdb5be57a356db --- /dev/null +++ b/vlm/train/BJj6qGbRW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0a91e812041a344a7091baa15095de959c121d09d430252b09095d04e98519 +size 212819 diff --git a/vlm/train/BJj6qGbRW/2.png b/vlm/train/BJj6qGbRW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..72ea2ddfa3e9011c71389237253888905c342271 --- /dev/null +++ b/vlm/train/BJj6qGbRW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca2bd51d8aec6e582ade53b1924d32afa15f2a7b6139b46096b0f235ad9efd6 +size 457505 diff --git a/vlm/train/BJj6qGbRW/3.png b/vlm/train/BJj6qGbRW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..af7687672f1c7dbc46ecf41fcc48c6f0b5c173e8 --- /dev/null +++ b/vlm/train/BJj6qGbRW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe75690001d0708d89c8201e9ea393e3b5196c11b0119600e3a32e81bce990a8 +size 476543 diff --git a/vlm/train/BJj6qGbRW/4.png b/vlm/train/BJj6qGbRW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7a3f0208b378f8efb7577025513bff48f2a2ea68 --- /dev/null +++ b/vlm/train/BJj6qGbRW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29bc2330637e40eaad6db9561bbfe15eff38a1349e594193c8b5fa091f9f6b6 +size 444258 diff --git a/vlm/train/BJj6qGbRW/5.png b/vlm/train/BJj6qGbRW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..be35c004a94e50d37e925f30f0fd3bed9b74852e --- /dev/null +++ b/vlm/train/BJj6qGbRW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c580cb7ff0dc86566ab00912bf223bc66df8eca683d35108110a44403d89cad +size 397684 diff --git a/vlm/train/BJj6qGbRW/6.png b/vlm/train/BJj6qGbRW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..24f8ddebc0ec2bb7fac28d25ddc31b597f153602 --- /dev/null +++ b/vlm/train/BJj6qGbRW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb40d1f7cbb896a154c41ecef8fde8108c7a427fb8b3b90027d8ed846a25c4f +size 480568 diff --git a/vlm/train/BJj6qGbRW/7.png b/vlm/train/BJj6qGbRW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a1e1bf6b9d17eefc3671807764cf19f1a0f6cd10 --- /dev/null +++ b/vlm/train/BJj6qGbRW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28108e130d03422aa9feffa8378f939cfccdc48820bd2ed8616bb09d454812ff +size 555349 diff --git a/vlm/train/BJj6qGbRW/8.png b/vlm/train/BJj6qGbRW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..65d3e08e19f5763ecafd357c2684442c08b598df --- /dev/null +++ b/vlm/train/BJj6qGbRW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a40949645ac02f5f75f6d3701be45763004a0c1531814ba6e65cfd679ca56dc +size 446852 diff --git a/vlm/train/BJj6qGbRW/9.png b/vlm/train/BJj6qGbRW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5e16daf2af3ad445e72d5ec7218ac3fe8e431c1b --- /dev/null +++ b/vlm/train/BJj6qGbRW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bffe98e164636a45902ea92e1fe2f7dee3942e36243dbf4383bd31aa5f97a06 +size 457545 diff --git a/vlm/train/BJl_VnR9Km/0.png b/vlm/train/BJl_VnR9Km/0.png new file mode 100644 index 0000000000000000000000000000000000000000..73baddc9ce5094dad5ad0fd49de8b6322edc8611 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7c7200d2c354ca495ff80282d5e6aa5360dcf18ef53d2ac3805b89b6813c10 +size 493598 diff --git a/vlm/train/BJl_VnR9Km/1.png b/vlm/train/BJl_VnR9Km/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b6f78d11ce19d553c1570a8fbee7750770d415cd --- /dev/null +++ b/vlm/train/BJl_VnR9Km/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca23c48b5be3f4a3d94804c3ef19a501eb4a21055e4a437b0f922d9ec6ffb67 +size 583924 diff --git a/vlm/train/BJl_VnR9Km/10.png b/vlm/train/BJl_VnR9Km/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b472a747b0c7f5b5c7ce13cbd8710b883a3ddc47 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9511ef78bbf2779468b9f9f33db95060c8a2871312c7f3e06b9b976365428bb5 +size 510332 diff --git a/vlm/train/BJl_VnR9Km/11.png b/vlm/train/BJl_VnR9Km/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fd77611b0ace2cac1295b29eda2e3c361d1c103f --- /dev/null +++ b/vlm/train/BJl_VnR9Km/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b26adde711fb3cb22891ae83037a8dc901adf8c81698f85db67493303b76c2 +size 498081 diff --git a/vlm/train/BJl_VnR9Km/12.png b/vlm/train/BJl_VnR9Km/12.png new file mode 100644 index 0000000000000000000000000000000000000000..be291da322dd1109d27c5af64415d9b1fb8bd14e --- /dev/null +++ b/vlm/train/BJl_VnR9Km/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764cba979e4e3b3f8a99ac9c088f0ed3621ce5cc23950e27b3dd5d0a9eab11a0 +size 326126 diff --git a/vlm/train/BJl_VnR9Km/13.png b/vlm/train/BJl_VnR9Km/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9088fb38110dda5707e52e9859f90e6179df4f7e --- /dev/null +++ b/vlm/train/BJl_VnR9Km/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1307c777b1b1590295be3cba10763fafc32f74a04542654b64a8939fdf1d420 +size 479173 diff --git a/vlm/train/BJl_VnR9Km/14.png b/vlm/train/BJl_VnR9Km/14.png new file mode 100644 index 0000000000000000000000000000000000000000..7af06dbaddf2d173cda7331404bde422069efca1 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e11e490f8beb4d5e5dc2b5f920ee5731437f14d7e6feade81047ed099ded67a5 +size 406236 diff --git a/vlm/train/BJl_VnR9Km/15.png b/vlm/train/BJl_VnR9Km/15.png new file mode 100644 index 0000000000000000000000000000000000000000..90201e9a9054861a4207e6a907775ea3c8317685 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac173703df26c5f55ac2641ab7af18d76e35dfe52d9d18cc0ce03213cec4421 +size 494400 diff --git a/vlm/train/BJl_VnR9Km/16.png b/vlm/train/BJl_VnR9Km/16.png new file mode 100644 index 0000000000000000000000000000000000000000..35f950358a50adf4a0babcc1525f7a5c11b5c362 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8c54fe2c9d978b0bd15ea5c2b847b8186153b7f92d6d299dec6bbea24c8dc2e +size 180825 diff --git a/vlm/train/BJl_VnR9Km/2.png b/vlm/train/BJl_VnR9Km/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e10db4405c8d739c5a3b52061022494032943e4a --- /dev/null +++ b/vlm/train/BJl_VnR9Km/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c59d3040cfaf4abb9ba3ea9aab9c5781aea5d7332051e58cf85497b4bb2609f +size 580622 diff --git a/vlm/train/BJl_VnR9Km/3.png b/vlm/train/BJl_VnR9Km/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2260c08b8dcfed347c0c6f4f0de63e6d1af20a98 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a1cb1ebbfaaf62aa906a3ee3f1e8b3095ab2ad48dab01b2d7ca23eb213158c +size 474901 diff --git a/vlm/train/BJl_VnR9Km/4.png b/vlm/train/BJl_VnR9Km/4.png new file mode 100644 index 0000000000000000000000000000000000000000..08a2d5ffd2524535694c9f3ca40e2826d149fafd --- /dev/null +++ b/vlm/train/BJl_VnR9Km/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9652776e70e2b3d7343d49e561459728a245f310b5bd278ef021c929f49d7b24 +size 499148 diff --git a/vlm/train/BJl_VnR9Km/5.png b/vlm/train/BJl_VnR9Km/5.png new file mode 100644 index 0000000000000000000000000000000000000000..0bbf4d295d3a76005dfe50d0c60f9ce50bbfc5fc --- /dev/null +++ b/vlm/train/BJl_VnR9Km/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dac21d6e51d410f62db06a4f2a6e552c705c638b77d48f02c476320d039571f +size 461191 diff --git a/vlm/train/BJl_VnR9Km/6.png b/vlm/train/BJl_VnR9Km/6.png new file mode 100644 index 0000000000000000000000000000000000000000..573761f936bb1adb1e4c9f98825236608937b692 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d69b3d210a190cf5a586c88dafa5821ee09875b982dd7a0777031a6e8ce247e +size 899952 diff --git a/vlm/train/BJl_VnR9Km/7.png b/vlm/train/BJl_VnR9Km/7.png new file mode 100644 index 0000000000000000000000000000000000000000..df5c3ecc4563d7daaabd567bfabd300840f53766 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d8fda6a711a58a46114061cf5b5fdc357c79502a4bc1f21cf2ebe11b3280c5 +size 602472 diff --git a/vlm/train/BJl_VnR9Km/8.png b/vlm/train/BJl_VnR9Km/8.png new file mode 100644 index 0000000000000000000000000000000000000000..14ec696177e60caabe95927203038cfd97c61203 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e782282d073479a66577a5b9d49c0b27833f1183856cda4f10690131d450a880 +size 624153 diff --git a/vlm/train/BJl_VnR9Km/9.png b/vlm/train/BJl_VnR9Km/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e164acccf2d40763649e6fafceea8ee5cf1c0a71 --- /dev/null +++ b/vlm/train/BJl_VnR9Km/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebec4c16dbd043b33d7c627e5e09c91abc6e79f6b7c33bc0d316a86a74f43901 +size 576285 diff --git a/vlm/train/BJlgt2EYwr/0.png b/vlm/train/BJlgt2EYwr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7ea09bc66d9f88e8b763a4541d8959de77e5792d --- /dev/null +++ b/vlm/train/BJlgt2EYwr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8a0032ff925e43eee6dbf2d7e86a5411abb5b9f9b10f5ac566a9b39f3523bf +size 545384 diff --git a/vlm/train/BJlgt2EYwr/1.png b/vlm/train/BJlgt2EYwr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6338097c187e3af3fd4883a377ea03ae3e17affa --- /dev/null +++ b/vlm/train/BJlgt2EYwr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d47f92f72ab523b80474ee127083db1266a1fcf0eba45fbadabc8bedff603e +size 622211 diff --git a/vlm/train/BJlgt2EYwr/10.png b/vlm/train/BJlgt2EYwr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6b2cfa306ec3ba8ac94dfc5ccd2341b014d6a424 --- /dev/null +++ b/vlm/train/BJlgt2EYwr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e2a0e226e755db3a2f5e3dfc9fad7d9a054d2772d418137dc80e4af2cea85d +size 519646 diff --git a/vlm/train/BJlgt2EYwr/11.png b/vlm/train/BJlgt2EYwr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..74e7af7ff92388f219dfd64fc3019e5fc630d72a --- /dev/null +++ b/vlm/train/BJlgt2EYwr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d34fe98e556bccf1cafb1b16188c5f2704f587b23b0eea83c6486130dc8e4b34 +size 497492 diff --git a/vlm/train/BJlgt2EYwr/12.png b/vlm/train/BJlgt2EYwr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe131bd76f6200ba02314a206ec748f5ea5cfcd --- /dev/null +++ b/vlm/train/BJlgt2EYwr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05a917e8f8651c94fc6737c38e7ed2b73e5a9fa102337be4f1453440bbd6244 +size 447120 diff --git a/vlm/train/BJlgt2EYwr/13.png b/vlm/train/BJlgt2EYwr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8266e14ceddfcd447608801cc4f8c22a974f09ca --- /dev/null +++ b/vlm/train/BJlgt2EYwr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae779e51b159f40b7134d333031d5c1d5650c9d2d13cf9d36124a636b5972482 +size 178612 diff --git a/vlm/train/BJlgt2EYwr/2.png b/vlm/train/BJlgt2EYwr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8b58ee1bde04b9a6f53702217b183879f1afa89b --- /dev/null +++ b/vlm/train/BJlgt2EYwr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9532f5ef4a0319c71da458b7089a239a6257e4f876035e184433abf208c9c6 +size 592871 diff --git a/vlm/train/BJlgt2EYwr/3.png b/vlm/train/BJlgt2EYwr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f9a476d1a63731afbab05904c2877d3c20e27366 --- /dev/null +++ b/vlm/train/BJlgt2EYwr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dbddd290644500138d61a09c9edf422d7e4f7866e3297598c0836e419625bfc +size 557116 diff --git a/vlm/train/BJlgt2EYwr/4.png b/vlm/train/BJlgt2EYwr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b5aba3f30d37081c3e11e8b457d71bd4d20385 --- /dev/null +++ b/vlm/train/BJlgt2EYwr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bdae0b1ba13dddd3c176747887689989099b54ad3b28b91573a1d604b43910 +size 526459 diff --git a/vlm/train/BJlgt2EYwr/5.png b/vlm/train/BJlgt2EYwr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..274c2d217996742d63953b235dd50d5f40e05a52 --- /dev/null +++ b/vlm/train/BJlgt2EYwr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72a14d563f1b5b362bebf91b491ef4c6756c99c6a2aa951bc8a95f9cc31a8a1 +size 633663 diff --git a/vlm/train/BJlgt2EYwr/6.png b/vlm/train/BJlgt2EYwr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7f92ac223646077f6b9cfc19b0ba01e3c82903 --- /dev/null +++ b/vlm/train/BJlgt2EYwr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca32345a4d81b46d87fe833e1486880e181760408e18cd08338a2ef28d0fc96 +size 514716 diff --git a/vlm/train/BJlgt2EYwr/7.png b/vlm/train/BJlgt2EYwr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d280fc4a92b9c7d8bfe61d016362047259dc5074 --- /dev/null +++ b/vlm/train/BJlgt2EYwr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1a346b870ab9cfb3efb0789eed0dc97832b557e7b9ae5502bd6f9a041d8fe68 +size 632522 diff --git a/vlm/train/BJlgt2EYwr/8.png b/vlm/train/BJlgt2EYwr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..33faddfab762c2f9e8c2344d1d9816e444db4011 --- /dev/null +++ b/vlm/train/BJlgt2EYwr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb474d14d4af440b20d284a5d8ec4f7856504988bab00705760cb19f7cd64229 +size 516960 diff --git a/vlm/train/BJlgt2EYwr/9.png b/vlm/train/BJlgt2EYwr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c9bbb6487df720f56e39cc1077e046f8abd8a168 --- /dev/null +++ b/vlm/train/BJlgt2EYwr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca25dfd870f3693c27d69c856c488a5fd8406b06aff4395bc95daa0677aadad +size 571778 diff --git a/vlm/train/BkgnhTEtDS/0.png b/vlm/train/BkgnhTEtDS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0dbd830f7ee3ee5bc29a66d8ce987d3918b94928 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d578fe81d0e35ee82cc67c3e46a7956384ddd691fd96e73c57ac8ca096c802b +size 464006 diff --git a/vlm/train/BkgnhTEtDS/1.png b/vlm/train/BkgnhTEtDS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fec0e5bdc3c116ed4f86f2038652d6d6aef11f12 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695f675dc69d7ea0b1e45e1f96b743bece2e6fb0a6d3ceb78b777effd944b0cf +size 426036 diff --git a/vlm/train/BkgnhTEtDS/10.png b/vlm/train/BkgnhTEtDS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ad14981c2b556177eae6483b2f5a093eacb33b --- /dev/null +++ b/vlm/train/BkgnhTEtDS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:712abcdd54a36ca9310e3f1372d8d21b19d8903d92673080e468465523b787bc +size 517061 diff --git a/vlm/train/BkgnhTEtDS/11.png b/vlm/train/BkgnhTEtDS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..188cbef935aa564c303c65137ff4b1205bdc5974 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ce3c4c7ef2438042e26c3784c387dae5d6dd3e0a3a19880902a35263d27634 +size 592545 diff --git a/vlm/train/BkgnhTEtDS/12.png b/vlm/train/BkgnhTEtDS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f63e30c515f011fb6c7750d9b0d0ab0820e9eebb --- /dev/null +++ b/vlm/train/BkgnhTEtDS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0998b6ac45dc4d0a748610fb353db4463657ee60589d4162581f8b6af7c802a +size 490078 diff --git a/vlm/train/BkgnhTEtDS/13.png b/vlm/train/BkgnhTEtDS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ab56321955991b931f80f172fee593e3cac56ed3 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e65d0f09cf3cad5281519940b6a74d7487262b33ab189de35a9c25bc33d076 +size 426708 diff --git a/vlm/train/BkgnhTEtDS/14.png b/vlm/train/BkgnhTEtDS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4b49204b5fac969cfa1c59d98cf22aa77dd4e7e5 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0669066a4436463676559b5cbc941ec54334b8124e1fdffa412b27b45a8fc231 +size 237749 diff --git a/vlm/train/BkgnhTEtDS/15.png b/vlm/train/BkgnhTEtDS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..21bf375db766452d15985fa40542fbdbca904fee --- /dev/null +++ b/vlm/train/BkgnhTEtDS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eed331c5fd43e744e36ccbfa737f8fe9bba1ba89e152ae6dc668bcd40a89d096 +size 389970 diff --git a/vlm/train/BkgnhTEtDS/16.png b/vlm/train/BkgnhTEtDS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2f24c55b1097cd5859984006805e73d5acd42a0e --- /dev/null +++ b/vlm/train/BkgnhTEtDS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded350c46517af27d9c7ddc6e94afa615c290732cd809502a4de0493cb5a9a22 +size 430186 diff --git a/vlm/train/BkgnhTEtDS/17.png b/vlm/train/BkgnhTEtDS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..61af185a88bdae5fd623bcc7c0dac561e12701e9 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2949f54c7e2205c641f9851e67c4bbc2ee96e94533b3570153b69b0536428c3 +size 441123 diff --git a/vlm/train/BkgnhTEtDS/18.png b/vlm/train/BkgnhTEtDS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..85f576c10d7c9b055182fbbf7fe97ca18a9c0058 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cabe222bf2118cb3372fae727742b470e8bcaaeff3759cd37d1f241e3de89af0 +size 252221 diff --git a/vlm/train/BkgnhTEtDS/2.png b/vlm/train/BkgnhTEtDS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f1b789ea21e90ebb2a05d3ced786db08c2909c8 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100984b01c97af51bf7a409a5758f7b54b175a8e21264d9cc93b83d1dd6b5beb +size 504949 diff --git a/vlm/train/BkgnhTEtDS/3.png b/vlm/train/BkgnhTEtDS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..65dbe68302032a563bc08833fb5c1b4a50b12e7b --- /dev/null +++ b/vlm/train/BkgnhTEtDS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fe93255d3582b89b1a249ff15b611fbd8c1bdd0007177dfeda2e2d60aec247 +size 464142 diff --git a/vlm/train/BkgnhTEtDS/4.png b/vlm/train/BkgnhTEtDS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e3715f93bd1fd5f7b850ba591442aafc1376abbf --- /dev/null +++ b/vlm/train/BkgnhTEtDS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd26a4f34911fbea0018b425e240c572787296d25ebe96b9a01e863dd9f69fe0 +size 558429 diff --git a/vlm/train/BkgnhTEtDS/5.png b/vlm/train/BkgnhTEtDS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b35444482d34daaf437be46d3b91136eac1e60ce --- /dev/null +++ b/vlm/train/BkgnhTEtDS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e683e2f013778073c16a8d76ef6fd1e9ce7c4e563ad768098eeaf9b51b6c52e5 +size 558130 diff --git a/vlm/train/BkgnhTEtDS/6.png b/vlm/train/BkgnhTEtDS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..44bbca35057fa83190be3d232a7b643e8df62ce7 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d77eabffa38b891ad942977817d58bbfdfb9f313e74bf7cce85b9a203cfd92c +size 518362 diff --git a/vlm/train/BkgnhTEtDS/7.png b/vlm/train/BkgnhTEtDS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dd009dd3bacd28ebd76bc03c89e0abe2b09bb36b --- /dev/null +++ b/vlm/train/BkgnhTEtDS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c6a1a0c8313c2aa312caae06587634f10c3c529854231b3aaa9264d0d897978 +size 498258 diff --git a/vlm/train/BkgnhTEtDS/8.png b/vlm/train/BkgnhTEtDS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..36f71715aaadaa076cb81202bb843c063020f2bf --- /dev/null +++ b/vlm/train/BkgnhTEtDS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf4fc75d8a41ff2ea05e6d6427262af5df30e9fdecb0f81d6f3de87c8fd9d74 +size 663195 diff --git a/vlm/train/BkgnhTEtDS/9.png b/vlm/train/BkgnhTEtDS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..38a4f5e411b2fb25b55627638650ece22c181f88 --- /dev/null +++ b/vlm/train/BkgnhTEtDS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598d7f04653c8f85a41152154fd17056ca70985cf958d8893d2b670754eb5a36 +size 430464 diff --git a/vlm/train/BkgzniCqY7/0.png b/vlm/train/BkgzniCqY7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ee2c4e082869ef594f44264082e629dfe2070a --- /dev/null +++ b/vlm/train/BkgzniCqY7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a49138f3a4536a1fbba9f153a11bbb06a70e5924c7a4a7c76d17ae8e3dffad36 +size 626163 diff --git a/vlm/train/BkgzniCqY7/1.png b/vlm/train/BkgzniCqY7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1fc8692b354ce944d5e7f9b3c24f7385e16d5cf6 --- /dev/null +++ b/vlm/train/BkgzniCqY7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcdc2220d5304f7e20586ea05424fc8162efcb6b6a6cc4e2e2e155e8ac6dad32 +size 625925 diff --git a/vlm/train/BkgzniCqY7/11.png b/vlm/train/BkgzniCqY7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..399dc716403df2de5ae07b0ede48df59b6483b2a --- /dev/null +++ b/vlm/train/BkgzniCqY7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac94c741f209b4ccdfde3c13186597d38779c49c6a1a7a35c022ee2d4934cc6 +size 563449 diff --git a/vlm/train/BkgzniCqY7/12.png b/vlm/train/BkgzniCqY7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1e4419cb3b7eefe3de246e3269bc7d6ab593ddc8 --- /dev/null +++ b/vlm/train/BkgzniCqY7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102179d038818953f4bbaffd896c341da7da3038644e167f632bc5ef83efafec +size 515586 diff --git a/vlm/train/BkgzniCqY7/13.png b/vlm/train/BkgzniCqY7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8229eaca268191b602f18630f2bde86b767637ec --- /dev/null +++ b/vlm/train/BkgzniCqY7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2861952d87c116ee5cc0f7e1153a9ee667ddf8b17b2b6c59e069004ddf0ed0 +size 326616 diff --git a/vlm/train/BkgzniCqY7/14.png b/vlm/train/BkgzniCqY7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a6588b1be63e9b26911c4b24081bafd6f4f1e8c9 --- /dev/null +++ b/vlm/train/BkgzniCqY7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8707925f50ea93f519920696986731d59a8dc4dc0dd99ca6438d013e85f8a5ae +size 296993 diff --git a/vlm/train/BkgzniCqY7/15.png b/vlm/train/BkgzniCqY7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..fdf27d0903d7ca3d3c56cf6c7090fa64477e0917 --- /dev/null +++ b/vlm/train/BkgzniCqY7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32390c74aae84a7f2d6dcf7707fec9110689d2aca526c43bcac026821e6bea0 +size 312802 diff --git a/vlm/train/BkgzniCqY7/16.png b/vlm/train/BkgzniCqY7/16.png new file mode 100644 index 0000000000000000000000000000000000000000..214fab18cbec8bf654acd6e22ee812828f6fa3b3 --- /dev/null +++ b/vlm/train/BkgzniCqY7/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:665eb170edf4d748979181e5826b8f84744fe3ab388951f35bc6a901beab253a +size 400334 diff --git a/vlm/train/BkgzniCqY7/18.png b/vlm/train/BkgzniCqY7/18.png new file mode 100644 index 0000000000000000000000000000000000000000..b172436b97f8cc44d41acea03030621b74bc25c9 --- /dev/null +++ b/vlm/train/BkgzniCqY7/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f5ce5328e77103fde354b981ced152cafecfd4c65fa05efc98fb3d43ed2c90 +size 355019 diff --git a/vlm/train/BkgzniCqY7/19.png b/vlm/train/BkgzniCqY7/19.png new file mode 100644 index 0000000000000000000000000000000000000000..c00ef66352fd4872125d887b54ef05a6227bec42 --- /dev/null +++ b/vlm/train/BkgzniCqY7/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a7561bac87c138d2e9ebaf09ceb77339c9dc53d3d17ff99bd7f99adad9d4a1 +size 527962 diff --git a/vlm/train/BkgzniCqY7/2.png b/vlm/train/BkgzniCqY7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bee6152adce78ba577ca3dda0f584385b3e13833 --- /dev/null +++ b/vlm/train/BkgzniCqY7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd3c27ccaaa3f3ac10bb9069939663dd1d29a0f855b89b1c257e51d760fb3e8 +size 586114 diff --git a/vlm/train/BkgzniCqY7/20.png b/vlm/train/BkgzniCqY7/20.png new file mode 100644 index 0000000000000000000000000000000000000000..7453c3e0931299666f8ca21ca67958d784e941c2 --- /dev/null +++ b/vlm/train/BkgzniCqY7/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0d53251a924e9c0b9797c0838b3e3b481aa0850e83cbad5556193175e3e533 +size 774020 diff --git a/vlm/train/BkgzniCqY7/4.png b/vlm/train/BkgzniCqY7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0f88cac3af028f4188b8ab10ef0f8e18eeb98e0c --- /dev/null +++ b/vlm/train/BkgzniCqY7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617f7191aab45f744dfea1b8dd85b4dde86edff70887e69f1daf4abb4eace2b6 +size 491977 diff --git a/vlm/train/BkgzniCqY7/5.png b/vlm/train/BkgzniCqY7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..99e3b142acabb8779dfbdffee428ec62e55a37a2 --- /dev/null +++ b/vlm/train/BkgzniCqY7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f16ae010ecf98c542a1e7c81a96a13d8d5256550ff8655c8ab19dd3b72eeee +size 499569 diff --git a/vlm/train/BkgzniCqY7/7.png b/vlm/train/BkgzniCqY7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..20c33d0e4f97bf54163609638e1f04c943786d2a --- /dev/null +++ b/vlm/train/BkgzniCqY7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2186b2790b8fc3ecdd37e584d033b0de604fd3bd42d579ee15bad3d234078271 +size 659880 diff --git a/vlm/train/BkgzniCqY7/8.png b/vlm/train/BkgzniCqY7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c51aec996682de291dab1c0073b255431739b075 --- /dev/null +++ b/vlm/train/BkgzniCqY7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd41a03d86072c1cd1e81fe37525ada49c65de5f3e6b3e8e0bf22da17b2b3d1 +size 588201 diff --git a/vlm/train/BkgzniCqY7/9.png b/vlm/train/BkgzniCqY7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a61cc3a844e439d0de846312fb2ab73836efe200 --- /dev/null +++ b/vlm/train/BkgzniCqY7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483f4bb1daa755b2841a671dcbe6fad86f44c8f7599a99bac107aeced288ea1b +size 774829 diff --git a/vlm/train/ByG8A7cee/0.png b/vlm/train/ByG8A7cee/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9281382171214648d4c3c2b1403fbf667a95bdbe --- /dev/null +++ b/vlm/train/ByG8A7cee/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed29fcb969a9762002395c50ff6a949e3bafe39d2a10a314e85921c3ddd3a19 +size 506260 diff --git a/vlm/train/ByG8A7cee/1.png b/vlm/train/ByG8A7cee/1.png new file mode 100644 index 0000000000000000000000000000000000000000..129590b02133f3d0ae054ec940e6bc42721a8fd5 --- /dev/null +++ b/vlm/train/ByG8A7cee/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2c8e80c1d1eb3414d59aa39998162903b18b825deea631a37a4af72af2cbfe +size 418083 diff --git a/vlm/train/ByG8A7cee/10.png b/vlm/train/ByG8A7cee/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2c9953d0db9094fd29f5515e307dfef69d11f7a5 --- /dev/null +++ b/vlm/train/ByG8A7cee/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003460c1ccab240d011521299f31ad10b1b64a02c44e0a50d05ea0178d7f25d4 +size 401040 diff --git a/vlm/train/ByG8A7cee/11.png b/vlm/train/ByG8A7cee/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c953b30313f82330235467facd0e5771866692ca --- /dev/null +++ b/vlm/train/ByG8A7cee/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f79dc1526ca02e080b686d1143ac9b61b899290425bc4d7c22aab23196330f5 +size 404668 diff --git a/vlm/train/ByG8A7cee/12.png b/vlm/train/ByG8A7cee/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b19b9a52b12832b48a6ab42e9d12bdca69921fb7 --- /dev/null +++ b/vlm/train/ByG8A7cee/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b34368a04313f569a05a346e6dbd1ea75dd354ff64dd02044e99444a05273df +size 408133 diff --git a/vlm/train/ByG8A7cee/13.png b/vlm/train/ByG8A7cee/13.png new file mode 100644 index 0000000000000000000000000000000000000000..baaf76a3066efce4e6675cf651a10fc180384f69 --- /dev/null +++ b/vlm/train/ByG8A7cee/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c526531eb0d52960bea809343a7e12dd1fefdc149d54fefc2862303547298f22 +size 118760 diff --git a/vlm/train/ByG8A7cee/14.png b/vlm/train/ByG8A7cee/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d3cf67acfa9edf7638aee613e1055b48b9e281ca --- /dev/null +++ b/vlm/train/ByG8A7cee/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c15cbc57b6c8026e4dd6a546a213abd3d4f332544f14c81add28812bf251e9 +size 141351 diff --git a/vlm/train/ByG8A7cee/2.png b/vlm/train/ByG8A7cee/2.png new file mode 100644 index 0000000000000000000000000000000000000000..821a3db2363689cbb09e54f320372eb5406708e2 --- /dev/null +++ b/vlm/train/ByG8A7cee/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfeb2bcb2500cd5ea2135a310b9dc06c2ee44166ac4193299620b8553038d995 +size 422977 diff --git a/vlm/train/ByG8A7cee/3.png b/vlm/train/ByG8A7cee/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d50de67ad8f20088425de8229c6e2c89d4db2ca8 --- /dev/null +++ b/vlm/train/ByG8A7cee/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dda57ed2c5dda97302ca5db7a0afc5c24e4b5967eca2b4c7e155f93ef995dc8 +size 427416 diff --git a/vlm/train/ByG8A7cee/4.png b/vlm/train/ByG8A7cee/4.png new file mode 100644 index 0000000000000000000000000000000000000000..db70e35fb877181a6ee72c111f077db86765ae46 --- /dev/null +++ b/vlm/train/ByG8A7cee/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6ab6848825e32ed946c9e5bc9e1a760a63997985659a94e2cb5c7c6ccf218e +size 493743 diff --git a/vlm/train/ByG8A7cee/5.png b/vlm/train/ByG8A7cee/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ba2eb2e4a77cf70ed9452777adb0b13a2b82a749 --- /dev/null +++ b/vlm/train/ByG8A7cee/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2865389f4f9178af881dc61abe1baa8137fcafb04c3f5375e994afbfbcd52b9 +size 353018 diff --git a/vlm/train/ByG8A7cee/6.png b/vlm/train/ByG8A7cee/6.png new file mode 100644 index 0000000000000000000000000000000000000000..663babfa60d017df5103cc3af60a4178f6a860e7 --- /dev/null +++ b/vlm/train/ByG8A7cee/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f40bd64ab95f71d44b7d0805699bb247a5516a39326cacd19f9157b971f9cbe +size 427534 diff --git a/vlm/train/ByG8A7cee/7.png b/vlm/train/ByG8A7cee/7.png new file mode 100644 index 0000000000000000000000000000000000000000..da8c71155d2e1aa77cbad27f8874b82ad09f9ccf --- /dev/null +++ b/vlm/train/ByG8A7cee/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97fa4fc8ee37faaa5964885f2fa5c5a136e49a75814a3777952c92d055f3138a +size 476807 diff --git a/vlm/train/ByG8A7cee/8.png b/vlm/train/ByG8A7cee/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7a323b702bf5f08b3a40bd4c7a5f99d39a5c5e80 --- /dev/null +++ b/vlm/train/ByG8A7cee/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324a57ac1d5574d4372a0e9ce7d613f5e28a3ea6ee7c9adf521e16c2f2f553de +size 550664 diff --git a/vlm/train/ByG8A7cee/9.png b/vlm/train/ByG8A7cee/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9fc09cc058087b9a8e3a5d312526e84fffcdbdcd --- /dev/null +++ b/vlm/train/ByG8A7cee/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69c734229be70803487b31d3a286c9bf17ca35a355299e5105baeeaaadb35d49 +size 495664 diff --git a/vlm/train/CoJibBRjPXQ/0.png b/vlm/train/CoJibBRjPXQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9ffc33e856421a4cadc55ff76874ae9906ab03ed --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f74b003c7d4c2f62140977a1964df5be29f8ad59739b8c3cabcd0891ada07cbf +size 440593 diff --git a/vlm/train/CoJibBRjPXQ/1.png b/vlm/train/CoJibBRjPXQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7858b091a0094f4538a2523a1b4067c0cba928be --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35eedfc200151495a91537d24994359fb7d0ee1ba792c55c8c94dd245ed8ceed +size 533326 diff --git a/vlm/train/CoJibBRjPXQ/10.png b/vlm/train/CoJibBRjPXQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b32c21fa7344814465faeec36899a2296dfb81db --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd5ca237dcc322339876ebb9bd79b2419decf79ef6def4326bcb3fd19d08bd0 +size 575735 diff --git a/vlm/train/CoJibBRjPXQ/11.png b/vlm/train/CoJibBRjPXQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b2e4b727ef34dcbd5cf8d0ad57a989d9877a9f9e --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7397468f75fbdc99503da9a473f12addda96f84b30dc427f514d40a72fcf4e0 +size 559960 diff --git a/vlm/train/CoJibBRjPXQ/12.png b/vlm/train/CoJibBRjPXQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..eae017f5afec012bdca37687063ccc9de679db23 --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e41e48d7b1ac6ebbbbb017d6f1bfa93203955f70f84084c68700294eeada16 +size 534195 diff --git a/vlm/train/CoJibBRjPXQ/13.png b/vlm/train/CoJibBRjPXQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6a0ff89fdb2a0af0e868272c8bbbe9b925d3a53d --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e41e2c3b892d915462272f6685dc14aed69c1b3f0220d7569af53ab8ebb18b7c +size 397826 diff --git a/vlm/train/CoJibBRjPXQ/2.png b/vlm/train/CoJibBRjPXQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e49355bf2102828cf24f329df993fcaa45a72f73 --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d994aa391f1c450aa13a06e1236bb1c61657c6631a1f37b454139fa7e1953a1 +size 625453 diff --git a/vlm/train/CoJibBRjPXQ/3.png b/vlm/train/CoJibBRjPXQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..958703867979810b0f5466b74f8d6d97aa7cdfbc --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af5675490d29952e5c0a77a1547c70c9d926f97be58e27587793d2982a709bd +size 533730 diff --git a/vlm/train/CoJibBRjPXQ/4.png b/vlm/train/CoJibBRjPXQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8c62ea6fdf5346df1101b2f66c1e6c41f32494f9 --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8a4f4d1ab9363bb016009e90b50dad8ab72089bb89b27aeafd077795ed15f0 +size 586949 diff --git a/vlm/train/CoJibBRjPXQ/5.png b/vlm/train/CoJibBRjPXQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a39751e5f0255198ac94f670412d51c00aa56083 --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852bea72fcad38a9cc1b923d19d029af790a33e5136353f6ed42567ee6d5ac23 +size 581593 diff --git a/vlm/train/CoJibBRjPXQ/6.png b/vlm/train/CoJibBRjPXQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..daed7d927652b224f89d316ea48396f9d7abcea2 --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f0a96ee935f412e546e3930e66b659f741256a00287e46f0f005cd582c1dff +size 625029 diff --git a/vlm/train/CoJibBRjPXQ/7.png b/vlm/train/CoJibBRjPXQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..68462612a644e71b6724fe95c3703d7d824746e2 --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f9384eb62659be8c683a6c7d78721d1d54e5a0ac02250b296943565f14e8b4 +size 561563 diff --git a/vlm/train/CoJibBRjPXQ/8.png b/vlm/train/CoJibBRjPXQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5f677e82c2f585509546b7c2f58f4c78f2e2b452 --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232e825173eace65d349c9b25cfade201af3f1903d53d8bd5fa5e8279f02e2b2 +size 570239 diff --git a/vlm/train/CoJibBRjPXQ/9.png b/vlm/train/CoJibBRjPXQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4ed7ff67e73e949570fa3e213c244cd97ef2153c --- /dev/null +++ b/vlm/train/CoJibBRjPXQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197ddc50fe1ca058c5207b16b807de5e517e45cccfbb47ac12c0bc1362455503 +size 549077 diff --git a/vlm/train/DktZb97_Fx/0.png b/vlm/train/DktZb97_Fx/0.png new file mode 100644 index 0000000000000000000000000000000000000000..662f3f7dc61458afe21b0dc5944cea956d69e778 --- /dev/null +++ b/vlm/train/DktZb97_Fx/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40e32775112989a5f2d825497b11f81bdddb230f66ed5d3f933c43aa9dabf9d +size 434409 diff --git a/vlm/train/DktZb97_Fx/1.png b/vlm/train/DktZb97_Fx/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0868f8319c646946ae76d4a3c215db7346b832c6 --- /dev/null +++ b/vlm/train/DktZb97_Fx/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5fc3475ef4933e91957832ae40711c8bd741a20e783d0dbb7ef88ae6580b97 +size 576555 diff --git a/vlm/train/DktZb97_Fx/10.png b/vlm/train/DktZb97_Fx/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bdd52747df94974f98477e0b950f3067b7c097f1 --- /dev/null +++ b/vlm/train/DktZb97_Fx/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21192d7c9ef34806d88b63528053245a572414be400cdfad1b94493b015b5a2 +size 245702 diff --git a/vlm/train/DktZb97_Fx/11.png b/vlm/train/DktZb97_Fx/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a94c8211aa44675a91eb031204cf27fa48880123 --- /dev/null +++ b/vlm/train/DktZb97_Fx/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49243257869f100cf56675e1d5b3ac7274778436f2abb4f14724827110e98eae +size 429218 diff --git a/vlm/train/DktZb97_Fx/12.png b/vlm/train/DktZb97_Fx/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e5c8a23498f99239b0b5b761b00c4e68ed7875ef --- /dev/null +++ b/vlm/train/DktZb97_Fx/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0608defbbe381e007e7464841f6c0a7187e584d54e0e3453b34419876c83858 +size 407944 diff --git a/vlm/train/DktZb97_Fx/13.png b/vlm/train/DktZb97_Fx/13.png new file mode 100644 index 0000000000000000000000000000000000000000..1b7d5fae0a8cc59584b15b7429b2a4f202adfbbe --- /dev/null +++ b/vlm/train/DktZb97_Fx/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf6f07e390a8c6c6c2e5b2a629440a9fa618085cfd37cad320c74e22a641a30 +size 377580 diff --git a/vlm/train/DktZb97_Fx/14.png b/vlm/train/DktZb97_Fx/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f4d8eb955ae25065215b8a22a0eb9be766ab57ca --- /dev/null +++ b/vlm/train/DktZb97_Fx/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68cc37fe25e8284f3e4da9845e08fe3166c5457c3e31fd9c93f4047365a8e7f8 +size 421895 diff --git a/vlm/train/DktZb97_Fx/15.png b/vlm/train/DktZb97_Fx/15.png new file mode 100644 index 0000000000000000000000000000000000000000..59f114d2b39ef5cdf3943e370d5f17ce3a44594c --- /dev/null +++ b/vlm/train/DktZb97_Fx/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7284b4e482f6f4d5e760670599c8df89a5bcc3f8c30daabbc22c9a22c79b7d43 +size 466620 diff --git a/vlm/train/DktZb97_Fx/16.png b/vlm/train/DktZb97_Fx/16.png new file mode 100644 index 0000000000000000000000000000000000000000..66654a9fe2546250100859e8f12f0ace1251f2a9 --- /dev/null +++ b/vlm/train/DktZb97_Fx/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:935bcfd80abb1f90aa1b83c97e6fcafbdb1220198858b61e08eee9d7cb9ed424 +size 447993 diff --git a/vlm/train/DktZb97_Fx/17.png b/vlm/train/DktZb97_Fx/17.png new file mode 100644 index 0000000000000000000000000000000000000000..b64cfcd5ee7010032bd5db3ce7585c61e519faa4 --- /dev/null +++ b/vlm/train/DktZb97_Fx/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebecd1455f01f3f6bf8ed7b998cc05e62aa39d1f3c566e238c62fa3636061d2c +size 546332 diff --git a/vlm/train/DktZb97_Fx/18.png b/vlm/train/DktZb97_Fx/18.png new file mode 100644 index 0000000000000000000000000000000000000000..e032809d40ca3b4b32bc3c3f98ee6579d847e5c0 --- /dev/null +++ b/vlm/train/DktZb97_Fx/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257da889ad622859316d5eacab05f648bbb0cd07a3cc7b6704e663100a5c50b2 +size 367920 diff --git a/vlm/train/DktZb97_Fx/2.png b/vlm/train/DktZb97_Fx/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9d2f4be77b946c300a8ee00b923039d2798deb4 --- /dev/null +++ b/vlm/train/DktZb97_Fx/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e82c2625a2307fe216db746f99cda8ed3b25b114edd2755cd43e8463884a72a7 +size 515044 diff --git a/vlm/train/DktZb97_Fx/3.png b/vlm/train/DktZb97_Fx/3.png new file mode 100644 index 0000000000000000000000000000000000000000..bb480eba6e45a2ef628446fcdb5e8534b90a15f0 --- /dev/null +++ b/vlm/train/DktZb97_Fx/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834dc85a68b2df2e4692184ba31b9e52abd6fcc974831eeab5ac966bd67c11bb +size 518256 diff --git a/vlm/train/DktZb97_Fx/4.png b/vlm/train/DktZb97_Fx/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6edc357585693966950c5fbad89e15a7eb160a96 --- /dev/null +++ b/vlm/train/DktZb97_Fx/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7dec6598e5c1fe944dda6919f8a9e74cb2a7036c54401b6387dc98f06f81a0 +size 522739 diff --git a/vlm/train/DktZb97_Fx/5.png b/vlm/train/DktZb97_Fx/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8a05d88f47029e5c20c2fea5609f36b01a85f5c0 --- /dev/null +++ b/vlm/train/DktZb97_Fx/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9ae63fe3ece779d52b8c9b91e65dc046cfc3a041a0d26fe16ae847c3145cfae +size 570836 diff --git a/vlm/train/DktZb97_Fx/6.png b/vlm/train/DktZb97_Fx/6.png new file mode 100644 index 0000000000000000000000000000000000000000..da4f5dc650f3924071d179a44e2e81bb35037f3c --- /dev/null +++ b/vlm/train/DktZb97_Fx/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:939bfdfc001e8b988aaf8653bf004702a79836fc588958145eb0dedac89d09a0 +size 547515 diff --git a/vlm/train/DktZb97_Fx/7.png b/vlm/train/DktZb97_Fx/7.png new file mode 100644 index 0000000000000000000000000000000000000000..eaf71cded29ec063b5369fba645207125d98e0fc --- /dev/null +++ b/vlm/train/DktZb97_Fx/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b650acf519e365a69fba6cced4ace15b594086aa8d83b5b610b1ab83a6d53b +size 572159 diff --git a/vlm/train/DktZb97_Fx/8.png b/vlm/train/DktZb97_Fx/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5b92f6568d7a540920fba9ab37c29e9e6d66273e --- /dev/null +++ b/vlm/train/DktZb97_Fx/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42813b0f63d678cad7662f49194e4f24d6722429cb21df229c84b7071d748672 +size 547381 diff --git a/vlm/train/DktZb97_Fx/9.png b/vlm/train/DktZb97_Fx/9.png new file mode 100644 index 0000000000000000000000000000000000000000..da68a9ad818ba27333536a3de58022d33f74a8d2 --- /dev/null +++ b/vlm/train/DktZb97_Fx/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4399973f4164e0c6e2ce691ba296b8a3e93325cb872dfa00ece97c5e1251b642 +size 566524 diff --git a/vlm/train/FsLTUzZlsgT/0.png b/vlm/train/FsLTUzZlsgT/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2f7c1b0eac3fb47cb5cdf989777db731a7284116 --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5abf1030ebb3528a8aae8f37522e875ff48a9d613dc12fad58b2e1cfae3ebc19 +size 432159 diff --git a/vlm/train/FsLTUzZlsgT/1.png b/vlm/train/FsLTUzZlsgT/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8b4f20d152a9199b42a2e0ce40faca45734713e5 --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5bed96a810894e4117bd6ec7632bb50bc7bdb0eb7d839c0699a7122af42eec3 +size 516194 diff --git a/vlm/train/FsLTUzZlsgT/10.png b/vlm/train/FsLTUzZlsgT/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f0503c4fb52c60babedcf0117f32db256a0a13cc --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e2ade81bc25bafbeb7066246e80e7bc396a6717d2262bee8aaf4c87f433fac +size 552197 diff --git a/vlm/train/FsLTUzZlsgT/11.png b/vlm/train/FsLTUzZlsgT/11.png new file mode 100644 index 0000000000000000000000000000000000000000..746c5fd2c74ffc6822e975be75367cf12bb9aa97 --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede34068da75ce3bb59855ef6a45f395a2eabcdd53aa204c28a625a336ef62bd +size 531456 diff --git a/vlm/train/FsLTUzZlsgT/12.png b/vlm/train/FsLTUzZlsgT/12.png new file mode 100644 index 0000000000000000000000000000000000000000..515c1669d4e1824987c9b35583684d0cacd217f9 --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:566c0f01e5b83fe53708bf0dcb71007a734bed0ffdddc8b532219cde77ee8584 +size 482042 diff --git a/vlm/train/FsLTUzZlsgT/13.png b/vlm/train/FsLTUzZlsgT/13.png new file mode 100644 index 0000000000000000000000000000000000000000..21e9fbab74a5588eb666ca99284293dbd93d0184 --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07246dfd2dcefa1f95ba04c4444d726215e18979a0fc7691c5fb3504ef5c54d6 +size 591965 diff --git a/vlm/train/FsLTUzZlsgT/14.png b/vlm/train/FsLTUzZlsgT/14.png new file mode 100644 index 0000000000000000000000000000000000000000..df13ae9b8085f3afa0f1baa67788aa7fb704d31c --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71d1fc6b9609b63be8cc86f015401726048dc5953872f52c85c995414387753 +size 390384 diff --git a/vlm/train/FsLTUzZlsgT/2.png b/vlm/train/FsLTUzZlsgT/2.png new file mode 100644 index 0000000000000000000000000000000000000000..83b20b6bee50ec494f366ebd750c3f80c5f2a73c --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7a196ca77f3db70a612b4d51db870967401a262856f944292f96125a2c270a +size 573194 diff --git a/vlm/train/FsLTUzZlsgT/3.png b/vlm/train/FsLTUzZlsgT/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d28128637a6c1936395b936eca1fb62b524a3f18 --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26be8bfe60e6ff7c94c22583fe3e892b2b5179f97e21d97b81a0f3149689628e +size 458203 diff --git a/vlm/train/FsLTUzZlsgT/4.png b/vlm/train/FsLTUzZlsgT/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fb7299e04e381cc4429f8dbfe7eaadea5de58f6d --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650d0bfa4000cb7a259f421aa0d93c81e50f946b146ca49ccbdbab34ce8725b5 +size 573568 diff --git a/vlm/train/FsLTUzZlsgT/5.png b/vlm/train/FsLTUzZlsgT/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3b9767732bfc9368d3f76461e75fc1a46630da --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022bb509b19c2bacc084481f19c48c3a889765177b5610fbf9fed8fc5ca02193 +size 581164 diff --git a/vlm/train/FsLTUzZlsgT/6.png b/vlm/train/FsLTUzZlsgT/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e9863146a0674a6c8926a2cb04ae085491aa013a --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e7ed46ab5e30cde6173a24203f13eb1b2e1ce0752d1300e295ccf3b08dd242 +size 515778 diff --git a/vlm/train/FsLTUzZlsgT/7.png b/vlm/train/FsLTUzZlsgT/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a94042f460d8cf1ffa556ae603258a506af5bbbb --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7008d61abd4b18b4dbd6e2002a95631a8dd754db97e40770d29815b624c11664 +size 533408 diff --git a/vlm/train/FsLTUzZlsgT/8.png b/vlm/train/FsLTUzZlsgT/8.png new file mode 100644 index 0000000000000000000000000000000000000000..96c0c1846f946fbc65e7805646029d329d573cf3 --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb2ddb37bdffa41c88e04596db852c0401988a141c51709bb00055a5c069455 +size 474837 diff --git a/vlm/train/FsLTUzZlsgT/9.png b/vlm/train/FsLTUzZlsgT/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5404eb6508e28210f61079225fbf2be44e01ccc5 --- /dev/null +++ b/vlm/train/FsLTUzZlsgT/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3f5457c9de711daf04ba705f82a2feecd9988c0761ec7e39c94471ee16178d +size 515166 diff --git a/vlm/train/H1e_cC4twS/0.png b/vlm/train/H1e_cC4twS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a836bc500071124482aef8d124fbe8a8189869ca --- /dev/null +++ b/vlm/train/H1e_cC4twS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e3344a1d9a5882ebabc530f8b0ce4dcba32b9f53b0bdc5e582b908b89b5a19 +size 508152 diff --git a/vlm/train/H1e_cC4twS/1.png b/vlm/train/H1e_cC4twS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e5c3f1b17c038366b9c96c78ed5fd02537c40d31 --- /dev/null +++ b/vlm/train/H1e_cC4twS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead087ff42ec2c4f51d5055235f68071fcf0e90f3e69399e0a660e5c7e599c49 +size 595427 diff --git a/vlm/train/H1e_cC4twS/10.png b/vlm/train/H1e_cC4twS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..727eb01a64b6482f3f5b578849766aa7a2ee61db --- /dev/null +++ b/vlm/train/H1e_cC4twS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a0630f0284a866a4f9a3deb6bba7a13937bf4769e71067e966d2fafc45bd55 +size 580921 diff --git a/vlm/train/H1e_cC4twS/11.png b/vlm/train/H1e_cC4twS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1b46a91231d939dd596447bd84058fe782835ba7 --- /dev/null +++ b/vlm/train/H1e_cC4twS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0581ab6431ee4e1d6d346643669bed1fe10574fb1f8178df43256d439a407b +size 590831 diff --git a/vlm/train/H1e_cC4twS/12.png b/vlm/train/H1e_cC4twS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d628687b912b58d51ad1c059a18ee71793429cd5 --- /dev/null +++ b/vlm/train/H1e_cC4twS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c316ca07a04e6050d94c4d65846366bb01912c0832ba3916ce210adde5969c79 +size 563554 diff --git a/vlm/train/H1e_cC4twS/13.png b/vlm/train/H1e_cC4twS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..938a27472823aee434db4617f0a721cc6c5a8aef --- /dev/null +++ b/vlm/train/H1e_cC4twS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d30e17c3260a3604b4fe6599ebe694f6a68646d79afff87e13e29852465c5504 +size 507589 diff --git a/vlm/train/H1e_cC4twS/14.png b/vlm/train/H1e_cC4twS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..dbd42cb1151d0b601554e9f9f64f527a52158296 --- /dev/null +++ b/vlm/train/H1e_cC4twS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87d23a2d293c53c20d5125faa5e9d8047f6b1a4152d6c28300c9da7e281e7b1 +size 503230 diff --git a/vlm/train/H1e_cC4twS/15.png b/vlm/train/H1e_cC4twS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e4babff16e18203b707ddb1c13329256c038e63c --- /dev/null +++ b/vlm/train/H1e_cC4twS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad05fb7af1d97176d08db8241f961981b40aff1c6c2135c4596fd243235eeea4 +size 469055 diff --git a/vlm/train/H1e_cC4twS/16.png b/vlm/train/H1e_cC4twS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a55f63843921589edb6e9f49e421ebd709568f74 --- /dev/null +++ b/vlm/train/H1e_cC4twS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9833ceb2d10e6d3ab9c1576f9f8ab376c4a1e8d02dc8f002f4097e041c14b5 +size 386845 diff --git a/vlm/train/H1e_cC4twS/17.png b/vlm/train/H1e_cC4twS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..494507cdd0cdee46316e416c1314134a86d3cc4c --- /dev/null +++ b/vlm/train/H1e_cC4twS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e94d5970c4d1341409fb9c2e623e18ebac2c7f9bc0f7c7381c08ee7abfb1e6 +size 463828 diff --git a/vlm/train/H1e_cC4twS/18.png b/vlm/train/H1e_cC4twS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..cd1fc2a4d82185d51df936e3709798ee67def204 --- /dev/null +++ b/vlm/train/H1e_cC4twS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b8f8189d5881647aa0a072ca1fd96a040932506889d994ad68338254673bcd +size 608244 diff --git a/vlm/train/H1e_cC4twS/19.png b/vlm/train/H1e_cC4twS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..6fd8e83e9a27d20b645f8b1a59a241434f2aa714 --- /dev/null +++ b/vlm/train/H1e_cC4twS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524e568534c3b17c7748cd28082dcd27b1ce2f9e397cd67e9ddd972e79f649a7 +size 551716 diff --git a/vlm/train/H1e_cC4twS/2.png b/vlm/train/H1e_cC4twS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a922f0b8961ec1088c7ae5a3dcc787a9ed6bed26 --- /dev/null +++ b/vlm/train/H1e_cC4twS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3b2a5ab4a1f3709995c79ebe2aee32f0f86b0ccc14cdecdc935e77579e980b +size 628154 diff --git a/vlm/train/H1e_cC4twS/20.png b/vlm/train/H1e_cC4twS/20.png new file mode 100644 index 0000000000000000000000000000000000000000..2da186205388614e02384df8cc20a7840892acc8 --- /dev/null +++ b/vlm/train/H1e_cC4twS/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8739033b98c935a6109bd537cd35f81bbb4c3abb71acdcdd17e6dd8ddb67689b +size 529952 diff --git a/vlm/train/H1e_cC4twS/3.png b/vlm/train/H1e_cC4twS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fa09778980ca941c7da5c8063929a5d0e784a6e1 --- /dev/null +++ b/vlm/train/H1e_cC4twS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df5025e5c7faab1c297ab46e2b81122aee4f65383d25b05e2745e814924c3f8 +size 513516 diff --git a/vlm/train/H1e_cC4twS/4.png b/vlm/train/H1e_cC4twS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e18e56c888181d090d73e5a52398c029687070a4 --- /dev/null +++ b/vlm/train/H1e_cC4twS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49b1fc52a9df4418e7eb2369d969769c3b29866c6ec10941ed4ba3992c378c06 +size 496730 diff --git a/vlm/train/H1e_cC4twS/5.png b/vlm/train/H1e_cC4twS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d63be9f9c43b2d2bb51bcd41075d22922f7b30d4 --- /dev/null +++ b/vlm/train/H1e_cC4twS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc66f040c923f4a97236b6dec1407b02b6cfb37d6d81c014fbb7e87a86909f6 +size 475356 diff --git a/vlm/train/H1e_cC4twS/6.png b/vlm/train/H1e_cC4twS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5e7d128877eb18640dccd3ab144c60e42905f0d0 --- /dev/null +++ b/vlm/train/H1e_cC4twS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3e3f696be5cf918ab864cf514f4c0dc7db03f0781fbb9e0ab539668bab8cde +size 545409 diff --git a/vlm/train/H1e_cC4twS/7.png b/vlm/train/H1e_cC4twS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3ba59d6dffa53a1c06b5c748a57b9b92b62993e2 --- /dev/null +++ b/vlm/train/H1e_cC4twS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7d47288128c3ff303b97260e2ab64c853a917d07794f35afa08b500b7c7c31d +size 592724 diff --git a/vlm/train/H1e_cC4twS/8.png b/vlm/train/H1e_cC4twS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5875801e050d117ad5e8c46e138b886535c47aef --- /dev/null +++ b/vlm/train/H1e_cC4twS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f84f0e6c57aafd1e6e09672b640eea3287a165f307b8d0cf12be8ff6bea646a3 +size 563962 diff --git a/vlm/train/H1e_cC4twS/9.png b/vlm/train/H1e_cC4twS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0f57a6310df82b7b15402aaeab67fea29fc70f2a --- /dev/null +++ b/vlm/train/H1e_cC4twS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d97a7ac48d59357b430a5fdbe207b9b415f421df641e46231f5fe34ae8338d5c +size 567990 diff --git a/vlm/train/H1gpET4YDB/0.png b/vlm/train/H1gpET4YDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c3f84bba0883dbeeca7477d921d5f99e2600a06c --- /dev/null +++ b/vlm/train/H1gpET4YDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:171aba397a650748c0fb9be3a4c6c803cf85a54c67b402342be5e1dd4910d226 +size 520363 diff --git a/vlm/train/H1gpET4YDB/1.png b/vlm/train/H1gpET4YDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b3340ce16aaa9c8046e1be98ab60665612ea134d --- /dev/null +++ b/vlm/train/H1gpET4YDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a6106ea77c6a8c885abc5dbfbdacd8957089c15655b21e9927af192a88ac282 +size 576268 diff --git a/vlm/train/H1gpET4YDB/10.png b/vlm/train/H1gpET4YDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..70ac7659dc70c73978b30d4e499b01e710d5231c --- /dev/null +++ b/vlm/train/H1gpET4YDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be5ba2a4ff3476175d81a80e7fca2c2890e0e9038b65c707f245845b1f547b1 +size 416762 diff --git a/vlm/train/H1gpET4YDB/11.png b/vlm/train/H1gpET4YDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fa91f78c90bba00e6acac091ec7261b6f4812ddf --- /dev/null +++ b/vlm/train/H1gpET4YDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df45f507531bd6b66fd28b9a071dbfeb343dfeb4964923e1ec89bc40a33ead07 +size 338641 diff --git a/vlm/train/H1gpET4YDB/12.png b/vlm/train/H1gpET4YDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..38a16af355b5e265faaf2c94ae98c4262d1477a7 --- /dev/null +++ b/vlm/train/H1gpET4YDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a831e3a84d13f91ddffb002c0292fb8bee83ea248baec6cc2473d7d0cea470 +size 71911 diff --git a/vlm/train/H1gpET4YDB/2.png b/vlm/train/H1gpET4YDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4acd765ef60608fe77689e4cb5bb47e6a94233f1 --- /dev/null +++ b/vlm/train/H1gpET4YDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de4cf5a6e8e45c1454ff9eb87e898d3cfaaf05779d68d3ad9015df23d846e3d +size 481593 diff --git a/vlm/train/H1gpET4YDB/3.png b/vlm/train/H1gpET4YDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e7312f11d487a5bd57b4dfd497806fc29eb76def --- /dev/null +++ b/vlm/train/H1gpET4YDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dbcb2177ff808f99a59c18c6319ed3a460210ec7b540b3f706da33a38e64349 +size 458827 diff --git a/vlm/train/H1gpET4YDB/4.png b/vlm/train/H1gpET4YDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..aced53c88633ce6c1c12cb0df6458aa099640c3c --- /dev/null +++ b/vlm/train/H1gpET4YDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69780cc65d29ad151b8fc3a80c27be6cf50f3b55b43e683aea8c13531ab63935 +size 424214 diff --git a/vlm/train/H1gpET4YDB/5.png b/vlm/train/H1gpET4YDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f552608975fe7877cb562a6fcc614c65eafebc25 --- /dev/null +++ b/vlm/train/H1gpET4YDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7605a6c6c79b004446a53b3a16e6cfb6fd34a7cf72ffcbac7a031e575a8230e7 +size 530835 diff --git a/vlm/train/H1gpET4YDB/6.png b/vlm/train/H1gpET4YDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ac661fee98572887e5a094fd3f07ef20c57135f1 --- /dev/null +++ b/vlm/train/H1gpET4YDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b980efd80919b5502cef9b24a2d2ff04c4f86add5d06a8ef7045eabeac95ea64 +size 527673 diff --git a/vlm/train/H1gpET4YDB/7.png b/vlm/train/H1gpET4YDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..eb292691ff05efdeccf2112cffd29e2e7183867f --- /dev/null +++ b/vlm/train/H1gpET4YDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cca37be58928495de014a256b7392cf63fdc8376a8482da3e356c3026feff9c9 +size 488557 diff --git a/vlm/train/H1gpET4YDB/8.png b/vlm/train/H1gpET4YDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1f77560bb3ff3d815628a56f5c9426d75688f854 --- /dev/null +++ b/vlm/train/H1gpET4YDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be1b75d05331efe99a617424f1efdbc07a1abbbf42766c57f41810c65e1f4192 +size 508319 diff --git a/vlm/train/H1gpET4YDB/9.png b/vlm/train/H1gpET4YDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..33973aaea553409ff628d1ea69babd8a1a7e337f --- /dev/null +++ b/vlm/train/H1gpET4YDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e4f04e939dcbfdf61c8b4515e159916a5ba81965fa4cdd8a8d5fc24678b20d +size 552907 diff --git a/vlm/train/H1gsz30cKX/0.png b/vlm/train/H1gsz30cKX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ab281a2fc0551bafdd2975a79ddb471e14068d17 --- /dev/null +++ b/vlm/train/H1gsz30cKX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7dd4b4b71e86b389a8ebc0cd80f8e328f5735f8f11a9ae7e60d62d1c947036 +size 462718 diff --git a/vlm/train/H1gsz30cKX/1.png b/vlm/train/H1gsz30cKX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0a598a4514d55c326da42846272c0e5c599af959 --- /dev/null +++ b/vlm/train/H1gsz30cKX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b290b995d776f2e9bc147afb65a56fb586fb8c8e0ad53662261fb16913686f +size 488589 diff --git a/vlm/train/H1gsz30cKX/10.png b/vlm/train/H1gsz30cKX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dfdc309228d0a378ded4b73b340d3d41aef22364 --- /dev/null +++ b/vlm/train/H1gsz30cKX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5919f0b3b727ba932730f0dcaac732a6cef7059b0cdcb17c06ba84f994c347d4 +size 447867 diff --git a/vlm/train/H1gsz30cKX/11.png b/vlm/train/H1gsz30cKX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5683eb9f6045e7c286ca628cb3d0d4cacd9d4566 --- /dev/null +++ b/vlm/train/H1gsz30cKX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018b7efef821295353de1281aff45ebecbe702152f47517150223f7fbc3f017b +size 450947 diff --git a/vlm/train/H1gsz30cKX/12.png b/vlm/train/H1gsz30cKX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b18c5f73d92051a46aa7d15dd126623ce19da1 --- /dev/null +++ b/vlm/train/H1gsz30cKX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c17087ce94e42ff7c1dbfa82fff1fafe689caba0c883c4b05bab8884c7fb81 +size 443945 diff --git a/vlm/train/H1gsz30cKX/13.png b/vlm/train/H1gsz30cKX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7f506b1768ae7a23321f4b653dd178f322b790e0 --- /dev/null +++ b/vlm/train/H1gsz30cKX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b365b1f48a0531e9f643aa7e665d870e0819d206143c4082194adf45f34b73 +size 385871 diff --git a/vlm/train/H1gsz30cKX/14.png b/vlm/train/H1gsz30cKX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9635defd75ed77b84ee3665ca67c87a40dd2c8 --- /dev/null +++ b/vlm/train/H1gsz30cKX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3920112405757b96838d21c3592ea98f62d28e4943b27f4da76ab34f636f51b +size 241856 diff --git a/vlm/train/H1gsz30cKX/15.png b/vlm/train/H1gsz30cKX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..661bffb8d0f16e2d59a6afc99fafad0b19e5ef05 --- /dev/null +++ b/vlm/train/H1gsz30cKX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff687d6dc05257882f382326b75d7afa61ed1d4b60cc6ce7fd3310de278d637b +size 376720 diff --git a/vlm/train/H1gsz30cKX/2.png b/vlm/train/H1gsz30cKX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..89127cacaab8eec80f76310491ac62ed5f8ded11 --- /dev/null +++ b/vlm/train/H1gsz30cKX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e82819dd7877f4278f6db3b2e64172c0eb79cc9d40fbd716e00ea4fd59fe109 +size 548346 diff --git a/vlm/train/H1gsz30cKX/3.png b/vlm/train/H1gsz30cKX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..33234990bfa1896390e62c6c3d08240353f233e3 --- /dev/null +++ b/vlm/train/H1gsz30cKX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5a21af0235345bde6a6bf11c489b4f59bb3082ae320c751348660221f8fe2c +size 488507 diff --git a/vlm/train/H1gsz30cKX/4.png b/vlm/train/H1gsz30cKX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2e7c6a87c623edae45b6c64f4997cc7e1f2df9df --- /dev/null +++ b/vlm/train/H1gsz30cKX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc612864ee33670dde486f247916f715760761ed2042fc0dab0a025f69108505 +size 526244 diff --git a/vlm/train/H1gsz30cKX/5.png b/vlm/train/H1gsz30cKX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..63a70421866bd55b7878824693b6fe6747bb535f --- /dev/null +++ b/vlm/train/H1gsz30cKX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86663bd6ce2aa24f074a118942f4f8fc0f0482580e678180699944dfc776aa96 +size 472563 diff --git a/vlm/train/H1gsz30cKX/6.png b/vlm/train/H1gsz30cKX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..de0c9614ed528c118d33db68deb5de8176d5fb72 --- /dev/null +++ b/vlm/train/H1gsz30cKX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed3cea9e39d55afd65e6f65d514284bb01587e4e68d6758e2d0b7e7b1fce5f2 +size 497654 diff --git a/vlm/train/H1gsz30cKX/7.png b/vlm/train/H1gsz30cKX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e58e9055ec89f03369b1f726285c5a7b470581a8 --- /dev/null +++ b/vlm/train/H1gsz30cKX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0548f4451ebd6cabacd5f00564d55f3b9ee51b7cf830e06ba213ee082b86297 +size 539464 diff --git a/vlm/train/H1gsz30cKX/8.png b/vlm/train/H1gsz30cKX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..81bf391cda9d5a47396cb6fe750cb1e55abf78e7 --- /dev/null +++ b/vlm/train/H1gsz30cKX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1786b626c03164560b39adf6cec1aa451dba72af232cb99e4bddaebc5a04f6db +size 506253 diff --git a/vlm/train/H1gsz30cKX/9.png b/vlm/train/H1gsz30cKX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ccfb1cad157467bfd156a26176f6ec963528d3 --- /dev/null +++ b/vlm/train/H1gsz30cKX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20de4e353a10bb649a504d7f6e3190c1868f0ec1a277106b981717e607c3254f +size 505304 diff --git a/vlm/train/H1xk8jAqKQ/0.png b/vlm/train/H1xk8jAqKQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..07d13dca0a36d6251a25eb47dcb20b3742e48421 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:042405ab6f0b1eb7cb2a8aac145a9469a905c43079f5d76c6e46d805673df487 +size 450842 diff --git a/vlm/train/H1xk8jAqKQ/1.png b/vlm/train/H1xk8jAqKQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1e1b6bc35443f4b6373e3d7ab3ee23857ad9f05c --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b779279c8dfa1758bb5a8aa8e31569c260b84edd79c08decdcca96d3fdf53a +size 583945 diff --git a/vlm/train/H1xk8jAqKQ/10.png b/vlm/train/H1xk8jAqKQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e8e0ad75e67ccbabd248e689efd511d936a1dc24 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3bc0d47bf51f9725db133be55f05f74a6425d4971f3a585e4da6604d1b558e7 +size 500769 diff --git a/vlm/train/H1xk8jAqKQ/11.png b/vlm/train/H1xk8jAqKQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..aaf0517c4d0c753d20cb6d9d580529ff0c9e1575 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8091fc4f92a712fabb1b3fe66478bc99f09711d7c0b79884f58eb8e6a91baac +size 317809 diff --git a/vlm/train/H1xk8jAqKQ/12.png b/vlm/train/H1xk8jAqKQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..f1f1747e20053905d8642b836e496b5f5c3ddcb7 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f575446e51cfa977a94db3406dd96a24f0deed7beed1f0ec3c2214dd545b4599 +size 355439 diff --git a/vlm/train/H1xk8jAqKQ/13.png b/vlm/train/H1xk8jAqKQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e9004f950ebb8e9c0bc52d762640749d409549b6 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5aa369d6418e94843dcd77437f699acf09af0dd869fe8e6a0ba4c0bea77443 +size 405358 diff --git a/vlm/train/H1xk8jAqKQ/14.png b/vlm/train/H1xk8jAqKQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d78ce8bb84e6f68433af47c081b6ab9d9154cf2f --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f273f0e554fe47a8518f1ea9b310aa12739390c52b8feed9e55d00236e71e4c +size 309782 diff --git a/vlm/train/H1xk8jAqKQ/15.png b/vlm/train/H1xk8jAqKQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6f68d506b9f482022f7a99529f948a320c4aaa55 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72bad3e33d3fe84ed007396b4720f53df1332aeda8da615eebdd24a864b51df +size 470653 diff --git a/vlm/train/H1xk8jAqKQ/16.png b/vlm/train/H1xk8jAqKQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e35e74ca1d243579c3885e36b0a6b528fcf530ca --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93882ac9b1c7ceb05a5bc021c1b2394af7cbf6dc3031d653604b791672c442ff +size 525102 diff --git a/vlm/train/H1xk8jAqKQ/17.png b/vlm/train/H1xk8jAqKQ/17.png new file mode 100644 index 0000000000000000000000000000000000000000..d6a32400e3bde386ebb715fcfd51de59ba08c4b1 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ae9be4a03bbcd93ee1c9883ab9c13a9ec35e151e9497420f77d2351ea29af7 +size 75774 diff --git a/vlm/train/H1xk8jAqKQ/2.png b/vlm/train/H1xk8jAqKQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..af8971dcab779a40dea7b018a6a604d6f42f94dd --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910a3650ba313857f2ad67bb3608fd92fdc9086bec63ea0d8639e33487274f9a +size 504663 diff --git a/vlm/train/H1xk8jAqKQ/3.png b/vlm/train/H1xk8jAqKQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..89716c70344225f1e96dd96738acf1476c698e04 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173e91348586dfca7e52144ec3be02f8920f10bc4d17245c128536efeac1a559 +size 474057 diff --git a/vlm/train/H1xk8jAqKQ/4.png b/vlm/train/H1xk8jAqKQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..853e09ba86a078ff78afd284af857343f03819dd --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeee550c51677bf60d09089e23ad9532603a89f88782a8f080b3e97b23a753e1 +size 501232 diff --git a/vlm/train/H1xk8jAqKQ/5.png b/vlm/train/H1xk8jAqKQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..01f43d3ad0dd8dcec813b27919a2edd7176c455d --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9adc4fa946a3b78cb9a48666e903216be31955324f9698512d25c5c2ce844f80 +size 527117 diff --git a/vlm/train/H1xk8jAqKQ/6.png b/vlm/train/H1xk8jAqKQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4c0039c17d4e3b3ff2eafe8ce3a318d18f22f956 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80261c05faa693b101e009a59847a2d7c3f9cdf7ed74a842f38c1e37ae9e7f4f +size 574465 diff --git a/vlm/train/H1xk8jAqKQ/7.png b/vlm/train/H1xk8jAqKQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..114714b938fa905873c43f1c77bf605177bace47 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebe185d91d64c6fc76778dae6cc917a28b19eb4c8a8f7c06cb3f18d9152864e +size 553517 diff --git a/vlm/train/H1xk8jAqKQ/8.png b/vlm/train/H1xk8jAqKQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d6399812171a0ac16cf48baa774a74627f85d8 --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e8c12b9fc7deae3e6290767ccadaf079029b19ffe60ebee057e679a3920b87f +size 538436 diff --git a/vlm/train/H1xk8jAqKQ/9.png b/vlm/train/H1xk8jAqKQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..071ff8d952d010bf86cee950d2a96dbd05d9cc3b --- /dev/null +++ b/vlm/train/H1xk8jAqKQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87feaa3d6e98cc9b71698f6496aa25546ebf5cce47774abda44aefd3dcd52107 +size 559368 diff --git a/vlm/train/HJWHIKqgl/0.png b/vlm/train/HJWHIKqgl/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3da74b0bdbdf98c6f230dac10f08ded89e27eb2e --- /dev/null +++ b/vlm/train/HJWHIKqgl/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a6cff6ee21bc09e543229f0d7f4e68fe95cd8faa79011cda13af28b91ed87e +size 517613 diff --git a/vlm/train/HJWHIKqgl/1.png b/vlm/train/HJWHIKqgl/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4330f87255b8bf972b5a58e9ff55927eb5aed38c --- /dev/null +++ b/vlm/train/HJWHIKqgl/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34a5a7e2cc623cce685962bf39429eadc467206d3bcf891d883cd923fb68c33 +size 631002 diff --git a/vlm/train/HJWHIKqgl/10.png b/vlm/train/HJWHIKqgl/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d3a6eddad9e37d3edf0656d9fdf5723a0e586d71 --- /dev/null +++ b/vlm/train/HJWHIKqgl/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765735370057ecbefbe8c2a0f593f5d8ba7764cb61992cede49bc9c8aee98f9e +size 114817 diff --git a/vlm/train/HJWHIKqgl/2.png b/vlm/train/HJWHIKqgl/2.png new file mode 100644 index 0000000000000000000000000000000000000000..60987b5d2f1b2554328c0384cda34a2d26901ac6 --- /dev/null +++ b/vlm/train/HJWHIKqgl/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23c7aad844747d8bfd97d901d48a9ffe9b906b775d1c642c9cd9dda6e9105298 +size 491808 diff --git a/vlm/train/HJWHIKqgl/3.png b/vlm/train/HJWHIKqgl/3.png new file mode 100644 index 0000000000000000000000000000000000000000..46545d52fb79dd479fc548038984125d96e1a2d8 --- /dev/null +++ b/vlm/train/HJWHIKqgl/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc4ecafcc19c9b10a84c7d51a2071cc4893dd4ec14b3bc3c12908a18867e78a +size 517990 diff --git a/vlm/train/HJWHIKqgl/4.png b/vlm/train/HJWHIKqgl/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1f73f13012ff255a67595df9d26292f67aa9bf55 --- /dev/null +++ b/vlm/train/HJWHIKqgl/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58384cf0b5e8d9022f5614efeb2f1771891d7b4db91721aa90b923b5e5656ae +size 616820 diff --git a/vlm/train/HJWHIKqgl/5.png b/vlm/train/HJWHIKqgl/5.png new file mode 100644 index 0000000000000000000000000000000000000000..074b8a71fe265a53818278adbf8b45e83a4b7ac1 --- /dev/null +++ b/vlm/train/HJWHIKqgl/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75f24433a323f638640307ceffc334015ba3d1278443b812d60be524d07037f +size 498511 diff --git a/vlm/train/HJWHIKqgl/6.png b/vlm/train/HJWHIKqgl/6.png new file mode 100644 index 0000000000000000000000000000000000000000..51e78e9fec2b47431a7b07e849a8c708af501dd8 --- /dev/null +++ b/vlm/train/HJWHIKqgl/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c472171cb64272b72be28197d2547f5128cd479cf69bbd4229a8c8b62331328 +size 619856 diff --git a/vlm/train/HJWHIKqgl/7.png b/vlm/train/HJWHIKqgl/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c6d6bda9585f8c0d00ac28f71b6add3f910a6b37 --- /dev/null +++ b/vlm/train/HJWHIKqgl/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42027f593de00d8442864742d72550f3d4515521e0ffde74c1ede186cfe783c7 +size 528716 diff --git a/vlm/train/HJWHIKqgl/8.png b/vlm/train/HJWHIKqgl/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b84cdcb840cd9bdafa8518ede4d686f5f035870c --- /dev/null +++ b/vlm/train/HJWHIKqgl/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fdc0f64d92012bee30743d6e9ee3f00c7e2c9965879ecb2a723fb450d129d7c +size 693577 diff --git a/vlm/train/HJWHIKqgl/9.png b/vlm/train/HJWHIKqgl/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a6102ae781217493cc5b7205b71bab06b9341bb1 --- /dev/null +++ b/vlm/train/HJWHIKqgl/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d39328ad6e268d66d91c204c38b5bf0ede267cf0663f9edbf43ea2eb2c6c5d0b +size 562496 diff --git a/vlm/train/HJem3yHKwH/0.png b/vlm/train/HJem3yHKwH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f02751115c5fb77ad3d565dba4223012ed1b4148 --- /dev/null +++ b/vlm/train/HJem3yHKwH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4afd45a688c81032eb2af3df195a6f2c85a6e70d7bd3775cb3d892c9dc93fc +size 454995 diff --git a/vlm/train/HJem3yHKwH/1.png b/vlm/train/HJem3yHKwH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..126500278f34c917fd24bd215e72865587c32945 --- /dev/null +++ b/vlm/train/HJem3yHKwH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d53d1edf712d9d4c644aff760c6aee238081aab8cf11441aa1ba9ad19cd5924 +size 566221 diff --git a/vlm/train/HJem3yHKwH/10.png b/vlm/train/HJem3yHKwH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9412c9363213e1bd3b61214a5139b8e8e778532f --- /dev/null +++ b/vlm/train/HJem3yHKwH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c004498df48ad845928dca58babea37fc3eb41bf0c2af5124fff2802791e925 +size 508256 diff --git a/vlm/train/HJem3yHKwH/11.png b/vlm/train/HJem3yHKwH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..df123e9450d76b6966452aa99f534bbd29a32958 --- /dev/null +++ b/vlm/train/HJem3yHKwH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fada019251497ddad34f7956d44c8ef74ea6938399bb6b72915fc6261f21d1cb +size 320953 diff --git a/vlm/train/HJem3yHKwH/2.png b/vlm/train/HJem3yHKwH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b9803e0e7dba1089dbb2276748140f1290d8179 --- /dev/null +++ b/vlm/train/HJem3yHKwH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8fed224c87152e76b18ead4e82a8155a16142ca3674d7dc98e5c6a76079a47 +size 486579 diff --git a/vlm/train/HJem3yHKwH/3.png b/vlm/train/HJem3yHKwH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..049e52e664dd12b982aae79f69b4f810775e08df --- /dev/null +++ b/vlm/train/HJem3yHKwH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd634639cd25810895f62abc62bdedd7e54a6adc0ee1128f01cc17aaa9b5b726 +size 614592 diff --git a/vlm/train/HJem3yHKwH/4.png b/vlm/train/HJem3yHKwH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7259e0ec4b34b356a0a5f3bf74bb65bfa63e2317 --- /dev/null +++ b/vlm/train/HJem3yHKwH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9170c8d9cc9953f14db51d139eeebd3e1ef9a8761e912a7e10dec44176e326a +size 494783 diff --git a/vlm/train/HJem3yHKwH/5.png b/vlm/train/HJem3yHKwH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2eb2f307ffec6d10539d79cb694defec667cbcca --- /dev/null +++ b/vlm/train/HJem3yHKwH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e804559cee9241019978cf6651793f688811b016943bf42574f6fe8423e9941 +size 457415 diff --git a/vlm/train/HJem3yHKwH/6.png b/vlm/train/HJem3yHKwH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d1aceb2d11afa3bb40f98cbc55277d9601a42002 --- /dev/null +++ b/vlm/train/HJem3yHKwH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ccffa5c7b16d9df005de636b50a027f0defb74ae9e7626217485ce5a0a1f36 +size 508615 diff --git a/vlm/train/HJem3yHKwH/7.png b/vlm/train/HJem3yHKwH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ecda9e06cbc316910a0e93edbba5be43483113a1 --- /dev/null +++ b/vlm/train/HJem3yHKwH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28db0b777934a59bda2edea853999aeef6b7569482287871353915a1f814513e +size 633643 diff --git a/vlm/train/HJem3yHKwH/8.png b/vlm/train/HJem3yHKwH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3c5b60b87d4a2f31ff6fbf7a9e2b1d1a1b0642d3 --- /dev/null +++ b/vlm/train/HJem3yHKwH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e2f8e38535e6f4f700312aa7d4f77c33edce5a9e01761759a33904c0ba7661f +size 518894 diff --git a/vlm/train/HJem3yHKwH/9.png b/vlm/train/HJem3yHKwH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..998389d573665db6001bd23beb76ac646409afaf --- /dev/null +++ b/vlm/train/HJem3yHKwH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e83539c8223486a4657dab0236c079cdfa130f3cc21c59d74947550ea08d6ef +size 613774 diff --git a/vlm/train/HJx8HANFDH/0.png b/vlm/train/HJx8HANFDH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..305d66419e458f84a327f45562e3328f71804718 --- /dev/null +++ b/vlm/train/HJx8HANFDH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74f707538312074aa31fad7606af14b18b968ba5a82dbd34f2a5a660f8b442a +size 506811 diff --git a/vlm/train/HJx8HANFDH/1.png b/vlm/train/HJx8HANFDH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1cb472aaea0a8d56c7116582d0ba68356439962b --- /dev/null +++ b/vlm/train/HJx8HANFDH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7c4d673bb46c5849e64c22187103c2c380acaf02a58273d18c9cfca2c85857 +size 552275 diff --git a/vlm/train/HJx8HANFDH/10.png b/vlm/train/HJx8HANFDH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6c78f413efaba5530138acb2185125f79f47159e --- /dev/null +++ b/vlm/train/HJx8HANFDH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50664fceffa8c7a234674be2734bf33a700fda2f0a3e184afd7093f8e5c3cd8 +size 557920 diff --git a/vlm/train/HJx8HANFDH/11.png b/vlm/train/HJx8HANFDH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5e9ce8f512dcac23c5b540cebecc3d9f70124749 --- /dev/null +++ b/vlm/train/HJx8HANFDH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7500d31422959e952e9dc8bfc325482af085a09b219ee4476b644639ada1d5fd +size 537780 diff --git a/vlm/train/HJx8HANFDH/12.png b/vlm/train/HJx8HANFDH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..290920807266ddd2ba6098175ae275367cb58374 --- /dev/null +++ b/vlm/train/HJx8HANFDH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96087766b51466cc80cdacb16a25abb9fd3927e590d82842a50523bf32ec6fb1 +size 383551 diff --git a/vlm/train/HJx8HANFDH/13.png b/vlm/train/HJx8HANFDH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4dd74bbdd5c87c75441ed2397c2816366dae90a2 --- /dev/null +++ b/vlm/train/HJx8HANFDH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcab22747020e3ce8028d96249fecbca6b6b56390ab86f9e8cedbdd53210767d +size 291632 diff --git a/vlm/train/HJx8HANFDH/14.png b/vlm/train/HJx8HANFDH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..dc0d03a2823de00aa8399e8acacc4f50a865b140 --- /dev/null +++ b/vlm/train/HJx8HANFDH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6398d85f67cd5aab4b718964e2dd1703cfe32f3d3c2ffd4fa4bcaffd09b11f17 +size 201263 diff --git a/vlm/train/HJx8HANFDH/15.png b/vlm/train/HJx8HANFDH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..bef659e4c5fbfc6d12e1173a4b18654846c44137 --- /dev/null +++ b/vlm/train/HJx8HANFDH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214c4afb9a55afc940efda98d3723b38ac8a440f09787b10b574b472b7b12429 +size 449907 diff --git a/vlm/train/HJx8HANFDH/16.png b/vlm/train/HJx8HANFDH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..4abacecce92d472ad757c4ea57a037af1858afab --- /dev/null +++ b/vlm/train/HJx8HANFDH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ab977d1646dc57d1f3fca7ae5edac714b273f6a843f475c8db7c3969dd62788 +size 466769 diff --git a/vlm/train/HJx8HANFDH/17.png b/vlm/train/HJx8HANFDH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..c7236ec138a0b4cbfc4727b4b59fffc911f0aec4 --- /dev/null +++ b/vlm/train/HJx8HANFDH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41e3dab9dd1f81366fa93fd74c93b66b182019b02daf51ea33dbb8c0e2c0cac +size 190616 diff --git a/vlm/train/HJx8HANFDH/2.png b/vlm/train/HJx8HANFDH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c65d28d188cf5e8374607c8540aa593b2199d7b5 --- /dev/null +++ b/vlm/train/HJx8HANFDH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2089f33173271863b56d3f0156a818433e7433692bf715f95bc43926007ee4ee +size 574870 diff --git a/vlm/train/HJx8HANFDH/3.png b/vlm/train/HJx8HANFDH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6b79276b79fec504b05f23e9403ac19dab537f27 --- /dev/null +++ b/vlm/train/HJx8HANFDH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae74e516eafb374d39236feefc6d711152ee3fabdc62daf906655ef6da6e2f2b +size 547342 diff --git a/vlm/train/HJx8HANFDH/4.png b/vlm/train/HJx8HANFDH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..12e98624e9e7ffaa47026f694ddada94363bd3ba --- /dev/null +++ b/vlm/train/HJx8HANFDH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c1d0d14a30325bede190966e04166fa0124b0b233aaf3ea2bff537c0e5baa7 +size 479383 diff --git a/vlm/train/HJx8HANFDH/5.png b/vlm/train/HJx8HANFDH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1a334e2d281141c5fde9a457cc75bba76b19977f --- /dev/null +++ b/vlm/train/HJx8HANFDH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562788804b39a0d21c2cec02677cf8234a29cebad8d86de150722526bc33e78e +size 410736 diff --git a/vlm/train/HJx8HANFDH/6.png b/vlm/train/HJx8HANFDH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6259b7e01e701d4fe61ea1bbefcdcf9aa4c8f511 --- /dev/null +++ b/vlm/train/HJx8HANFDH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86c5dfed379e8e23957f6821f402a2b2c3681806e5e6ddb5443506b15a638af +size 605691 diff --git a/vlm/train/HJx8HANFDH/7.png b/vlm/train/HJx8HANFDH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..23800c742caf30902d729be644c678ff8cde09b7 --- /dev/null +++ b/vlm/train/HJx8HANFDH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331e86ae29f239c364cee07772cea2d3a1b8a3960e618678ba4ae661bf6ff32f +size 603891 diff --git a/vlm/train/HJx8HANFDH/8.png b/vlm/train/HJx8HANFDH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..52943dcd0f3a09537062874f35a8d12028b9096a --- /dev/null +++ b/vlm/train/HJx8HANFDH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e946cc9f80a7341c7748a13ac90be09c398b9b0b68b09f003731dffbed00c07e +size 466280 diff --git a/vlm/train/HJx8HANFDH/9.png b/vlm/train/HJx8HANFDH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..83a47c90a1d0e25a53b3bf9e0031bdb3712895fd --- /dev/null +++ b/vlm/train/HJx8HANFDH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7042dbc658a32ef5f5211084e5dc1658f9359dcb931a9508381d7a59a730c989 +size 505292 diff --git a/vlm/train/Hkg5lAEtvS/0.png b/vlm/train/Hkg5lAEtvS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2734d2c51a75d5ec4efcde2d18b6b6b31cf20717 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5a05ecf20e18dbd887d34a50ab60a7d34d6159f5a8e36d7771339d8243b827 +size 515804 diff --git a/vlm/train/Hkg5lAEtvS/1.png b/vlm/train/Hkg5lAEtvS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1dce0edf59b70bc260300ebb42c996d6eb2edf20 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39289b598c9e1d81ca50b3ca03b28663a8043d85407f24fd0e2cf95edb2e17c4 +size 600231 diff --git a/vlm/train/Hkg5lAEtvS/10.png b/vlm/train/Hkg5lAEtvS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a4057e5d8f33379adbf17983a9301fb90a04f2c8 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b02e0461b385ea82c9abba7031851cb440cb70016b02694849875fda1b23cd +size 495519 diff --git a/vlm/train/Hkg5lAEtvS/11.png b/vlm/train/Hkg5lAEtvS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0fce24d20014db54a8667367d9731c2e8d5bd219 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff73c497ddd40af130929bb62e18042af530cc9637261cc9db0043901bc0c38 +size 799072 diff --git a/vlm/train/Hkg5lAEtvS/12.png b/vlm/train/Hkg5lAEtvS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a92024ca197e5a3a12edf11f49976aca69ade90b --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea62e4c85451e6a6ddd7b1fc2c58c65e78576bdd3ec5cce3ea0d2bf4b728e20 +size 364895 diff --git a/vlm/train/Hkg5lAEtvS/2.png b/vlm/train/Hkg5lAEtvS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c0f9815208aa4ff40942fe028d3db6d96c7a9961 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10e35351ebef0d90f30bc55fbcd47111759b9ea6a4da1c07a113db303acdb97 +size 521303 diff --git a/vlm/train/Hkg5lAEtvS/3.png b/vlm/train/Hkg5lAEtvS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6cbe1e64cc74eb3b70f7e51a8f3657ebcc3419c1 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026f3337a0a60ce1b00c495c4b2094e03eea4df9fdd3ec75af993a0317dcca57 +size 570189 diff --git a/vlm/train/Hkg5lAEtvS/4.png b/vlm/train/Hkg5lAEtvS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bfcf178b1a45d88b382a41f2ce3cc44dd3ea0933 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f005f8ab5246160d888c311b72056ca0d4441cc4944d92110a9909d9f84b2d4a +size 583587 diff --git a/vlm/train/Hkg5lAEtvS/5.png b/vlm/train/Hkg5lAEtvS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5a2857e487eae41031ea607b50b3afe04524ab9c --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22845178f62b5cbd5215f08caf142f1fa3121e7c722ebe8d987d38f2e8d185f1 +size 508700 diff --git a/vlm/train/Hkg5lAEtvS/6.png b/vlm/train/Hkg5lAEtvS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..00252985e401fcf660d06ebf74ceb08dde814362 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d34c7f11c145781f974b64f78738812ef9cbc5ce702da47b5b1f7218dead698 +size 663058 diff --git a/vlm/train/Hkg5lAEtvS/7.png b/vlm/train/Hkg5lAEtvS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9be9fb68ab3fb6533d7604701a5e8513f40516c0 --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfe9183037d2d33d17285b70f891529e94820fb9a81c16f4c5f3f80f79f83757 +size 867925 diff --git a/vlm/train/Hkg5lAEtvS/8.png b/vlm/train/Hkg5lAEtvS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..092cf3038c24f162ed9f00ff97ca245629f8739f --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645368c04589f4ee50a856d1f533fea0cc608e486b83003005954ecb5b90d50c +size 520722 diff --git a/vlm/train/Hkg5lAEtvS/9.png b/vlm/train/Hkg5lAEtvS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..53772099178c9d4e77b0cc7a0f30dce1540b14ea --- /dev/null +++ b/vlm/train/Hkg5lAEtvS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f64413d126ada7a2d195db4a5232c789c971b190be5babdcc53ea1fc186c18 +size 421139 diff --git a/vlm/train/HkpYwMZRb/0.png b/vlm/train/HkpYwMZRb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dfeb45398579d5769a73134201ad81567b73f77c --- /dev/null +++ b/vlm/train/HkpYwMZRb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fbe377c5a21b9e72258c7a1a6b01b55a72f6333501e3f187622a3c93b3d30a9 +size 446694 diff --git a/vlm/train/HkpYwMZRb/1.png b/vlm/train/HkpYwMZRb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..14551aed21a39a02d277a0e4ca66743d868b4496 --- /dev/null +++ b/vlm/train/HkpYwMZRb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c636dc4d0e5a2f6633d04dbc44649fc21ea1d295af5a8440aa7452c78a5a6a +size 583899 diff --git a/vlm/train/HkpYwMZRb/10.png b/vlm/train/HkpYwMZRb/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8a83f2efa13213f4c1c21883a2b9fbf696c7d75f --- /dev/null +++ b/vlm/train/HkpYwMZRb/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ac65ec95dbdcfbbb01d6ac63d08dfd0c6c6dcbdf65ef64b2c5bbb07858d8ba +size 553227 diff --git a/vlm/train/HkpYwMZRb/11.png b/vlm/train/HkpYwMZRb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ccd1573eae4632f96f1790f0ee92bc86abcd82a3 --- /dev/null +++ b/vlm/train/HkpYwMZRb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47f6a3e7a37656b6a7d791630a3befb299d2f05854c1a5c9b4a3ecd4c6daf90 +size 581966 diff --git a/vlm/train/HkpYwMZRb/12.png b/vlm/train/HkpYwMZRb/12.png new file mode 100644 index 0000000000000000000000000000000000000000..25aca0fb91036ff7d98a31500b22d4962c825ce6 --- /dev/null +++ b/vlm/train/HkpYwMZRb/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e04769943dc3454c83645c6ccd9d7780ad056853c6da8e2c7b5db11e116cce +size 550866 diff --git a/vlm/train/HkpYwMZRb/13.png b/vlm/train/HkpYwMZRb/13.png new file mode 100644 index 0000000000000000000000000000000000000000..82ed21732851b99bd3fe515279b64cd2524fffd8 --- /dev/null +++ b/vlm/train/HkpYwMZRb/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4d4faf2fd632e8d575c4b1d13ef2cb92871bc1cd96bb610748050d0f0636fd +size 548998 diff --git a/vlm/train/HkpYwMZRb/14.png b/vlm/train/HkpYwMZRb/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4324310750aaa8f474aeec10220ae8ebb22c68c6 --- /dev/null +++ b/vlm/train/HkpYwMZRb/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:503ce65fac86e43629beca1c44ae2a9c1e176802cbc1e9b823b8a40aa231767f +size 526801 diff --git a/vlm/train/HkpYwMZRb/15.png b/vlm/train/HkpYwMZRb/15.png new file mode 100644 index 0000000000000000000000000000000000000000..2f2b2db236b2a447c68f9207569d7b6dfe829ea8 --- /dev/null +++ b/vlm/train/HkpYwMZRb/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a53de1d4d92db712129d28d27bf087fef441817c65a73f71f84fdc1868e34e46 +size 552690 diff --git a/vlm/train/HkpYwMZRb/16.png b/vlm/train/HkpYwMZRb/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1677160a24166317323069532d82972cbb9345e0 --- /dev/null +++ b/vlm/train/HkpYwMZRb/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f415b52a75d575d7e7fcdb7bf8bfa9e84f578c01de8f453b8b3f6efaaf79b1d2 +size 439025 diff --git a/vlm/train/HkpYwMZRb/17.png b/vlm/train/HkpYwMZRb/17.png new file mode 100644 index 0000000000000000000000000000000000000000..34120effbb13ed9b16e020b0dfa2db332ea863c7 --- /dev/null +++ b/vlm/train/HkpYwMZRb/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7a6960262e0d8e0a7002b94f3e54bbc09276b7cf9d2d50dd3564d631295990 +size 406920 diff --git a/vlm/train/HkpYwMZRb/18.png b/vlm/train/HkpYwMZRb/18.png new file mode 100644 index 0000000000000000000000000000000000000000..d6d14f6112a597d774b1e4a3079118f8618ca7f9 --- /dev/null +++ b/vlm/train/HkpYwMZRb/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f7fb1f16fa1eb5de0375cd5774c116afa092e653c654befd932613c97f58a2 +size 253892 diff --git a/vlm/train/HkpYwMZRb/19.png b/vlm/train/HkpYwMZRb/19.png new file mode 100644 index 0000000000000000000000000000000000000000..59db4101fdebf46afd517e30ddd6b3e71581357b --- /dev/null +++ b/vlm/train/HkpYwMZRb/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4eb299e0a94177f1129d9345b3be0cb149bcfe5d78234b8b40880a9c8e83834 +size 527368 diff --git a/vlm/train/HkpYwMZRb/2.png b/vlm/train/HkpYwMZRb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c2d7980c4eb5eba4743a3d3aa0656154db63c43f --- /dev/null +++ b/vlm/train/HkpYwMZRb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b68e2c160e8c56b7b5657e15bbfad647d9263cebe37b390654244d49adf23cf +size 525905 diff --git a/vlm/train/HkpYwMZRb/20.png b/vlm/train/HkpYwMZRb/20.png new file mode 100644 index 0000000000000000000000000000000000000000..5bfeb26dda8c1b316df6b70a3d00e559a7d9f9a0 --- /dev/null +++ b/vlm/train/HkpYwMZRb/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ce2e02fce2bed3d1d0e87b708d4353499b92a3140db16c620eb4d8ae5d6d2f +size 551339 diff --git a/vlm/train/HkpYwMZRb/21.png b/vlm/train/HkpYwMZRb/21.png new file mode 100644 index 0000000000000000000000000000000000000000..d06d16acd8714c2619e870bc75f2ea6c5d0fe01d --- /dev/null +++ b/vlm/train/HkpYwMZRb/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0786dc0489bf9691217b1a51dce576cd02b5fa20061ba61917229e2f6ed05a +size 559039 diff --git a/vlm/train/HkpYwMZRb/22.png b/vlm/train/HkpYwMZRb/22.png new file mode 100644 index 0000000000000000000000000000000000000000..1d3eed5bad2e43aae331132756f783a75cab0412 --- /dev/null +++ b/vlm/train/HkpYwMZRb/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c673bb13d825b9ea73acef3aef6e7ae8361a17059978adb246bdbaaa420404 +size 285908 diff --git a/vlm/train/HkpYwMZRb/23.png b/vlm/train/HkpYwMZRb/23.png new file mode 100644 index 0000000000000000000000000000000000000000..2b997672125e0f973061867388b98cd2c977f728 --- /dev/null +++ b/vlm/train/HkpYwMZRb/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4d133b316f583ab5af6a68606e0db40e645fc9d440458e46a061e02329558a +size 298956 diff --git a/vlm/train/HkpYwMZRb/24.png b/vlm/train/HkpYwMZRb/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d0c442cb3079acee9219f91a8200c2d2e0cfef18 --- /dev/null +++ b/vlm/train/HkpYwMZRb/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0da3f4978eb935772d852dc2d315c255e3a3f0e61e3c9b10e39f1598964bffd5 +size 267419 diff --git a/vlm/train/HkpYwMZRb/25.png b/vlm/train/HkpYwMZRb/25.png new file mode 100644 index 0000000000000000000000000000000000000000..e6dd1d65cd3068c8282cc809552287b845af577e --- /dev/null +++ b/vlm/train/HkpYwMZRb/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d3f37da17cda30c9f91a72ee7119446274f648262c7a55a7f48c746af4193e +size 561971 diff --git a/vlm/train/HkpYwMZRb/26.png b/vlm/train/HkpYwMZRb/26.png new file mode 100644 index 0000000000000000000000000000000000000000..b7ff0e7cf16ee52ece3a5d7c18433df731bb6519 --- /dev/null +++ b/vlm/train/HkpYwMZRb/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff925b4796084036764c98365bdb0c99406b7f065638d29fbdb81343cec1f2de +size 588921 diff --git a/vlm/train/HkpYwMZRb/27.png b/vlm/train/HkpYwMZRb/27.png new file mode 100644 index 0000000000000000000000000000000000000000..2ab24dc169d1455dd301cf001fcb9c8f4728e54f --- /dev/null +++ b/vlm/train/HkpYwMZRb/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764af1c3068aea4f16445cd9c0949d299657a65716d7ae87307eba2e83838965 +size 530502 diff --git a/vlm/train/HkpYwMZRb/28.png b/vlm/train/HkpYwMZRb/28.png new file mode 100644 index 0000000000000000000000000000000000000000..52a43bccee1b33481924cac1abeaee53a2753e61 --- /dev/null +++ b/vlm/train/HkpYwMZRb/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d535227ebbf56dfa32b86e340e427546f46ef8ac074ff26cde3e5c1db781cda1 +size 552383 diff --git a/vlm/train/HkpYwMZRb/29.png b/vlm/train/HkpYwMZRb/29.png new file mode 100644 index 0000000000000000000000000000000000000000..00c86a3dde08cc1c66464a0865584ec7663b629b --- /dev/null +++ b/vlm/train/HkpYwMZRb/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb9d18e737b2fb80f3956dc5a92852d5e9f34a364c3e4d8ba74d0a20c99c6ef +size 581450 diff --git a/vlm/train/HkpYwMZRb/3.png b/vlm/train/HkpYwMZRb/3.png new file mode 100644 index 0000000000000000000000000000000000000000..76b8831ac5b75a5123621db31d9df74d1233e302 --- /dev/null +++ b/vlm/train/HkpYwMZRb/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc67a783898a43f7c3010aae8567ec370327d2dab25c0b91bdfc92003a7f754 +size 497855 diff --git a/vlm/train/HkpYwMZRb/30.png b/vlm/train/HkpYwMZRb/30.png new file mode 100644 index 0000000000000000000000000000000000000000..fccdf64d54ca12728e033478df5181e24aca3ba6 --- /dev/null +++ b/vlm/train/HkpYwMZRb/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b05e16a383299420339347b06421f523a2d203aca62d138ad24e942b33247c85 +size 448063 diff --git a/vlm/train/HkpYwMZRb/31.png b/vlm/train/HkpYwMZRb/31.png new file mode 100644 index 0000000000000000000000000000000000000000..2845d8576de87159de08ee5212cd70be217b16c8 --- /dev/null +++ b/vlm/train/HkpYwMZRb/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1850a76768b46f1af2a2441cac276342ac374d258c2ffe486273933d583f4af8 +size 372890 diff --git a/vlm/train/HkpYwMZRb/32.png b/vlm/train/HkpYwMZRb/32.png new file mode 100644 index 0000000000000000000000000000000000000000..3457cb2cf29c0ad68ba8d76c710ad8ec7577a5ff --- /dev/null +++ b/vlm/train/HkpYwMZRb/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7368333b02e1da3257f27f02b0e56645c6e7e047d48393e48e7f6a19391ab5c +size 389367 diff --git a/vlm/train/HkpYwMZRb/33.png b/vlm/train/HkpYwMZRb/33.png new file mode 100644 index 0000000000000000000000000000000000000000..036475b31211f10c3ed56f06fecc19ca1486da2e --- /dev/null +++ b/vlm/train/HkpYwMZRb/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70810f77c6b7493607cbac73f70151f8a5359060b0f4326ee96ef038219adb5f +size 347574 diff --git a/vlm/train/HkpYwMZRb/34.png b/vlm/train/HkpYwMZRb/34.png new file mode 100644 index 0000000000000000000000000000000000000000..5d55ba5c1091c1b17d5d9e7078dda0ec4c7161c3 --- /dev/null +++ b/vlm/train/HkpYwMZRb/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5593c20f24056b09026bb772a580909443fc479694ca661875a21e24d421bd9 +size 397762 diff --git a/vlm/train/HkpYwMZRb/35.png b/vlm/train/HkpYwMZRb/35.png new file mode 100644 index 0000000000000000000000000000000000000000..8bd0c27465f5b2353a6db5ca085347018ae0e1fc --- /dev/null +++ b/vlm/train/HkpYwMZRb/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468983793d292d3ff5ab5e5cc7f1015138e5d394239743ca7f4876f23fb9577a +size 473300 diff --git a/vlm/train/HkpYwMZRb/36.png b/vlm/train/HkpYwMZRb/36.png new file mode 100644 index 0000000000000000000000000000000000000000..4e2f5827f81174b8daaae7c3caafe1b73631f35e --- /dev/null +++ b/vlm/train/HkpYwMZRb/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc047896c1b155d6c2ced4da4421cb621143988b15149a4a76a3f1177f7798a +size 234085 diff --git a/vlm/train/HkpYwMZRb/37.png b/vlm/train/HkpYwMZRb/37.png new file mode 100644 index 0000000000000000000000000000000000000000..872a7f68bd485f4afba31c3d9fea700c63d97deb --- /dev/null +++ b/vlm/train/HkpYwMZRb/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f31719e346a98e3e64d48fb9dd6fd8cd965812ffa98263edff6caca0bb8b6f4 +size 317618 diff --git a/vlm/train/HkpYwMZRb/38.png b/vlm/train/HkpYwMZRb/38.png new file mode 100644 index 0000000000000000000000000000000000000000..0f5b8161a337d40bb3165dd02be24ac225447d76 --- /dev/null +++ b/vlm/train/HkpYwMZRb/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36d9b64714eb023703f3d2385bfedaaa2686ddc11777005727509b4af0b841b +size 300339 diff --git a/vlm/train/HkpYwMZRb/39.png b/vlm/train/HkpYwMZRb/39.png new file mode 100644 index 0000000000000000000000000000000000000000..bb803d2746746730f04a7ff937ed33b3cf0b43f4 --- /dev/null +++ b/vlm/train/HkpYwMZRb/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a232853a87d6293e4f682257344f5579f48f15dac8e8afcee989fc5758bc718c +size 229375 diff --git a/vlm/train/HkpYwMZRb/4.png b/vlm/train/HkpYwMZRb/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b2bf1f839c5c30eace62e728503c1ce2eeefd511 --- /dev/null +++ b/vlm/train/HkpYwMZRb/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a1a547d641f23285ae436a06e81960f59c8e4d698f30c7c62faccb0a67b51f4 +size 511073 diff --git a/vlm/train/HkpYwMZRb/40.png b/vlm/train/HkpYwMZRb/40.png new file mode 100644 index 0000000000000000000000000000000000000000..0c26bdcca50865fc8e0fb9402608c4284d2d3a03 --- /dev/null +++ b/vlm/train/HkpYwMZRb/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3168ebcb54c792aa2b7a0571790613a6628fc66947dbee7c76dcb365ecf881ae +size 365517 diff --git a/vlm/train/HkpYwMZRb/41.png b/vlm/train/HkpYwMZRb/41.png new file mode 100644 index 0000000000000000000000000000000000000000..3551eeb08877e8e037be75478484f3c72149dfdd --- /dev/null +++ b/vlm/train/HkpYwMZRb/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ff5027854dde0bb8cc3d2fd11b1e3e2e6da6b333e5093bac8f3c631d2b18d5 +size 581941 diff --git a/vlm/train/HkpYwMZRb/42.png b/vlm/train/HkpYwMZRb/42.png new file mode 100644 index 0000000000000000000000000000000000000000..f12711fead9965b291aa7ec6dcef65c6a76a575f --- /dev/null +++ b/vlm/train/HkpYwMZRb/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3075341260d114add53e107a7281e6d8597a7264b359997ca654f5ed18eb4935 +size 556147 diff --git a/vlm/train/HkpYwMZRb/43.png b/vlm/train/HkpYwMZRb/43.png new file mode 100644 index 0000000000000000000000000000000000000000..e6ebbf94bb8215081c32d0bf353b5e8c5e87ba60 --- /dev/null +++ b/vlm/train/HkpYwMZRb/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc1c560bb1d822c14f86dddba56b64b872e6c8b151d40b275261734cdf062f8 +size 365070 diff --git a/vlm/train/HkpYwMZRb/44.png b/vlm/train/HkpYwMZRb/44.png new file mode 100644 index 0000000000000000000000000000000000000000..e688bd81f2a3c3809ad81be72913db8d6989268b --- /dev/null +++ b/vlm/train/HkpYwMZRb/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19830a6292e20b651baf49e9e8edbd69b75fb65925a66d345f3126d90dd4653 +size 259954 diff --git a/vlm/train/HkpYwMZRb/45.png b/vlm/train/HkpYwMZRb/45.png new file mode 100644 index 0000000000000000000000000000000000000000..445f0aa24a46f93dc9c6eb0fd782e58d894018c7 --- /dev/null +++ b/vlm/train/HkpYwMZRb/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf6110116b833024c73e22cefbf928f073c00893d4fede04723c89fc453b06e +size 475643 diff --git a/vlm/train/HkpYwMZRb/46.png b/vlm/train/HkpYwMZRb/46.png new file mode 100644 index 0000000000000000000000000000000000000000..57c42c843d6fe67e4291da49134c8f06d6bfd64a --- /dev/null +++ b/vlm/train/HkpYwMZRb/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8cb14d556dcb534c2ee8faf2ac593823ab14a503e884a2ea6b8748b8eb21ee +size 379428 diff --git a/vlm/train/HkpYwMZRb/47.png b/vlm/train/HkpYwMZRb/47.png new file mode 100644 index 0000000000000000000000000000000000000000..d4c1e687f7eddd0fe4e0343aa54b601c9d9de549 --- /dev/null +++ b/vlm/train/HkpYwMZRb/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d83d3d72377f31d231843098cb18e584e5250871bb0fbe0ffcfd80b3eac31ea3 +size 244588 diff --git a/vlm/train/HkpYwMZRb/48.png b/vlm/train/HkpYwMZRb/48.png new file mode 100644 index 0000000000000000000000000000000000000000..5be530fd152ab6715c9bad8947bc69585d4b4649 --- /dev/null +++ b/vlm/train/HkpYwMZRb/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53d40437ce3b01713adbb5675d3027f9d32733a557fe46404c48eb44e962383 +size 525997 diff --git a/vlm/train/HkpYwMZRb/49.png b/vlm/train/HkpYwMZRb/49.png new file mode 100644 index 0000000000000000000000000000000000000000..d6a01199c5a917ced50226c9968fc3b416e6fb76 --- /dev/null +++ b/vlm/train/HkpYwMZRb/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c59ded2c33d1f9ef0366284d09ec2ff19c734c082ac69dc4244fab208ac800 +size 420842 diff --git a/vlm/train/HkpYwMZRb/5.png b/vlm/train/HkpYwMZRb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3a71ce6111bfd9ddfc51c5f76452f7f9b3331074 --- /dev/null +++ b/vlm/train/HkpYwMZRb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c0f8aa4d577597bcdda3b370aebb5eaddc913fdd4690a2eafdbfde9cd54d65 +size 586451 diff --git a/vlm/train/HkpYwMZRb/50.png b/vlm/train/HkpYwMZRb/50.png new file mode 100644 index 0000000000000000000000000000000000000000..24e96d1372e815f5e64fde496cb993162a3c3c7c --- /dev/null +++ b/vlm/train/HkpYwMZRb/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be8d493d1662d4feaf7dd5a2c7d546e63512f4f72eb7e793dfc064386e2961a +size 396872 diff --git a/vlm/train/HkpYwMZRb/51.png b/vlm/train/HkpYwMZRb/51.png new file mode 100644 index 0000000000000000000000000000000000000000..8940891a4f1b9b77e78eb5ac38239a2a42ca2230 --- /dev/null +++ b/vlm/train/HkpYwMZRb/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac564e3e5defb25fbf805ece9b7bee43f10436d90a932dd308da37c46a76f0c +size 415655 diff --git a/vlm/train/HkpYwMZRb/52.png b/vlm/train/HkpYwMZRb/52.png new file mode 100644 index 0000000000000000000000000000000000000000..cbb35bd957baff31d9208991cfdcaea27f6f315c --- /dev/null +++ b/vlm/train/HkpYwMZRb/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af6dbc908620f73ac76ef5904a037d0a0eb8650a47946bcfab2031fb2a70f53 +size 246711 diff --git a/vlm/train/HkpYwMZRb/53.png b/vlm/train/HkpYwMZRb/53.png new file mode 100644 index 0000000000000000000000000000000000000000..bef7b70ef25460e61b779a2334aa9e9f137f6878 --- /dev/null +++ b/vlm/train/HkpYwMZRb/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd30604f02bea05f19fd85b0153ff6163561a5d9722670f7b7ca27eb542ae3de +size 481939 diff --git a/vlm/train/HkpYwMZRb/54.png b/vlm/train/HkpYwMZRb/54.png new file mode 100644 index 0000000000000000000000000000000000000000..5e68050c13761364afc335ec1278d8cb4e7c5355 --- /dev/null +++ b/vlm/train/HkpYwMZRb/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4c553d79a123761f6aa0dd14ee53faeef95ea1bc474bb9e93557a12ce3bb29 +size 480274 diff --git a/vlm/train/HkpYwMZRb/55.png b/vlm/train/HkpYwMZRb/55.png new file mode 100644 index 0000000000000000000000000000000000000000..b1ba5dff9979206bca4e36a2548e06f917286279 --- /dev/null +++ b/vlm/train/HkpYwMZRb/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d39bf168e6945ceb6ed4ab98513c57328e0aac59e819f7d1ef1abc1afd48984 +size 506223 diff --git a/vlm/train/HkpYwMZRb/56.png b/vlm/train/HkpYwMZRb/56.png new file mode 100644 index 0000000000000000000000000000000000000000..33452bd86bad85b0bce9a615f749b2bb9e74bd5a --- /dev/null +++ b/vlm/train/HkpYwMZRb/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89937f229a6cbfdb0864a92d2a16b1d176eb29238f0a64b8e333f66bc06fdd6b +size 459218 diff --git a/vlm/train/HkpYwMZRb/57.png b/vlm/train/HkpYwMZRb/57.png new file mode 100644 index 0000000000000000000000000000000000000000..d0af01fa8b26cef67e63a391f552c570e2b388bd --- /dev/null +++ b/vlm/train/HkpYwMZRb/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39cc32c533a797a648e4441a6a0aa3e6c21d4db75a9dc393f79ae1b7f6c21325 +size 567903 diff --git a/vlm/train/HkpYwMZRb/58.png b/vlm/train/HkpYwMZRb/58.png new file mode 100644 index 0000000000000000000000000000000000000000..74743c74e73c7a320820f2f5cf237744ac07f85b --- /dev/null +++ b/vlm/train/HkpYwMZRb/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb882f701af8084b877e0e05bd66d01259a41b53a4e21b2a2217ac282131aad +size 176193 diff --git a/vlm/train/HkpYwMZRb/6.png b/vlm/train/HkpYwMZRb/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ef0955b281364d44709c80bae698e0208288761d --- /dev/null +++ b/vlm/train/HkpYwMZRb/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:293e74a44aed61e5f8bb3b5be06c00ae891d25f44f1dec550349fa9bbaf7f002 +size 474427 diff --git a/vlm/train/HkpYwMZRb/7.png b/vlm/train/HkpYwMZRb/7.png new file mode 100644 index 0000000000000000000000000000000000000000..482ede9aeff6eb130e5a85c79834718db9ff96c7 --- /dev/null +++ b/vlm/train/HkpYwMZRb/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72da3d8c7a28d68d05c946b611514ade806e098b8ee39ff54982ab16f8804aab +size 533101 diff --git a/vlm/train/HkpYwMZRb/8.png b/vlm/train/HkpYwMZRb/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8e58796604b19a6b960b18cce0aaad447c73ff7a --- /dev/null +++ b/vlm/train/HkpYwMZRb/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09a3cff247d18e45c8477b5d0b39ce9970ba06a3fb10f7a54f0808c54151f97 +size 487363 diff --git a/vlm/train/HkpYwMZRb/9.png b/vlm/train/HkpYwMZRb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5c725f2d2cb6d970f66027d5e2bd403d2fbdf7f9 --- /dev/null +++ b/vlm/train/HkpYwMZRb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e73dca5de2c4ed2632d477c6e87bb2b0f6bd017cd2dd69ef155e495cb2b4bfc3 +size 602042 diff --git a/vlm/train/Hkxr1nCcFm/0.png b/vlm/train/Hkxr1nCcFm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..484b16b3b63e2fa25646d2f7bce7d480436f653c --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb404a39112a6707267f2eb430bd9b0ecb7f382ed273d6b620845b1edcf0aee +size 502995 diff --git a/vlm/train/Hkxr1nCcFm/1.png b/vlm/train/Hkxr1nCcFm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..130c16b96b23e2fcb8d0d72808d0ff35eaaf519c --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef39edb37376978df8cc88a6c5227c2d7537726e1001381e7fd6d9b0ea9617c +size 526661 diff --git a/vlm/train/Hkxr1nCcFm/10.png b/vlm/train/Hkxr1nCcFm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c2aced2b2e69f0a4ad650e52448bb1974e584c74 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab146b358aca8847f3c1240d0725a0825f8dca6b9d3db3287d825c8517dfeb65 +size 77751 diff --git a/vlm/train/Hkxr1nCcFm/11.png b/vlm/train/Hkxr1nCcFm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c1bec21409f15d32670c5abb719720e446790e7f --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c85c92d6ba48fd87c5785664a313cf15b8e8112defee64a9716c0ba6e89150 +size 313431 diff --git a/vlm/train/Hkxr1nCcFm/12.png b/vlm/train/Hkxr1nCcFm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ddc0947335e58a9f89b9a812ca10111053b4e14a --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054af8b7acb450c71037ae496fe7a18a2bebd917db4ffd5ddd16e0d5a2c76179 +size 445739 diff --git a/vlm/train/Hkxr1nCcFm/13.png b/vlm/train/Hkxr1nCcFm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4ce02620c2a679d1bf49cc5f33ff1d9e23f6720b --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a8a6c512b773d0236a5f3bff52daa198c2be74d5de2ddeec3547528e29a893 +size 313864 diff --git a/vlm/train/Hkxr1nCcFm/14.png b/vlm/train/Hkxr1nCcFm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3c4974589653e6281ad0c9315feba3174d6bdd59 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57dd8a6121c7c521e744c100893cab889dad7ea0341a568de1b9e5bccfef7ab9 +size 296784 diff --git a/vlm/train/Hkxr1nCcFm/15.png b/vlm/train/Hkxr1nCcFm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..4391f8024a20890e284c54ab2bc22e943c41f25f --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc9d6eabe2fa10b1356397f0f213e761456753cd5427aa6b577c4a48f1912151 +size 385639 diff --git a/vlm/train/Hkxr1nCcFm/16.png b/vlm/train/Hkxr1nCcFm/16.png new file mode 100644 index 0000000000000000000000000000000000000000..43666ac2a634753758a54d9b0c3792e397c1c32c --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f03e484efaaaf53150a70a95f1c115dbf7a53c32472c0c8a71103385edc0f50 +size 385855 diff --git a/vlm/train/Hkxr1nCcFm/17.png b/vlm/train/Hkxr1nCcFm/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f0cd61cacc116a5153a98959ad7e4228af7c4c31 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e01a1d20c93e1d6d92e3a75b282d4cda536ea68c930e24c24fb71a27588eac7a +size 397799 diff --git a/vlm/train/Hkxr1nCcFm/18.png b/vlm/train/Hkxr1nCcFm/18.png new file mode 100644 index 0000000000000000000000000000000000000000..34c6bf14b0fd6c02f6cd5020a41fdb3ce31d2986 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418d4f0c010344686bdbb3650c8fb837c3db07eacc0f870911121502e955f5b4 +size 437581 diff --git a/vlm/train/Hkxr1nCcFm/19.png b/vlm/train/Hkxr1nCcFm/19.png new file mode 100644 index 0000000000000000000000000000000000000000..036afe5d2348384ac75dbf6bc8e6f69a9a9326a6 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f4680882acc36ac5caad0e32e6c6adbf14182cada0f426d5852bc1e471a87d6 +size 557378 diff --git a/vlm/train/Hkxr1nCcFm/2.png b/vlm/train/Hkxr1nCcFm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..708831d956aa57b81e957c09d58ad85c9dfc7aa9 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02e326ac222ad152abeecfb8aea03a09f0ad4176def3730e8501c521b4f81e3 +size 401071 diff --git a/vlm/train/Hkxr1nCcFm/20.png b/vlm/train/Hkxr1nCcFm/20.png new file mode 100644 index 0000000000000000000000000000000000000000..5cb19e0aee706454c487865ccd504dce8a0c834b --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29dd33d51ede41b4452fd4706826d228ebdc73f441683c7e1635b0094f56bbfd +size 456751 diff --git a/vlm/train/Hkxr1nCcFm/21.png b/vlm/train/Hkxr1nCcFm/21.png new file mode 100644 index 0000000000000000000000000000000000000000..55d45b732441dc6b9fb734f18abb36fd0ead4911 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb572a56ed6e5e739e754225e6e2c43a52a5eaec2de5a339b79ae8cc02c59d7a +size 232524 diff --git a/vlm/train/Hkxr1nCcFm/3.png b/vlm/train/Hkxr1nCcFm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..700fdbafa2ab740283bd9dd56cc4e11ff722f171 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ceee67d53159ed85eafbeddc3b1cc84890d20f70c33199187aa00ee2e74cd93 +size 478135 diff --git a/vlm/train/Hkxr1nCcFm/4.png b/vlm/train/Hkxr1nCcFm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7712a4e9e12fa388db22e823459fff0139e80c7d --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18208fba69f4e057559bf3d954bd83ebbab639fe25a3d6e105c828c41563873d +size 480509 diff --git a/vlm/train/Hkxr1nCcFm/5.png b/vlm/train/Hkxr1nCcFm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4666d632a38ceabb6d21dfa7348deb626e13b354 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f4e004726a2223589d9652f1e6abc94ee36b9df617e9561d55b04a3e90a90f +size 584169 diff --git a/vlm/train/Hkxr1nCcFm/6.png b/vlm/train/Hkxr1nCcFm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ca2427966eb810f3c7e779d4f2f7573127d068 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5723f9fbb8ef4c0fc66cf011c779cb833612e6cef02342a9ad3a3246c784cf6e +size 501160 diff --git a/vlm/train/Hkxr1nCcFm/7.png b/vlm/train/Hkxr1nCcFm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..cd62102be39d5804b526e7397e7c9d10744cae91 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee4352f0acae5bbb2488f0fd6346fb3b23c50971720a583f1f6e3468e5a5119 +size 484913 diff --git a/vlm/train/Hkxr1nCcFm/8.png b/vlm/train/Hkxr1nCcFm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e1b2cb7e574a1c57171c5f96baf646007c22e39e --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e67e1152880a18b0f38aaddb4a0180cc0cbbea2cfcac8f5c6315b624d7a362c +size 533957 diff --git a/vlm/train/Hkxr1nCcFm/9.png b/vlm/train/Hkxr1nCcFm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..48347e8a1c628f74fddeeedd695815a682dd4c97 --- /dev/null +++ b/vlm/train/Hkxr1nCcFm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b11875cf17b75c5496d156b55805a8bd400f2152786f286f90b13ad1c207ead +size 557185 diff --git a/vlm/train/IXexLXymbZ9/0.png b/vlm/train/IXexLXymbZ9/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a77096a81a0c7a8b0e1ff787c432d4de333422 --- /dev/null +++ b/vlm/train/IXexLXymbZ9/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f46ee0ee1214e6ff90c47e92f81d2b3b0ceaec1463fce2679faac477130e3e +size 487196 diff --git a/vlm/train/IXexLXymbZ9/1.png b/vlm/train/IXexLXymbZ9/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3e7777a11cee0e82aa95af37799f8b401a36814c --- /dev/null +++ b/vlm/train/IXexLXymbZ9/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94c1766d12e1d862ac4abbe5b03c0b3814ddef5149f8f283fde13addd57304a +size 507790 diff --git a/vlm/train/IXexLXymbZ9/10.png b/vlm/train/IXexLXymbZ9/10.png new file mode 100644 index 0000000000000000000000000000000000000000..65278f9fcd45f1041e8c2bcf7cafd6722af47d78 --- /dev/null +++ b/vlm/train/IXexLXymbZ9/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a117219dd8d01cc5e689f8cd8c4f7e20a6533388af4f7f46d267b5d6301c7b7 +size 607934 diff --git a/vlm/train/IXexLXymbZ9/11.png b/vlm/train/IXexLXymbZ9/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c0dea571c23904996f7d5e15704556e4db3dad3f --- /dev/null +++ b/vlm/train/IXexLXymbZ9/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102267cad01313b79f9772f1e3218240dcfffddd2c1f01f79059db764e8dbb2b +size 127871 diff --git a/vlm/train/IXexLXymbZ9/12.png b/vlm/train/IXexLXymbZ9/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e8378c892ca9fd64bb5903a75105392f075a6c0a --- /dev/null +++ b/vlm/train/IXexLXymbZ9/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe0c84de3f412eccf1edaf1a2cda3c8953da31e3f8826ee88d9dae7aa4f3b850 +size 396002 diff --git a/vlm/train/IXexLXymbZ9/2.png b/vlm/train/IXexLXymbZ9/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ea476820d0b43e18dd5db8aa026fbf18cd1d1572 --- /dev/null +++ b/vlm/train/IXexLXymbZ9/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b9e7630d64687582f48d9678df73cd0d562e05f77a4428717c99523604230d +size 645506 diff --git a/vlm/train/IXexLXymbZ9/3.png b/vlm/train/IXexLXymbZ9/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fcfd56cd38aaa3bd5791ec7dd66d9da635c46c64 --- /dev/null +++ b/vlm/train/IXexLXymbZ9/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2286bc0df1d2d46a9e5586004906def0cff956b99edb7c29110de5c2ecf91b48 +size 523311 diff --git a/vlm/train/IXexLXymbZ9/4.png b/vlm/train/IXexLXymbZ9/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ed4f3a5fc236560600f625fffc0e5208a5120bb5 --- /dev/null +++ b/vlm/train/IXexLXymbZ9/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393da8e131663b95d19b2127fb7818e9080883d0f595b0516d7f89256206a34e +size 536997 diff --git a/vlm/train/IXexLXymbZ9/5.png b/vlm/train/IXexLXymbZ9/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9272357d2184cc7e6f98f0c253e8f584ecdf15ca --- /dev/null +++ b/vlm/train/IXexLXymbZ9/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26773c9f1726e956803dd8bf2b616f64029830ed22b8cceded559518f4778d07 +size 495087 diff --git a/vlm/train/IXexLXymbZ9/6.png b/vlm/train/IXexLXymbZ9/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ff8ff3a84857f1a114047f83d3edb99fb04a3c --- /dev/null +++ b/vlm/train/IXexLXymbZ9/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a8fdd68d0b807a32c3d85a4908c27138d829f12a322b0653fd6c755e24001dc +size 561560 diff --git a/vlm/train/IXexLXymbZ9/7.png b/vlm/train/IXexLXymbZ9/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1bd5eada81402681bcd2676458800fd15009eb42 --- /dev/null +++ b/vlm/train/IXexLXymbZ9/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1fb033b304c348acd546ff188f3095c916297e4bfcbc84dc513319e52f7c00b +size 603824 diff --git a/vlm/train/IXexLXymbZ9/8.png b/vlm/train/IXexLXymbZ9/8.png new file mode 100644 index 0000000000000000000000000000000000000000..175199ae840b5ef0db37d95ca2b47a8f0ca2dc80 --- /dev/null +++ b/vlm/train/IXexLXymbZ9/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01d8644ef7e7c392e3cc7f9f30861c94609806b56539641018208a6e8742871 +size 601975 diff --git a/vlm/train/IXexLXymbZ9/9.png b/vlm/train/IXexLXymbZ9/9.png new file mode 100644 index 0000000000000000000000000000000000000000..734bbe94de4d0b9b9ec32bb99286f3749d65f235 --- /dev/null +++ b/vlm/train/IXexLXymbZ9/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2792152b87e4066a27daeb922ff70cdadf874768dbc9cc61ac48e83d875b48cd +size 594533 diff --git a/vlm/train/MXmmuhJYPdU/0.png b/vlm/train/MXmmuhJYPdU/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ac130f55240f6581bc8afa7803f26b7e7a69e35d --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c944b4b94bc013f0fc1c64535fd5e06b1dc6cd7bbcc9034ca56064f15227136 +size 463567 diff --git a/vlm/train/MXmmuhJYPdU/1.png b/vlm/train/MXmmuhJYPdU/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c71513b6aae434bfed2dcd64691610209d55c3ce --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2e6202fd44fbf1a3346bb021f5b227bd6cbc5e3db5cac665580f6963adbaa8 +size 907071 diff --git a/vlm/train/MXmmuhJYPdU/10.png b/vlm/train/MXmmuhJYPdU/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1f1c3ecc1c69aaa5677bd34bac9ba6fa217e88ff --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca21a37c8db9a10e0282cb014cb4ad1187b6867fb2b54066b539403bedd2a73e +size 615098 diff --git a/vlm/train/MXmmuhJYPdU/11.png b/vlm/train/MXmmuhJYPdU/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a1beeee6bf825ac18cc5a4ca29cdb137b85a6cb3 --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7205972d92ef720c6bdf44c7f2f7c8460be0f1f1b887356a288a477b9e9a1269 +size 432055 diff --git a/vlm/train/MXmmuhJYPdU/2.png b/vlm/train/MXmmuhJYPdU/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4a8579b1944342efdad373cbbb07961af653f98f --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83068d0f4c2735138ec25958adb5344948ea4f86a20c68b6a19d8ec11eb1519 +size 540680 diff --git a/vlm/train/MXmmuhJYPdU/3.png b/vlm/train/MXmmuhJYPdU/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4c7cb1e09bf30d09b0215a07ee6e66ba571a6982 --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc137d7df59416f83dc4406dd66b5b2367290a4c836b2942d134e21b51f298a4 +size 635136 diff --git a/vlm/train/MXmmuhJYPdU/4.png b/vlm/train/MXmmuhJYPdU/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cf343a0527b47d95e494f781e252e8f9edaa9c58 --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e884627f3fd6aa57df2cc204baed3ff786db7baaff17c8b1ed64848a094d7323 +size 822085 diff --git a/vlm/train/MXmmuhJYPdU/5.png b/vlm/train/MXmmuhJYPdU/5.png new file mode 100644 index 0000000000000000000000000000000000000000..45cf7806fc5298bf104563dfa4323df1c01e4801 --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f29550105fea5a36a113cb93705b9326e687ea719cfb4385de6ea02276c57dcb +size 560835 diff --git a/vlm/train/MXmmuhJYPdU/6.png b/vlm/train/MXmmuhJYPdU/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6dfe67dcdee096760e2925a8188edd9a4717f2f3 --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8e9ba67e7f75ee718f0203a3fe106626224daf9880d8d553e5636dcd16b070 +size 560783 diff --git a/vlm/train/MXmmuhJYPdU/7.png b/vlm/train/MXmmuhJYPdU/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7060ed774c5ccb267424cf9929d5a758ecf3a086 --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bd9d55800a30f102d283f6d232d556d9f8f7633950532e906b99bdbc44cfd92 +size 888203 diff --git a/vlm/train/MXmmuhJYPdU/8.png b/vlm/train/MXmmuhJYPdU/8.png new file mode 100644 index 0000000000000000000000000000000000000000..79d985cf857b57ea35365a1e317d0266f1de8079 --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244af8207be25e7b4defb876ed8089d37e47a7515993b64d63b146de190a9f21 +size 641908 diff --git a/vlm/train/MXmmuhJYPdU/9.png b/vlm/train/MXmmuhJYPdU/9.png new file mode 100644 index 0000000000000000000000000000000000000000..aa53d7a4c0525747fec74b9213c9ce0fdda31de4 --- /dev/null +++ b/vlm/train/MXmmuhJYPdU/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2303c9dce5c4fead33903d6602ef4b6f263d5c9bb1f6ee9ea714fa3833c13cfd +size 923139 diff --git a/vlm/train/N1i6BJzouX4/0.png b/vlm/train/N1i6BJzouX4/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4523ac3bb8cc04178db82ecf650ab6f1228a61a6 --- /dev/null +++ b/vlm/train/N1i6BJzouX4/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115b544de4376ffa3bf11f5550af7eaf532736d26790c34ce071e7588ce315f1 +size 457526 diff --git a/vlm/train/N1i6BJzouX4/1.png b/vlm/train/N1i6BJzouX4/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ae35c7401d9677e85122346082495d9b0bccfd85 --- /dev/null +++ b/vlm/train/N1i6BJzouX4/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e75f7e80dc8a895927feee1d9390458ba44ed267adc156e2d6605ff908000e +size 732198 diff --git a/vlm/train/N1i6BJzouX4/10.png b/vlm/train/N1i6BJzouX4/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f700897515a0ae74402755b04ffc5a9f3fca2b81 --- /dev/null +++ b/vlm/train/N1i6BJzouX4/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:556e79dabfb483e27ff6fdbbbed183cfadd31a0c3e9e20fe78eedde04032d5c9 +size 575885 diff --git a/vlm/train/N1i6BJzouX4/11.png b/vlm/train/N1i6BJzouX4/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9cbbd2458ca692bd33c84a30affa701cd7358ae9 --- /dev/null +++ b/vlm/train/N1i6BJzouX4/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab01b74a56f829bf7a35e753e5f107ec8550586797b8e553712e8409a79cfe2 +size 624102 diff --git a/vlm/train/N1i6BJzouX4/12.png b/vlm/train/N1i6BJzouX4/12.png new file mode 100644 index 0000000000000000000000000000000000000000..31fd1b703455201d02129808d79449787ea6014c --- /dev/null +++ b/vlm/train/N1i6BJzouX4/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ced823eee18ffc73e186872a8e02f6acc410d5d8bdffec51cd21940cd060d7 +size 248662 diff --git a/vlm/train/N1i6BJzouX4/2.png b/vlm/train/N1i6BJzouX4/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6bfcbf825bc23e53a03d446db6b8ca0315599142 --- /dev/null +++ b/vlm/train/N1i6BJzouX4/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6313d569637d93e9db74d9010016cc7d2befe5116ae6b415bb75633024afbbe +size 621980 diff --git a/vlm/train/N1i6BJzouX4/3.png b/vlm/train/N1i6BJzouX4/3.png new file mode 100644 index 0000000000000000000000000000000000000000..760e61980bb792d32191df537c0e277ae78af03f --- /dev/null +++ b/vlm/train/N1i6BJzouX4/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7046e2f0fe898b7642a52f6528a20cde2f34376ec63b6e52c821fdd7a8597321 +size 507782 diff --git a/vlm/train/N1i6BJzouX4/4.png b/vlm/train/N1i6BJzouX4/4.png new file mode 100644 index 0000000000000000000000000000000000000000..12ad759ab3d20467ed26828e0719af0ce6bf38c8 --- /dev/null +++ b/vlm/train/N1i6BJzouX4/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:769abf6cdf468315b0ed95acfb7a4c92f73f0ad6488bf31ba300e109f7aeb769 +size 540426 diff --git a/vlm/train/N1i6BJzouX4/5.png b/vlm/train/N1i6BJzouX4/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c79c6a6aa21efb98cced376620c146dac6494f75 --- /dev/null +++ b/vlm/train/N1i6BJzouX4/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553b71f9fc692e0c91255fe33d80d1434b74fc6b11ca7c25dd326d824dd984d2 +size 613358 diff --git a/vlm/train/N1i6BJzouX4/6.png b/vlm/train/N1i6BJzouX4/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ac47e10ca335328fc8b67d46597db3451659fbea --- /dev/null +++ b/vlm/train/N1i6BJzouX4/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5b36210774c724bcc9b1fcec9324428f445111c9e2bf38c038136245def74d +size 577712 diff --git a/vlm/train/N1i6BJzouX4/7.png b/vlm/train/N1i6BJzouX4/7.png new file mode 100644 index 0000000000000000000000000000000000000000..313e7a01916a954edd576652bf15d6016e685baa --- /dev/null +++ b/vlm/train/N1i6BJzouX4/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec6c0d0fcc6a0d98a318b50413f689f95fb96077e2768e69460f1081b4ea4851 +size 524892 diff --git a/vlm/train/N1i6BJzouX4/8.png b/vlm/train/N1i6BJzouX4/8.png new file mode 100644 index 0000000000000000000000000000000000000000..92e08c05232162d736d87f04bc00d2e2f32ca6fb --- /dev/null +++ b/vlm/train/N1i6BJzouX4/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:218615d982ec2d02562949f34cc56db0e4496c452d2ce569d9b7a7b81c8d9f07 +size 573464 diff --git a/vlm/train/N1i6BJzouX4/9.png b/vlm/train/N1i6BJzouX4/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4e9b5ca3e21f80bb7f602b40138a2d5d2a54eafd --- /dev/null +++ b/vlm/train/N1i6BJzouX4/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76fe033d86397bb30b7735142b495162382a4b2858259b2c164d5c67bf938899 +size 859996 diff --git a/vlm/train/OU98jZWS3x_/0.png b/vlm/train/OU98jZWS3x_/0.png new file mode 100644 index 0000000000000000000000000000000000000000..727a99608d075fd21dc7bfeafe046041ed5a1ec6 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13490889ac70a5fb1c318d488e62110d6267079fcd1cc5a9c13e7aa15e4cae57 +size 1208717 diff --git a/vlm/train/OU98jZWS3x_/1.png b/vlm/train/OU98jZWS3x_/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7aff373b289a52f23f48e9ef172ffad6106f6588 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e38698cf94cd2c52acd8d58a09c73a7ec7c51106b53356fbc3e7cf6a6f51dc76 +size 627065 diff --git a/vlm/train/OU98jZWS3x_/10.png b/vlm/train/OU98jZWS3x_/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6966bb251c3d267c67c0a1547b4a694ed3d26b2b --- /dev/null +++ b/vlm/train/OU98jZWS3x_/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2249b119a3a1f735f91117546deba8ba60d161237e0d4a28d5e9daddc494378e +size 513294 diff --git a/vlm/train/OU98jZWS3x_/11.png b/vlm/train/OU98jZWS3x_/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5c6b249f8012e8915e1150e601c2fbab05456319 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b83328fc9ab53c3b18e2d7c8e38ae7e8a5ab47c075924aee076c1d1ee94440 +size 526083 diff --git a/vlm/train/OU98jZWS3x_/12.png b/vlm/train/OU98jZWS3x_/12.png new file mode 100644 index 0000000000000000000000000000000000000000..dff0e140bb55b2511ad12ce288469169c111e613 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f0e6fa5628dd5ab21390e7647dfb265c0cbd1ac0778f6e12f1c8c8b920077b +size 537296 diff --git a/vlm/train/OU98jZWS3x_/13.png b/vlm/train/OU98jZWS3x_/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e8e2ae7303659ca9c29313806c2a9215326d17a9 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10655e529daf0388fc9967bd4956abf292db34b4ce38ebe8301acafe513b0984 +size 93428 diff --git a/vlm/train/OU98jZWS3x_/14.png b/vlm/train/OU98jZWS3x_/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a23248c77bb01eaa16e152396d4d3263837fe3c1 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6cb336a5e578f73a1800f5ac8e7fc3f85743688b9427f51fa8900c917233ec +size 407627 diff --git a/vlm/train/OU98jZWS3x_/2.png b/vlm/train/OU98jZWS3x_/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f6888b3896dcb40a6b9a573df6136813ea5043d6 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee355d07d2d3013f026fbf10202c03f3dad6e8c72b2c19901e422279fe351603 +size 629099 diff --git a/vlm/train/OU98jZWS3x_/3.png b/vlm/train/OU98jZWS3x_/3.png new file mode 100644 index 0000000000000000000000000000000000000000..03f602081669991ad64e35eb64398cfb60284f83 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f55b80e04a6fef5c3f99c1b736e1b24ec35112d8ad4187dd0a8e222949a0e486 +size 451873 diff --git a/vlm/train/OU98jZWS3x_/4.png b/vlm/train/OU98jZWS3x_/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4dc13c153152bbfdc21e184f3fa7c150a2573065 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c64f42ab5c8e3efc182f94b6c2299307504bd607111caf2f4b78512723dde6 +size 869018 diff --git a/vlm/train/OU98jZWS3x_/5.png b/vlm/train/OU98jZWS3x_/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4965462dee6cfd8f979ad579ba2bb7046596b0df --- /dev/null +++ b/vlm/train/OU98jZWS3x_/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3d54009e7e56c6a5f8e82fe21dec7eb6b40334da8b5154d4b9e36381874d9a +size 472962 diff --git a/vlm/train/OU98jZWS3x_/6.png b/vlm/train/OU98jZWS3x_/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3a48b90dd3c236053e75d8f41eca75a8d9d81d8e --- /dev/null +++ b/vlm/train/OU98jZWS3x_/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ca932b5a5b2f6f0a9b80e0737d31b8504f5e427b20dbfb074863322eee82ba5 +size 545835 diff --git a/vlm/train/OU98jZWS3x_/7.png b/vlm/train/OU98jZWS3x_/7.png new file mode 100644 index 0000000000000000000000000000000000000000..550e78946ad69aa6760fbd6799c523bca6e34000 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f50edaef0c3244856da7c8375f47f7091507505971ea21f5d75f83af0528be03 +size 1759749 diff --git a/vlm/train/OU98jZWS3x_/8.png b/vlm/train/OU98jZWS3x_/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b357afc608cab8640d64fdbb5efe393df03af7 --- /dev/null +++ b/vlm/train/OU98jZWS3x_/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e46bd1aaf6f3a4016fdc4a999ee055db37efef9e1bf37657861d8e9e7e6ed7 +size 572563 diff --git a/vlm/train/OU98jZWS3x_/9.png b/vlm/train/OU98jZWS3x_/9.png new file mode 100644 index 0000000000000000000000000000000000000000..498937efed6436145f63275469de7a84d24607cc --- /dev/null +++ b/vlm/train/OU98jZWS3x_/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9842eecbe4bf7f7064c5d2a09249e8db36fd79f78dfe629c19f9717d6056f1bd +size 526121 diff --git a/vlm/train/S1GkToR5tm/0.png b/vlm/train/S1GkToR5tm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..da7f108070215ae7f6debd005c12ab59ec5be631 --- /dev/null +++ b/vlm/train/S1GkToR5tm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b2e769742d1613916a760e58470485a78eedc8364716e2e99da5797fcba0f3 +size 497815 diff --git a/vlm/train/S1GkToR5tm/1.png b/vlm/train/S1GkToR5tm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..323a8208a98138470c9a97a9c3db36d1d761b488 --- /dev/null +++ b/vlm/train/S1GkToR5tm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d421ac66271c4099d901094cfc7994002832d2350691386b152e0a403b91d15 +size 497226 diff --git a/vlm/train/S1GkToR5tm/10.png b/vlm/train/S1GkToR5tm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7c12abf869d27cc579c7119e45ccc54a736151d3 --- /dev/null +++ b/vlm/train/S1GkToR5tm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e0c1b4bfa5f176a6c8f0ca8db55476a83bc960c56bf8ee47da55ad86d32f71 +size 446972 diff --git a/vlm/train/S1GkToR5tm/11.png b/vlm/train/S1GkToR5tm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c320be344a71975adbcfbe0e8106d8d24085b2f4 --- /dev/null +++ b/vlm/train/S1GkToR5tm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29ee5d52ebcd8b6b4182bf22dbfe5816444ec55f3a323b2178c47afce7f3e66 +size 431252 diff --git a/vlm/train/S1GkToR5tm/12.png b/vlm/train/S1GkToR5tm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..493e1b4d104970615fb96ec098410e0c1630df39 --- /dev/null +++ b/vlm/train/S1GkToR5tm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cab5f0b16df84bf371c5ee115c4dd603c1fc0f38bcd2333d004aa91f91a8b64 +size 2106287 diff --git a/vlm/train/S1GkToR5tm/13.png b/vlm/train/S1GkToR5tm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d67735905809e9cb0f0894b0b71cb086ae5f7e04 --- /dev/null +++ b/vlm/train/S1GkToR5tm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9902296492f0e04ca16741e1dec55350064c73c63acadc1cf511408ae9c1e3a9 +size 2475410 diff --git a/vlm/train/S1GkToR5tm/14.png b/vlm/train/S1GkToR5tm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3e73ccc2208cde2145d47c48c02b5bf27a1e88a3 --- /dev/null +++ b/vlm/train/S1GkToR5tm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35afb1015a52f593e4cb695ada062c0c48cefa054a94b584b82e4a8711eed6f2 +size 1888667 diff --git a/vlm/train/S1GkToR5tm/15.png b/vlm/train/S1GkToR5tm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6427b6ca7c4e84178a69a4f2f88887ce7bf50737 --- /dev/null +++ b/vlm/train/S1GkToR5tm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b391fd35e2bfd6b1b0b66eb10ef762c85736e8ce8c4e55e7546faff40202648f +size 1825203 diff --git a/vlm/train/S1GkToR5tm/2.png b/vlm/train/S1GkToR5tm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6873124f213879787ea9dcd60a3387e34553e05b --- /dev/null +++ b/vlm/train/S1GkToR5tm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00557d99649f1533e20bac0d41a97728a0cb27bc6746cf3dc3ff025302fb4f6 +size 473501 diff --git a/vlm/train/S1GkToR5tm/3.png b/vlm/train/S1GkToR5tm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..adc0f790169bbb147a9fa5ea3a1a998b63e8beb5 --- /dev/null +++ b/vlm/train/S1GkToR5tm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b39ae668ab5e05a12d29b57dfb5819c6b43822855da0e346b1cfe405ee2e08 +size 475010 diff --git a/vlm/train/S1GkToR5tm/4.png b/vlm/train/S1GkToR5tm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9ba58226758d1f6e97d2443dbc444f44cd5af157 --- /dev/null +++ b/vlm/train/S1GkToR5tm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed7e2a59e5d19019eee96e1a1e06e472b63aed149ca6798a50aa21936d8c2f5 +size 459257 diff --git a/vlm/train/S1GkToR5tm/5.png b/vlm/train/S1GkToR5tm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e427c810ebc91bd483af24350ef34d4cc2edb3f3 --- /dev/null +++ b/vlm/train/S1GkToR5tm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51696e434e1c4f91b539389e24f8e2a5586361e4e2f3657d363747a018c1f269 +size 547481 diff --git a/vlm/train/S1GkToR5tm/6.png b/vlm/train/S1GkToR5tm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f2310b1289e14e0a352864276d70c4a1b0cce569 --- /dev/null +++ b/vlm/train/S1GkToR5tm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92abadd0424ec27d0af145757c674093dc269b2406d53a064febf360992c82d1 +size 490690 diff --git a/vlm/train/S1GkToR5tm/7.png b/vlm/train/S1GkToR5tm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c4a1d9fae3113a37553351f02dcfc54fc36fa3fd --- /dev/null +++ b/vlm/train/S1GkToR5tm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91d11b11f6af3fb2adafbad62474142edaefa8c63251c744f884f51a419f5861 +size 1689830 diff --git a/vlm/train/S1GkToR5tm/8.png b/vlm/train/S1GkToR5tm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..355d80691a145a7250ba053d04ca40579586cf59 --- /dev/null +++ b/vlm/train/S1GkToR5tm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82bf3dc55e57f4c93d9d6c72f53cd728fef2bd577861aaa95e31ed875eb03102 +size 532578 diff --git a/vlm/train/S1GkToR5tm/9.png b/vlm/train/S1GkToR5tm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4dbd9b53da59ba99e1758bf31ab46594e2d6b8c3 --- /dev/null +++ b/vlm/train/S1GkToR5tm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253034c500f9f9514caf5af9ec557327d3ab15b1f248ed59dda733f3f001c767 +size 473311 diff --git a/vlm/train/S1c2cvqee/0.png b/vlm/train/S1c2cvqee/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cf4dd4b12a35625d5286b53eaa6f16d9ef7a7598 --- /dev/null +++ b/vlm/train/S1c2cvqee/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78fa5ff29c80164bea8ee7d42f4a76317c93f6f4465651b49521bcbd3a051bd8 +size 500979 diff --git a/vlm/train/S1c2cvqee/1.png b/vlm/train/S1c2cvqee/1.png new file mode 100644 index 0000000000000000000000000000000000000000..94e94c1de773d55f4eb20cd24b6428aa343f223e --- /dev/null +++ b/vlm/train/S1c2cvqee/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be5b3cc9a4cd5e8b4a2bfb38d3c6e37ecf1e9ddc2866c4d25c5b15f248f72e1 +size 607292 diff --git a/vlm/train/S1c2cvqee/10.png b/vlm/train/S1c2cvqee/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9e78e4ef1ed87ca9eb067e261d7c89ce3edf2138 --- /dev/null +++ b/vlm/train/S1c2cvqee/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9336f47bec563102f1d9b174bcf721fe5acc55722565ec92ae1b70576cf59cf +size 201165 diff --git a/vlm/train/S1c2cvqee/11.png b/vlm/train/S1c2cvqee/11.png new file mode 100644 index 0000000000000000000000000000000000000000..3013caf7a43887ebc96ea3b512ae361d0b821cc7 --- /dev/null +++ b/vlm/train/S1c2cvqee/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9673e7e0c461be5f5f3566ba792658c456bbcbf39af3bc2a8bc1a30c4e9590ed +size 317835 diff --git a/vlm/train/S1c2cvqee/12.png b/vlm/train/S1c2cvqee/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c90ee3e515e73d2a924dc76993f28592544ad45d --- /dev/null +++ b/vlm/train/S1c2cvqee/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3188c9f46fb4a7f819e8d5e5f941c372dc54965d1de23d727f0bf237259af74d +size 457828 diff --git a/vlm/train/S1c2cvqee/13.png b/vlm/train/S1c2cvqee/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b5f7841d351f968ac47e9bd144ada1cdf629b91b --- /dev/null +++ b/vlm/train/S1c2cvqee/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05dcb7b7534b584b0822c7d4e85c5a48242457fa13000f7b209d5e8c13704c5b +size 444246 diff --git a/vlm/train/S1c2cvqee/14.png b/vlm/train/S1c2cvqee/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f5529757d09b5e092c43b6c9a3e502e1ae08a2f7 --- /dev/null +++ b/vlm/train/S1c2cvqee/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4362052a83232645544c4a64438cfa43c70978e16b98fcf5e498053e4c32624 +size 333498 diff --git a/vlm/train/S1c2cvqee/15.png b/vlm/train/S1c2cvqee/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f665a26358272b35920da28740e41484d4be5835 --- /dev/null +++ b/vlm/train/S1c2cvqee/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03c4492fec396ab995278b1c27630a84d170f233f74891e485113a20ce1841d +size 230936 diff --git a/vlm/train/S1c2cvqee/16.png b/vlm/train/S1c2cvqee/16.png new file mode 100644 index 0000000000000000000000000000000000000000..80f57a826530ec1ccfd542e8a7838299199d136f --- /dev/null +++ b/vlm/train/S1c2cvqee/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b87befa80b5f0f1189ec05ec454746c4fc1c5cffe3c6f17265a0310c4a44676 +size 231658 diff --git a/vlm/train/S1c2cvqee/17.png b/vlm/train/S1c2cvqee/17.png new file mode 100644 index 0000000000000000000000000000000000000000..7e82ffe3fad2aee3cd6787dfbfe261d403cee503 --- /dev/null +++ b/vlm/train/S1c2cvqee/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5a766e218653d3d11c069e6d6f7a968ae5903a30346114ce615397a7f62743 +size 327017 diff --git a/vlm/train/S1c2cvqee/2.png b/vlm/train/S1c2cvqee/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2fab1e34224d53fdea9a720559f27b164fd2d3b0 --- /dev/null +++ b/vlm/train/S1c2cvqee/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4290c5b8006eff49afb614cf183e2476e54322dff0bf1aac82736830b6b97f21 +size 583950 diff --git a/vlm/train/S1c2cvqee/3.png b/vlm/train/S1c2cvqee/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3ec70eb814e734d01c2fc502eec36c6a59604f55 --- /dev/null +++ b/vlm/train/S1c2cvqee/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09115f163abd61c1a6475e963cd3edf2dea5194fefc89d45063f8d535ca7df2f +size 565363 diff --git a/vlm/train/S1c2cvqee/4.png b/vlm/train/S1c2cvqee/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ca552e9ae119b47dec074577298ee42465b55327 --- /dev/null +++ b/vlm/train/S1c2cvqee/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a5ffd95c2d5c56b7d3547db67dd24ec3287825bdaf3383362e2ad9ca53855f3 +size 518762 diff --git a/vlm/train/S1c2cvqee/5.png b/vlm/train/S1c2cvqee/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bc050ef25c785a9715dea8dae5b26517f928481e --- /dev/null +++ b/vlm/train/S1c2cvqee/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed888fcf93d8ff9c8b812f63573a465dbdd119773af64924799ee1e261a815a +size 533175 diff --git a/vlm/train/S1c2cvqee/6.png b/vlm/train/S1c2cvqee/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0e64cea6e6663f5c1d5a3199e87f8b6ae2a8ff1b --- /dev/null +++ b/vlm/train/S1c2cvqee/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6c7d99a87dc4b711a0e893f0c1d49627371e1f99ae45805d95963aa92ba4e8 +size 560743 diff --git a/vlm/train/S1c2cvqee/7.png b/vlm/train/S1c2cvqee/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7bcd08b87e882a8a7fadb6e3926d6608839f22a4 --- /dev/null +++ b/vlm/train/S1c2cvqee/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b900acebb7a655e943089a1c16f875225a517754f8a1cfd41cacddd4ed02752 +size 518281 diff --git a/vlm/train/S1c2cvqee/8.png b/vlm/train/S1c2cvqee/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f827fd77a8ab9eae3f30d6c1b822b9c10b217096 --- /dev/null +++ b/vlm/train/S1c2cvqee/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1d6b2cd4e432e50f7e72a75045e86665e11cabd19aecd933b9683f7d240e9c +size 492103 diff --git a/vlm/train/S1c2cvqee/9.png b/vlm/train/S1c2cvqee/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a6f75771d9839f3d317c2a9f259c609ce3ab0f0e --- /dev/null +++ b/vlm/train/S1c2cvqee/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb75da6d14a92a97d2348c11bd7246871b6c03bb3a5e7f7a5686f29ff32a23f +size 517740 diff --git a/vlm/train/S1vuO-bCW/0.png b/vlm/train/S1vuO-bCW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..32d2edb161f4bc7313c17d02bb95811749c4a186 --- /dev/null +++ b/vlm/train/S1vuO-bCW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a2c817b71e3b35ae167542188138c56ce2b14820ad710cec69c1284e4aa300 +size 501334 diff --git a/vlm/train/S1vuO-bCW/1.png b/vlm/train/S1vuO-bCW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dc45964ae26a77b0bee544d76111ed6f395c33af --- /dev/null +++ b/vlm/train/S1vuO-bCW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbd81da54257dc74ba4939b36c46366a1a80dc66d00e1db054612851de856a8 +size 607392 diff --git a/vlm/train/S1vuO-bCW/10.png b/vlm/train/S1vuO-bCW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..392d3a6c94e335203a64b874bc910d8248f728da --- /dev/null +++ b/vlm/train/S1vuO-bCW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee69e3b6f17ff4917e02ac30c3225bfca7782dd2ba5a6fb3d9fc2349966df90f +size 109177 diff --git a/vlm/train/S1vuO-bCW/11.png b/vlm/train/S1vuO-bCW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d53787f814cc21e45b9e2766c78df1ba336c64b3 --- /dev/null +++ b/vlm/train/S1vuO-bCW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3d4f798539ed4621ef5b4758cd1e0ae54d4f444613d9307eeff54732392e91 +size 409239 diff --git a/vlm/train/S1vuO-bCW/12.png b/vlm/train/S1vuO-bCW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..956245685aa0504f9a32230928a0853e1672f9c3 --- /dev/null +++ b/vlm/train/S1vuO-bCW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a59ffd4eb5c97877bcd53154be660269490474f3e190b61829f585b0c0dd6b +size 365578 diff --git a/vlm/train/S1vuO-bCW/13.png b/vlm/train/S1vuO-bCW/13.png new file mode 100644 index 0000000000000000000000000000000000000000..81868be930a809c616300199f3d6859a03d3c880 --- /dev/null +++ b/vlm/train/S1vuO-bCW/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be146d9440084826b334769481905ae7c54510e4b7c58a129357ea79a6304f18 +size 479746 diff --git a/vlm/train/S1vuO-bCW/14.png b/vlm/train/S1vuO-bCW/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0db06a10aa2046e766e752f2d79684a798c0c396 --- /dev/null +++ b/vlm/train/S1vuO-bCW/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5a1223ad96079f9935b23e10d53d4010c6c460e70c3e3a97d466a49bf51822 +size 585658 diff --git a/vlm/train/S1vuO-bCW/15.png b/vlm/train/S1vuO-bCW/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e2dbbd72f5e53c6267a165f033948732c67bc0f8 --- /dev/null +++ b/vlm/train/S1vuO-bCW/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6579682819d4e2e418954cebf3a8ba9f0d0b082f39a225b4cd7ed1543d96596f +size 643957 diff --git a/vlm/train/S1vuO-bCW/16.png b/vlm/train/S1vuO-bCW/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8b790bc241c88585fe606559f40ebea3ceec56d9 --- /dev/null +++ b/vlm/train/S1vuO-bCW/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1288204ab3b89ed018ed78ecc8ba4d8a6b5bce6015a4941dceff8b300da4ddc1 +size 545324 diff --git a/vlm/train/S1vuO-bCW/17.png b/vlm/train/S1vuO-bCW/17.png new file mode 100644 index 0000000000000000000000000000000000000000..8561bd96c55c7117344683e3b2253a2725922664 --- /dev/null +++ b/vlm/train/S1vuO-bCW/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d92e26ab8cd1cc05cd6e5d45ecd9190dd791a13f8b57a204a429fd221fd59a +size 291333 diff --git a/vlm/train/S1vuO-bCW/2.png b/vlm/train/S1vuO-bCW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ae019d2fcf7712cc0fc4ae31649a493625016750 --- /dev/null +++ b/vlm/train/S1vuO-bCW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff1293152911e1654c95ba6af7e4032319b53909eb21f7854ab8fa5ca7a0f08 +size 537026 diff --git a/vlm/train/S1vuO-bCW/3.png b/vlm/train/S1vuO-bCW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..776378a3a30517ca5f3307429c91596507c64b74 --- /dev/null +++ b/vlm/train/S1vuO-bCW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b226954792d64c163ee43d4356934d1ee415ca05cbd75d46cbcad756a4c279d +size 489498 diff --git a/vlm/train/S1vuO-bCW/4.png b/vlm/train/S1vuO-bCW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9d2dc0824c32e4d962dcd60b5878fb020e2a890f --- /dev/null +++ b/vlm/train/S1vuO-bCW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f766d3861855e9726a3abfd1224cc35b59e44a86faee415a3671f07e73d243b +size 552830 diff --git a/vlm/train/S1vuO-bCW/5.png b/vlm/train/S1vuO-bCW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c65ac1a00fa98148f4d91246a255d5e2e2c7398f --- /dev/null +++ b/vlm/train/S1vuO-bCW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349c312bb5f5621324aec140fe4bbc55d78a5333f89884905815dcd1014b7cf5 +size 579764 diff --git a/vlm/train/S1vuO-bCW/6.png b/vlm/train/S1vuO-bCW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0140662a21ded250dfa94582cbb52e951064996e --- /dev/null +++ b/vlm/train/S1vuO-bCW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60852dfadacadd6ebf4ccb944581dc8c2dfcb0c9b7c59752a5a187f1634d6536 +size 625680 diff --git a/vlm/train/S1vuO-bCW/7.png b/vlm/train/S1vuO-bCW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..605c8a92fe41f666087176fea82e632a7ecafe52 --- /dev/null +++ b/vlm/train/S1vuO-bCW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404ca3e9eb6dbffe44f198dfeb1770ada381102644e439bdb3e6d4854e64a4e3 +size 808880 diff --git a/vlm/train/S1vuO-bCW/8.png b/vlm/train/S1vuO-bCW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2b18297812c08c37e91b6ee815a45ad113af18f6 --- /dev/null +++ b/vlm/train/S1vuO-bCW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39c6803cfe6e916da7f1c2e2d35c5197f7c61a123e5a743686bbc0a5a15861d +size 508043 diff --git a/vlm/train/S1vuO-bCW/9.png b/vlm/train/S1vuO-bCW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c48b552f8eb028d2fe89d13be80ec8ad44c4828d --- /dev/null +++ b/vlm/train/S1vuO-bCW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f86c5d51169ee2c778eae2889fceb098c3556324a2fc6260c3a80dbf9396a86 +size 556727 diff --git a/vlm/train/SJICXeWAb/0.png b/vlm/train/SJICXeWAb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1259c6f45c857f9826acf63eb7926be0d1ec0c1e --- /dev/null +++ b/vlm/train/SJICXeWAb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e9d067b3493a537b2965ca21f191e1fc82d82d2c12d51e70253d84da72bf5a1 +size 499264 diff --git a/vlm/train/SJICXeWAb/1.png b/vlm/train/SJICXeWAb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8f4b230681c3a3d7e08a8959b8ee62b6cb4152f1 --- /dev/null +++ b/vlm/train/SJICXeWAb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea67d85b7cd1b23d472b058c36a38b85c03db3588fcc5ef0ca16b11a7bbc9345 +size 585647 diff --git a/vlm/train/SJICXeWAb/10.png b/vlm/train/SJICXeWAb/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a379d18c4c38638310f50fca7a990f8a2bb66a3f --- /dev/null +++ b/vlm/train/SJICXeWAb/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7244e0ece07dbe61c6bbae991f4ca1704330833507b068bedb01e73bf5ce66b +size 306281 diff --git a/vlm/train/SJICXeWAb/11.png b/vlm/train/SJICXeWAb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..33fe52e8a31276afc09f6b41b9730b67808a83f2 --- /dev/null +++ b/vlm/train/SJICXeWAb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a035ef065689d510a4d35261bfffa16b9ed4cfa5d222f6bd2dc0093914b33b +size 57499 diff --git a/vlm/train/SJICXeWAb/2.png b/vlm/train/SJICXeWAb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5af16866c232916079071f54186b5e444913d3b6 --- /dev/null +++ b/vlm/train/SJICXeWAb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e9151535dedf166c9e9543f685b248f59489aff53bd2986a715bf481b1f2c2 +size 456327 diff --git a/vlm/train/SJICXeWAb/3.png b/vlm/train/SJICXeWAb/3.png new file mode 100644 index 0000000000000000000000000000000000000000..78cdc02a0cbe03e32b3f1be5659379e306c62a42 --- /dev/null +++ b/vlm/train/SJICXeWAb/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244d8d70e25bfc107ba48cb2989b314a7e147e279f7158a220cdea3282fa4862 +size 482713 diff --git a/vlm/train/SJICXeWAb/4.png b/vlm/train/SJICXeWAb/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d156161d0459b1f847a6e9b6af188527bf7bff5c --- /dev/null +++ b/vlm/train/SJICXeWAb/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:391b68dae96e4b149380f0c50a867c108a0236b4fef7d79f3b493820a1d69e04 +size 606541 diff --git a/vlm/train/SJICXeWAb/5.png b/vlm/train/SJICXeWAb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..020ebee8e4600ed152f58cd388b32f4602c5cfe6 --- /dev/null +++ b/vlm/train/SJICXeWAb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c963d7f1e79a36664eb0097fd1dafbf511bdd354c3b65fca732f05a53d19607 +size 541818 diff --git a/vlm/train/SJICXeWAb/6.png b/vlm/train/SJICXeWAb/6.png new file mode 100644 index 0000000000000000000000000000000000000000..451953487ebfc01efd4bd5f3b8362a38a669edbe --- /dev/null +++ b/vlm/train/SJICXeWAb/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87090eaf66b3591ee5f7fd4bb3d92e3e12c763ba71b31a704c2e2608dc458c65 +size 430398 diff --git a/vlm/train/SJICXeWAb/7.png b/vlm/train/SJICXeWAb/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c1a211cc37961d094af93cb59238ac86c06d03d5 --- /dev/null +++ b/vlm/train/SJICXeWAb/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddcdd95dab42569980f425fbf29e6a2cb3d93246d6b42d3b3357f387ff56dc59 +size 604437 diff --git a/vlm/train/SJICXeWAb/8.png b/vlm/train/SJICXeWAb/8.png new file mode 100644 index 0000000000000000000000000000000000000000..390a269bbd88a508caf5a904649638a38ded3af7 --- /dev/null +++ b/vlm/train/SJICXeWAb/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19052852cf0ccb2067a052fd1890fd73c9de115c220736a18b06fa3203a532a +size 548862 diff --git a/vlm/train/SJICXeWAb/9.png b/vlm/train/SJICXeWAb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d2022bdf9d5c203dd3ef6f9b04c8d1c4b67713fd --- /dev/null +++ b/vlm/train/SJICXeWAb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6d25c41e5cca3abbf4010776952962e706309e0f1dc0125962c55646aeba88f +size 321103 diff --git a/vlm/train/SJeeL04KvH/0.png b/vlm/train/SJeeL04KvH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..380f093b4d77ba1c7caa2c44b228d9caaf71d956 --- /dev/null +++ b/vlm/train/SJeeL04KvH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e9bf3d92e6e9d90d76ad8170395f017bffc471b7d7b5023f7b81fd54f73e11 +size 469176 diff --git a/vlm/train/SJeeL04KvH/1.png b/vlm/train/SJeeL04KvH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ae6d632864e0cd6fe4c6a4d22d62f773cd38f758 --- /dev/null +++ b/vlm/train/SJeeL04KvH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1552461b8646724f5ee77f13cf44a2f8f408e4a7b2485701cb00e21c313065c +size 583760 diff --git a/vlm/train/SJeeL04KvH/10.png b/vlm/train/SJeeL04KvH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..01e7ea37f1683fe95dd09805794d1302d5a4cb16 --- /dev/null +++ b/vlm/train/SJeeL04KvH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af20adbfd329228202fc5fc98109ea6c3372aad8b0b0cbdbfff50f41fb3d2b0 +size 129687 diff --git a/vlm/train/SJeeL04KvH/2.png b/vlm/train/SJeeL04KvH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..fdd3fde81b0dcbba99becb7a7cf4f3c610d69ead --- /dev/null +++ b/vlm/train/SJeeL04KvH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ff59295e1389b93342ddf02c6c761e5e67cdb19787e1c075a86ea8bf2be84c +size 581805 diff --git a/vlm/train/SJeeL04KvH/3.png b/vlm/train/SJeeL04KvH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d5af6349c5c3e28e352aa9f84b66b7d2afed66d3 --- /dev/null +++ b/vlm/train/SJeeL04KvH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993bd06dc532134251d02fa7a121bc1b70b856e3692bf0d7ee7477adf5f422ed +size 487346 diff --git a/vlm/train/SJeeL04KvH/4.png b/vlm/train/SJeeL04KvH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..47e81ce83179641f08388b508510241d8a2503b6 --- /dev/null +++ b/vlm/train/SJeeL04KvH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe1e23f43420548b96b12a46a9a18f28b67fa537fba94e5ef640675cbe717be +size 528992 diff --git a/vlm/train/SJeeL04KvH/5.png b/vlm/train/SJeeL04KvH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3a66955215cfb8867fd169b66856cb3c906e7737 --- /dev/null +++ b/vlm/train/SJeeL04KvH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5191dcf7e9a673e380fdc0f645f0f9cbd3e97ba1adf5116a0fe5ae5d1cf68d4a +size 500609 diff --git a/vlm/train/SJeeL04KvH/6.png b/vlm/train/SJeeL04KvH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..878d8e7378f73b4d23c04d85dd88c38e6e2d1466 --- /dev/null +++ b/vlm/train/SJeeL04KvH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab4b0b8911da90ac654013200af37f151c5da264d543404a4139c7ddfde31d9 +size 567831 diff --git a/vlm/train/SJeeL04KvH/7.png b/vlm/train/SJeeL04KvH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9878455c679583b5a2277acd23ea8a2795fe4cc9 --- /dev/null +++ b/vlm/train/SJeeL04KvH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe8f6f82744df0de91f69cc3a791e619eaa07f5f09d69427b5515f70ae17c80 +size 479690 diff --git a/vlm/train/SJeeL04KvH/8.png b/vlm/train/SJeeL04KvH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dc8ad74138eabddf326fc56d737422f0fa4730b9 --- /dev/null +++ b/vlm/train/SJeeL04KvH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5e9d3472a033758373e0c44d66fc7a46c249e3acd5e6c88b312fddfbae31dd +size 505796 diff --git a/vlm/train/SJeeL04KvH/9.png b/vlm/train/SJeeL04KvH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a44d63e4768f1f2aaf4ca32f1a9eaaa77191016e --- /dev/null +++ b/vlm/train/SJeeL04KvH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4424091b5de80f373bf0c66c6feacea6bb9d3d03e04553a7907f702773542a48 +size 532268 diff --git a/vlm/train/SJlhPMWAW/10.png b/vlm/train/SJlhPMWAW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8c8caf900d09ff4fff55d85f7757634b92237e4c --- /dev/null +++ b/vlm/train/SJlhPMWAW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d55f5cf5b8274d38759b4380cf7a97f2389f070257f68e068bbee7f0ffcbeb +size 491953 diff --git a/vlm/train/SJlhPMWAW/11.png b/vlm/train/SJlhPMWAW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d56b74078f8ab372d1098579943f0f96701ba65a --- /dev/null +++ b/vlm/train/SJlhPMWAW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41c5e7771bc03ef60acc51eee4fe0dfc130a8ba1b107c8886187b6040dff6111 +size 347705 diff --git a/vlm/train/SJlhPMWAW/2.png b/vlm/train/SJlhPMWAW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1f138167228012f696adfcb7a6d4de8ca9677b81 --- /dev/null +++ b/vlm/train/SJlhPMWAW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e6cd8927801a901b5d2b1620dafa9d3a61b225ec231a3cbf1e2823636efaef +size 545033 diff --git a/vlm/train/SJlhPMWAW/3.png b/vlm/train/SJlhPMWAW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..06ce1fe187e4041cd0cded2e0272d686afdd1f80 --- /dev/null +++ b/vlm/train/SJlhPMWAW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477d3b7ae0469dc30af47949e23445da9518123bd47b879ed3e51c9754977cdc +size 442812 diff --git a/vlm/train/SJlhPMWAW/6.png b/vlm/train/SJlhPMWAW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..cb87feff14a849208c026e675888c4bd49dff827 --- /dev/null +++ b/vlm/train/SJlhPMWAW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263e445ca50cbaad5221efc3037ec3b0af1228e1b4d0d86ce061fe0e5e075310 +size 464974 diff --git a/vlm/train/SJlhPMWAW/9.png b/vlm/train/SJlhPMWAW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f8ca79c46f8bb11ecc0a87be7044d4e3432a9ad6 --- /dev/null +++ b/vlm/train/SJlhPMWAW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43db92d585244dd33dac67a18c108c58a87fd52da909a5910b9f6d531d38a5aa +size 515703 diff --git a/vlm/train/SK7A5pdrgov/0.png b/vlm/train/SK7A5pdrgov/0.png new file mode 100644 index 0000000000000000000000000000000000000000..18afba2f55ef1901f4b33f513587e9d54a8868fb --- /dev/null +++ b/vlm/train/SK7A5pdrgov/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5b3b4b40770bcf8464caa5f8c6678345e9a3c10cdda77b0e752de1d6165299 +size 551536 diff --git a/vlm/train/SK7A5pdrgov/1.png b/vlm/train/SK7A5pdrgov/1.png new file mode 100644 index 0000000000000000000000000000000000000000..39167312baa93a023e475d05d521f429441c938b --- /dev/null +++ b/vlm/train/SK7A5pdrgov/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4a11d499cb7fe74a1881ea7219f4cb80e5e08e0f788853cd27004d9d1e0905 +size 709824 diff --git a/vlm/train/SK7A5pdrgov/10.png b/vlm/train/SK7A5pdrgov/10.png new file mode 100644 index 0000000000000000000000000000000000000000..84ecef5e428bd643c2c80a872bd8f2485575bac7 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:562c3d47da6b47fd4f6f32ba9119d1c1cc16686a07c92fb36038b026b04e542f +size 493767 diff --git a/vlm/train/SK7A5pdrgov/11.png b/vlm/train/SK7A5pdrgov/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8232a109847daa20f9cf5ae6f590c2acaaf55d78 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be346f364a599a60bed6d7d858944e6e08ac3b1bcc4dd8f038bb3bded5b4846 +size 553090 diff --git a/vlm/train/SK7A5pdrgov/12.png b/vlm/train/SK7A5pdrgov/12.png new file mode 100644 index 0000000000000000000000000000000000000000..fc3db334af3d938ce00f4c36d98fe4ca07ab36fc --- /dev/null +++ b/vlm/train/SK7A5pdrgov/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6665ad72a53cd1bc8c909b798486cf1c72b59600e496c13cbee2e21e253bd75e +size 83732 diff --git a/vlm/train/SK7A5pdrgov/13.png b/vlm/train/SK7A5pdrgov/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb287b1adf4536fa37b6e376af99c838fb5d54e --- /dev/null +++ b/vlm/train/SK7A5pdrgov/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793e7ab9282528c87aad0579721fdc783162fca559f125324d6621ebfc3b244a +size 713117 diff --git a/vlm/train/SK7A5pdrgov/14.png b/vlm/train/SK7A5pdrgov/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b697111635546d9b8fa84963a917c171318d236b --- /dev/null +++ b/vlm/train/SK7A5pdrgov/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6b9e9f3bc062f75b6f01399f0b34201419c59a0bcf88718d071d55f9c5312d +size 550666 diff --git a/vlm/train/SK7A5pdrgov/15.png b/vlm/train/SK7A5pdrgov/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8a434e1bb25a450dd1c89419acc8fff7f14c76fd --- /dev/null +++ b/vlm/train/SK7A5pdrgov/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0cefa11106a54338db72860bc2d224322464751c60d7f2e45bb5b5718d16911 +size 414913 diff --git a/vlm/train/SK7A5pdrgov/16.png b/vlm/train/SK7A5pdrgov/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2872d929a7e1d677f1b60a3eff18bab8b0820c35 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e3337828c4fe74e1a283842d6f9789f5a6a1b560947336a9411b176db0af6d +size 166142 diff --git a/vlm/train/SK7A5pdrgov/17.png b/vlm/train/SK7A5pdrgov/17.png new file mode 100644 index 0000000000000000000000000000000000000000..7b56eee0549bcb779f8ffd5e131b7d308bfd4f5d --- /dev/null +++ b/vlm/train/SK7A5pdrgov/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7dd219e2cc7a796a5b76bf1254c0c59de35ff5f3c22bd5e19c3356103e9ef7 +size 285433 diff --git a/vlm/train/SK7A5pdrgov/18.png b/vlm/train/SK7A5pdrgov/18.png new file mode 100644 index 0000000000000000000000000000000000000000..367f782da802fc47b146dd606364c90220a64270 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958d9627555270549c7d67623e7c7c9d89cdec0ed8b8e8379d173b58fc0e2b9f +size 281171 diff --git a/vlm/train/SK7A5pdrgov/19.png b/vlm/train/SK7A5pdrgov/19.png new file mode 100644 index 0000000000000000000000000000000000000000..49e835354675ec04a881642822870bd2f4407d33 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcfa5413b4a66e995bf5bd884686042071e241552ecfd58d91c73e7c5a99c5cc +size 472473 diff --git a/vlm/train/SK7A5pdrgov/2.png b/vlm/train/SK7A5pdrgov/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8532d50b7d9503c842bfef3300ce835fc79409a9 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6b9cd6ec96958b44837192110e47f84ff29619e9e539e9b7ea97021b58d0f8 +size 438497 diff --git a/vlm/train/SK7A5pdrgov/3.png b/vlm/train/SK7A5pdrgov/3.png new file mode 100644 index 0000000000000000000000000000000000000000..41923620130e2c32480890f6f41a6b4f3d1e8cc6 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e63f1f14eab3c6d3219c75c7601b45a2cd17601ee0c870c44312e5e54765967a +size 602538 diff --git a/vlm/train/SK7A5pdrgov/4.png b/vlm/train/SK7A5pdrgov/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b30b52becfa708ef80eea927536c6041c0547b68 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7140815e58bb7e398b1f529bb8699e113994ebcdf74947da1932074754d0ed +size 573383 diff --git a/vlm/train/SK7A5pdrgov/5.png b/vlm/train/SK7A5pdrgov/5.png new file mode 100644 index 0000000000000000000000000000000000000000..0d646fa50a3bb97c4ac289e3e11c5e6665f5f2e1 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6350f96571bb6ffbcfe8af845095315ca0411b6ff29ae1d812d5e398e041d336 +size 485028 diff --git a/vlm/train/SK7A5pdrgov/6.png b/vlm/train/SK7A5pdrgov/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8b18950f8d9a41605fed2664888e0b1aebba4111 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28657157310f45e941124858c95113ef85e48a9ee3ceca975f34ce38a457bb76 +size 537651 diff --git a/vlm/train/SK7A5pdrgov/7.png b/vlm/train/SK7A5pdrgov/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4303676775439ccdd8f6976a3b986d4763c7458d --- /dev/null +++ b/vlm/train/SK7A5pdrgov/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab6cc57633121c70c2d930af13aacfb2aa44ee2a51ed4a040349e67a8f5f35f +size 455691 diff --git a/vlm/train/SK7A5pdrgov/8.png b/vlm/train/SK7A5pdrgov/8.png new file mode 100644 index 0000000000000000000000000000000000000000..025d9904a0b5a0f2bfb0c7da7d144a68e0c11901 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f446118e54ef74d103756715b7cb4bd9f447aa1da51cea3a6495feaababa66 +size 471437 diff --git a/vlm/train/SK7A5pdrgov/9.png b/vlm/train/SK7A5pdrgov/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3e3db1b868359055e7abea1358b88adc283fe0 --- /dev/null +++ b/vlm/train/SK7A5pdrgov/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f7ce2b4eb8ef4cb88ccc5863cfe199682b3aa698f490751418a19604c95427 +size 526271 diff --git a/vlm/train/Sk-oDY9ge/0.png b/vlm/train/Sk-oDY9ge/0.png new file mode 100644 index 0000000000000000000000000000000000000000..53d6a2afa9f1393e86ff76f37f0f641bf7730d15 --- /dev/null +++ b/vlm/train/Sk-oDY9ge/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05de1abe8839dfc3f4ec326e68d7d4cb9553d891dd3647e0bc39b44aca4327be +size 445157 diff --git a/vlm/train/Sk-oDY9ge/1.png b/vlm/train/Sk-oDY9ge/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d6859a5ad46aabbd906adcf65eefbd508919ee61 --- /dev/null +++ b/vlm/train/Sk-oDY9ge/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6d9a568afd5287d9282da0a849364e6249eae5e22bc51a7bb4b42284b38105 +size 637951 diff --git a/vlm/train/Sk-oDY9ge/10.png b/vlm/train/Sk-oDY9ge/10.png new file mode 100644 index 0000000000000000000000000000000000000000..19510151f126e64e00b91227bbd234e89b995af9 --- /dev/null +++ b/vlm/train/Sk-oDY9ge/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f023dd815c0a3da9524c9c74025a45051ade7d1487599d6cdad01ec3bfd170b4 +size 315226 diff --git a/vlm/train/Sk-oDY9ge/2.png b/vlm/train/Sk-oDY9ge/2.png new file mode 100644 index 0000000000000000000000000000000000000000..eb2033f3bf213616f7f00a2714dc5d6b50e50c0b --- /dev/null +++ b/vlm/train/Sk-oDY9ge/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf8c6ff70e7ffec6597613b6ad68444f5eb0c2e2b3f3c80bb2e9926b1d3000f +size 514068 diff --git a/vlm/train/Sk-oDY9ge/3.png b/vlm/train/Sk-oDY9ge/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fa335832544031d9f96e124dfe75f97b540ac123 --- /dev/null +++ b/vlm/train/Sk-oDY9ge/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c38f6cf70a1ae87a545895ceb2f261abd0daa5011a82d13e1548b7fe25c757 +size 455338 diff --git a/vlm/train/Sk-oDY9ge/4.png b/vlm/train/Sk-oDY9ge/4.png new file mode 100644 index 0000000000000000000000000000000000000000..579a8970ae7b7f7a86ee3a3b1490060a1fec0029 --- /dev/null +++ b/vlm/train/Sk-oDY9ge/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a9fbfc008132595436f6a263fde00d0d150797bd725558b58a29a38fdf5d0c +size 562650 diff --git a/vlm/train/Sk-oDY9ge/5.png b/vlm/train/Sk-oDY9ge/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9972617380a819b6690d667fe6e9352d2f58772e --- /dev/null +++ b/vlm/train/Sk-oDY9ge/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d647cd0190b5c936ea773e37a479de620f5df8168400bec563bc6a6d30c3c5b +size 260121 diff --git a/vlm/train/Sk-oDY9ge/6.png b/vlm/train/Sk-oDY9ge/6.png new file mode 100644 index 0000000000000000000000000000000000000000..018b143ce280b70fffeec6e1e340070cb384367d --- /dev/null +++ b/vlm/train/Sk-oDY9ge/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666b35699ddd0d14c86066ea871f5e53a06a1325400e2450a2540dda389e1037 +size 553016 diff --git a/vlm/train/Sk-oDY9ge/7.png b/vlm/train/Sk-oDY9ge/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a684a434b4207144cb044b152a51fd230ec6532d --- /dev/null +++ b/vlm/train/Sk-oDY9ge/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:258aea421e280e5d65478f4b8475f51ed893fc48a48a4b2fa00eb45aa3ef970f +size 491648 diff --git a/vlm/train/Sk-oDY9ge/8.png b/vlm/train/Sk-oDY9ge/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9ea94891b5616de187662035d881de9ede48a7c7 --- /dev/null +++ b/vlm/train/Sk-oDY9ge/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631d4dc940a87d65ac56c72af2034db9beb1752637ac7a7b66e1b98f60f2962d +size 551162 diff --git a/vlm/train/Sk-oDY9ge/9.png b/vlm/train/Sk-oDY9ge/9.png new file mode 100644 index 0000000000000000000000000000000000000000..46c3a154e67ea52020704933b2fbaf590c20d5d7 --- /dev/null +++ b/vlm/train/Sk-oDY9ge/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d924326ddfa93104a80de32db126cdd0007fc96f065186abf0e8dc2411eebe39 +size 376330 diff --git a/vlm/train/SkeuexBtDr/0.png b/vlm/train/SkeuexBtDr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c7bcb4b7b4d25f10fda3e051b22eef0800d63147 --- /dev/null +++ b/vlm/train/SkeuexBtDr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f41c94c70b8755276fef6fadd935e891f5204cd4ed461ed2e855a3d039929b +size 492346 diff --git a/vlm/train/SkeuexBtDr/1.png b/vlm/train/SkeuexBtDr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5ccb88d344fd64acb572457e6a76a9ec2bb78ba6 --- /dev/null +++ b/vlm/train/SkeuexBtDr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bfe0c87224cdd31b8c1d2bcebf6ec4ac6da2a15d067a3cc56e621be29a57e75 +size 628180 diff --git a/vlm/train/SkeuexBtDr/10.png b/vlm/train/SkeuexBtDr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c750d8f4b5c5a5a33b08d090bcf1cf25deaa3f9b --- /dev/null +++ b/vlm/train/SkeuexBtDr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaa685ddfd063ff614e8250a480b4bb0138cfefa73418786cfc98443ec24c1ae +size 582065 diff --git a/vlm/train/SkeuexBtDr/11.png b/vlm/train/SkeuexBtDr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5cfa9263cc66de5becd82f93f3bed0bb38235471 --- /dev/null +++ b/vlm/train/SkeuexBtDr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5204b4423430000f3edfc859397bcae13467e430503923ea7286caa4e0d8ae2 +size 153465 diff --git a/vlm/train/SkeuexBtDr/12.png b/vlm/train/SkeuexBtDr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1f00ea1ec83652425bd6f58a39c982eb97e1c8ec --- /dev/null +++ b/vlm/train/SkeuexBtDr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4a34c05247d003b18e781444b92eefab8feb23a61392488c34611073152e95 +size 442438 diff --git a/vlm/train/SkeuexBtDr/13.png b/vlm/train/SkeuexBtDr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a5cd593a870f0e646fd37c31b223cee92d78769f --- /dev/null +++ b/vlm/train/SkeuexBtDr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dfc5ad80d5e7d2811c5ddc860c5261e44f40f436233828602eac2c87f364e7d +size 381732 diff --git a/vlm/train/SkeuexBtDr/14.png b/vlm/train/SkeuexBtDr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2cd8bc8cc53d291a9a79470e3f801141cc70a24b --- /dev/null +++ b/vlm/train/SkeuexBtDr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df550da69898fe88ab7b879b454a720f933625257842f4afddabd5db895160d7 +size 346765 diff --git a/vlm/train/SkeuexBtDr/15.png b/vlm/train/SkeuexBtDr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5cbb1628cdfbba090ccc35b6d63857cc588925ea --- /dev/null +++ b/vlm/train/SkeuexBtDr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877503ae98121e0f4dbcfcd204c776528ee6df200decb9b48c1e48550b4a0192 +size 307313 diff --git a/vlm/train/SkeuexBtDr/16.png b/vlm/train/SkeuexBtDr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c43e588e18b01de8632e24d4de91764f87cb1f17 --- /dev/null +++ b/vlm/train/SkeuexBtDr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beadd14a26dd8df9dbdbbe4cd6c9531749a4d787fec49fea34c102835997f57a +size 239519 diff --git a/vlm/train/SkeuexBtDr/2.png b/vlm/train/SkeuexBtDr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5e931c2c25e2b76777ebda9629b1feb738bef943 --- /dev/null +++ b/vlm/train/SkeuexBtDr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560207c73d2c94678ef270bb459e58607a9148eacc862c0465e35e12bd3b6321 +size 549965 diff --git a/vlm/train/SkeuexBtDr/3.png b/vlm/train/SkeuexBtDr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b8713b0e81dccdde65a3706be361c99a9d14d933 --- /dev/null +++ b/vlm/train/SkeuexBtDr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86837419f90d79763dcebfd3453702aec239d57577c80dddbaf0b097859c5001 +size 610198 diff --git a/vlm/train/SkeuexBtDr/4.png b/vlm/train/SkeuexBtDr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e648a43ace5de10c0096f834201a8dee44eb387 --- /dev/null +++ b/vlm/train/SkeuexBtDr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd3d7813ce13f34f93a31666256e49f8adc3f08c2b8d5c8ebe8edcae57f83674 +size 593737 diff --git a/vlm/train/SkeuexBtDr/5.png b/vlm/train/SkeuexBtDr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e149d6c17850825874a3a4e9ecb0a388a5f15eee --- /dev/null +++ b/vlm/train/SkeuexBtDr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70da75a0afff64a461f27f8e9aac1051a01da4c84a8876961b5154847fba3a5a +size 547727 diff --git a/vlm/train/SkeuexBtDr/6.png b/vlm/train/SkeuexBtDr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..50f1bf246827b6f0ffb4e9c17e1ca9e4eb88dd54 --- /dev/null +++ b/vlm/train/SkeuexBtDr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087a16faf52c964ee71a72dd86ea9b2a3d53d43eb42b5f14efaad039b7866eb1 +size 517400 diff --git a/vlm/train/SkeuexBtDr/7.png b/vlm/train/SkeuexBtDr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..62f75468cf2f61fb04c69d42f78cf1e068e15264 --- /dev/null +++ b/vlm/train/SkeuexBtDr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d209bbfd4ccd67e23fd25f74e36e7ad803bfc764fc60ae8464a21d4d388852 +size 529377 diff --git a/vlm/train/SkeuexBtDr/8.png b/vlm/train/SkeuexBtDr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bcfc6115cedba30f7f28212bf94b1d753b6669ff --- /dev/null +++ b/vlm/train/SkeuexBtDr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8422f6dbeeaf4ce1b48d88250c49f7b1d164b05cd4303f0b72ee0a5c5ed58f8 +size 537160 diff --git a/vlm/train/SkeuexBtDr/9.png b/vlm/train/SkeuexBtDr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..25dd11c86ccc7ddb982faf0d256e75e76ce0c086 --- /dev/null +++ b/vlm/train/SkeuexBtDr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee89bd2a148ac66df93fed577d935570fe93c704589703ffb34994242a8a5c2 +size 537195 diff --git a/vlm/train/Skgb5h4KPH/0.png b/vlm/train/Skgb5h4KPH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1b823343ad633e300e5f155ccf241f77867a55ba --- /dev/null +++ b/vlm/train/Skgb5h4KPH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5491b04583febe744f043362c5e4b1cb408afe1da14dc683ee3737368c79287 +size 501731 diff --git a/vlm/train/Skgb5h4KPH/1.png b/vlm/train/Skgb5h4KPH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..36ec1bbd4bcf12f89cbea47c3da15511bc5f8607 --- /dev/null +++ b/vlm/train/Skgb5h4KPH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:139d068961a89f698d2274bee9909931157b2f515980b434d22ce9e9aa4e003e +size 593414 diff --git a/vlm/train/Skgb5h4KPH/10.png b/vlm/train/Skgb5h4KPH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4302a5a0d49197ec1688cced1f754d75604a5682 --- /dev/null +++ b/vlm/train/Skgb5h4KPH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b713aad44a15733e177ec9008d8e4c7c45950c35764fa3516d8875028d3a4f73 +size 549686 diff --git a/vlm/train/Skgb5h4KPH/11.png b/vlm/train/Skgb5h4KPH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..348992d1b386e808da90a9ff645201bd90e09744 --- /dev/null +++ b/vlm/train/Skgb5h4KPH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2599e0aa4c619361a66af00c36b04e68fdda51bf737391a9f806bbd43229ca29 +size 393986 diff --git a/vlm/train/Skgb5h4KPH/12.png b/vlm/train/Skgb5h4KPH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..04302c68887da2ad69ebb5b438cab93e802fbfdd --- /dev/null +++ b/vlm/train/Skgb5h4KPH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c3bef3363e49b31159794d0126ac71a505202457e7315a83748e03f1c25c3f +size 318259 diff --git a/vlm/train/Skgb5h4KPH/13.png b/vlm/train/Skgb5h4KPH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..56e4e6b5209f29c706757f9ac2acc690e8c3de5e --- /dev/null +++ b/vlm/train/Skgb5h4KPH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f431f0d36436dcfe591ed73e46156777b520a755943675832d852a5dd849c7 +size 382675 diff --git a/vlm/train/Skgb5h4KPH/14.png b/vlm/train/Skgb5h4KPH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..09d9374c9b65eff3706a5c40908c01c3429c6dcf --- /dev/null +++ b/vlm/train/Skgb5h4KPH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90dadc55f7772e8910d47487650cc909e294869dd363cd9615bf5ff1d75f6656 +size 399920 diff --git a/vlm/train/Skgb5h4KPH/15.png b/vlm/train/Skgb5h4KPH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..bd579670780698cb7dbd20f8868bdfb06837871a --- /dev/null +++ b/vlm/train/Skgb5h4KPH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c586e5a2ffe06297f732008d8ae4662e905bf3b3e711e1e0d40bb8fb28a791 +size 307801 diff --git a/vlm/train/Skgb5h4KPH/16.png b/vlm/train/Skgb5h4KPH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d66e7a3d3ada79224d13f497c7685cb140978cda --- /dev/null +++ b/vlm/train/Skgb5h4KPH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c52eb5ac3b374d3d6345773a0cc9a8b7b0a9d041c86818c1e528eb28727990 +size 544409 diff --git a/vlm/train/Skgb5h4KPH/2.png b/vlm/train/Skgb5h4KPH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..acf778c6cd2ff744b4cbda64f077e8dfaadfff5a --- /dev/null +++ b/vlm/train/Skgb5h4KPH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec289e3c1628209757f4e01d93510ddf9a4cb3d06a37f1945e21cc5ec2531f6 +size 559621 diff --git a/vlm/train/Skgb5h4KPH/3.png b/vlm/train/Skgb5h4KPH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a98a0dd27b6b73c5f8d52c5d9365b099fd931b --- /dev/null +++ b/vlm/train/Skgb5h4KPH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2944a554fbe1110c8c3a9b555fa89eac975b95adf9200282b742a346177f610 +size 484496 diff --git a/vlm/train/Skgb5h4KPH/4.png b/vlm/train/Skgb5h4KPH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6eaef1ab4cc8716f87fb46f1c6b077842a5cf851 --- /dev/null +++ b/vlm/train/Skgb5h4KPH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea99c936a9970f20835234c4b09d6bf16dbd29c74fbe5b29ffb887bcfb59efba +size 445404 diff --git a/vlm/train/Skgb5h4KPH/5.png b/vlm/train/Skgb5h4KPH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ac6cc2aa8a3cc0bc551691f1229baaff1b28f2b8 --- /dev/null +++ b/vlm/train/Skgb5h4KPH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344a7f6134b24607461d6d16a5cb9ffad13f13c51e8bb42c8c2299f9beb5b494 +size 588414 diff --git a/vlm/train/Skgb5h4KPH/6.png b/vlm/train/Skgb5h4KPH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7e6ab8b63818ee2256c3a7ce0d031dc752cf85d3 --- /dev/null +++ b/vlm/train/Skgb5h4KPH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe965ea8417478370a0fc0ad9ccbe900a90cb1570dd980c1e41a0f81e8c0713 +size 542033 diff --git a/vlm/train/Skgb5h4KPH/7.png b/vlm/train/Skgb5h4KPH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5139e4a9be8533c1c9e98f6bd777a1f0a58fac --- /dev/null +++ b/vlm/train/Skgb5h4KPH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66eded277e51f4904d0b541c0e562e36205cf540ff52cc66c06dc08ea338ee0e +size 562628 diff --git a/vlm/train/Skgb5h4KPH/8.png b/vlm/train/Skgb5h4KPH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..83075b662edf8ebf499742388c362f1000dc618d --- /dev/null +++ b/vlm/train/Skgb5h4KPH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af792dabc4e998f1c46b6b2c548153092382f87c6fdee926907a5fddd03cbc3 +size 527587 diff --git a/vlm/train/Skgb5h4KPH/9.png b/vlm/train/Skgb5h4KPH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..cb7121d07c78fd4d529b4a880d938bc4095890ee --- /dev/null +++ b/vlm/train/Skgb5h4KPH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b730e99a9bad75f7c445b2f9fea2de7f5eedcc1363dc6ea8f7c9dd2f8060f6b +size 525133 diff --git a/vlm/train/Skn9Shcxe/0.png b/vlm/train/Skn9Shcxe/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e6091835909c4449254df3899fae2c6ee1aefdfb --- /dev/null +++ b/vlm/train/Skn9Shcxe/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70dfe58725e3ebf238c5603264d3afc7c4c19944b6348526d15100c2c0a5e234 +size 483071 diff --git a/vlm/train/Skn9Shcxe/1.png b/vlm/train/Skn9Shcxe/1.png new file mode 100644 index 0000000000000000000000000000000000000000..27c6523c0a12a1d36ea2e42db299ed602d830a99 --- /dev/null +++ b/vlm/train/Skn9Shcxe/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87dd001bdc26d251f243214b653d63abbffcb79a4d4923998f2137144a9dd36 +size 622222 diff --git a/vlm/train/Skn9Shcxe/10.png b/vlm/train/Skn9Shcxe/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8ce184127982620442ad09d319dd42558552a9a1 --- /dev/null +++ b/vlm/train/Skn9Shcxe/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b9ab786f4d268730f74363a27203c0d0c39cbc417a3da21d1bd23657f53589 +size 535636 diff --git a/vlm/train/Skn9Shcxe/11.png b/vlm/train/Skn9Shcxe/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6ef01fdbc1c2df0c8aff2f39f304ee44994458d4 --- /dev/null +++ b/vlm/train/Skn9Shcxe/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d4099b7e41f92fb9b01b9db66a8ec9e1bbb933c0f7242257c5f961c393e4455 +size 132658 diff --git a/vlm/train/Skn9Shcxe/12.png b/vlm/train/Skn9Shcxe/12.png new file mode 100644 index 0000000000000000000000000000000000000000..200146bf9ebc823418f7e31b401f4e4e648badc6 --- /dev/null +++ b/vlm/train/Skn9Shcxe/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cdba88269308b7e5e406e401db377768254d6b99d6acaab04c3d7cf6ddd367d +size 257050 diff --git a/vlm/train/Skn9Shcxe/13.png b/vlm/train/Skn9Shcxe/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3bd4479cf074b41785b0953b714d8d254d186301 --- /dev/null +++ b/vlm/train/Skn9Shcxe/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0caba87dbba038204235998315178679b3b9652c6964bbffe0ffb0e79f863935 +size 150238 diff --git a/vlm/train/Skn9Shcxe/2.png b/vlm/train/Skn9Shcxe/2.png new file mode 100644 index 0000000000000000000000000000000000000000..912abcea3f6135891dbbd134520723f7a1ecddd3 --- /dev/null +++ b/vlm/train/Skn9Shcxe/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e029f39195abfd7c87d05423119cbbcfe655777acf7c1925b871081fc816cda2 +size 576920 diff --git a/vlm/train/Skn9Shcxe/3.png b/vlm/train/Skn9Shcxe/3.png new file mode 100644 index 0000000000000000000000000000000000000000..89304c0d26fa78de732d07265c3d563abf57d73f --- /dev/null +++ b/vlm/train/Skn9Shcxe/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b219e15044125cf49faa69347c947c55d2bfb2ad8b52d19768bf77b08baa48a4 +size 511584 diff --git a/vlm/train/Skn9Shcxe/4.png b/vlm/train/Skn9Shcxe/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3ea0200c58906bc5b2b5231a0fc821975b351bf6 --- /dev/null +++ b/vlm/train/Skn9Shcxe/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e3a3a7b71273dcb44b18dac34a48453f7a9b304ce51cabe4ad21eabcb48d263 +size 458314 diff --git a/vlm/train/Skn9Shcxe/5.png b/vlm/train/Skn9Shcxe/5.png new file mode 100644 index 0000000000000000000000000000000000000000..db618612f1e69b273927f2e6163bf4cfa73b530f --- /dev/null +++ b/vlm/train/Skn9Shcxe/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8365479c866dc374dada32b8b892bf33552ed88662ee4f27883309e71ca3723 +size 449602 diff --git a/vlm/train/Skn9Shcxe/6.png b/vlm/train/Skn9Shcxe/6.png new file mode 100644 index 0000000000000000000000000000000000000000..703e30f4e1b8cda2e552bce6b9862d67fbe2c775 --- /dev/null +++ b/vlm/train/Skn9Shcxe/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f892a77a5c6f7da1c64144c2bcd2c7b7d4d57c63d47ed5f06503b8b6cb68ac5 +size 692334 diff --git a/vlm/train/Skn9Shcxe/7.png b/vlm/train/Skn9Shcxe/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c319bb7cded06a3e8cd0b698fe494de5f151c53b --- /dev/null +++ b/vlm/train/Skn9Shcxe/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11862a37ea7bfbdaddba7fcca3db7303971a116aad61f725c83b62f847948aa1 +size 540105 diff --git a/vlm/train/Skn9Shcxe/8.png b/vlm/train/Skn9Shcxe/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a109cde060e1ee62f35d06d7fe638c6206f65656 --- /dev/null +++ b/vlm/train/Skn9Shcxe/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbf4ae23f50497dcc8f0d2d4018ff6b3ee2648a8d07b43b804e52a36b1556e4 +size 629857 diff --git a/vlm/train/Skn9Shcxe/9.png b/vlm/train/Skn9Shcxe/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bd53cbdbbde81d5ee5b58fb0177f8af15ffd5ebc --- /dev/null +++ b/vlm/train/Skn9Shcxe/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5719ce8283c5b2af2ef3dbc3062c223f3faeb843e35c8a38859beaa7253a9490 +size 545254 diff --git a/vlm/train/SkxbDsR9Ym/0.png b/vlm/train/SkxbDsR9Ym/0.png new file mode 100644 index 0000000000000000000000000000000000000000..fd40bb3ad8b1414769b9d023e91aa6f3e3a5eba4 --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:365795d835f257ebc849376a5f7569137b571ac1f081e9a1560ed97e9459237d +size 506317 diff --git a/vlm/train/SkxbDsR9Ym/1.png b/vlm/train/SkxbDsR9Ym/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e18ad2fb79f98b25aa87c49e09dc5c3025e273e6 --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cb6e27467f6ea64f5a66dfa75e1bd943b635b18b29658fe261f804f2c4a549 +size 568850 diff --git a/vlm/train/SkxbDsR9Ym/10.png b/vlm/train/SkxbDsR9Ym/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2b9bdeebd16ca8f6744b3a4421ab39ea9d25117b --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4151860c0a9651efb6e1149c325e48d774287d821303eaa3827e1489771da0ad +size 327252 diff --git a/vlm/train/SkxbDsR9Ym/11.png b/vlm/train/SkxbDsR9Ym/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7386b92a82082af1454a383262a56c25221b67fc --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73da4b6c6f201466c7b15c4d6075e07675f456f6eb5a1de1fa575a06035a0d67 +size 437785 diff --git a/vlm/train/SkxbDsR9Ym/12.png b/vlm/train/SkxbDsR9Ym/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9039cac95a701b3f56ecdf2d6daf93e7b8d8c348 --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:877d09d3db98c3dd8719cc47230b5536da5abd472f754b093c2d6fcacd236240 +size 354767 diff --git a/vlm/train/SkxbDsR9Ym/13.png b/vlm/train/SkxbDsR9Ym/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9ce5580403284c280f0bba5be0f8e9d75ec9103d --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9af08c2081c9b945f54abe7680f14d5dae71de7515c3f08bda77347910e6530 +size 412919 diff --git a/vlm/train/SkxbDsR9Ym/14.png b/vlm/train/SkxbDsR9Ym/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e425d885aa1dad2511d7e67f5714575c7979b9a0 --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d5195ef5e85b1e3b38ca3ce1314401fc1f4f87160de5064c34c898ec0ae404 +size 166873 diff --git a/vlm/train/SkxbDsR9Ym/2.png b/vlm/train/SkxbDsR9Ym/2.png new file mode 100644 index 0000000000000000000000000000000000000000..681316972af6f30ebe4ccca59273c4d8c6102ddc --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b127f195bb4f5a7cb270a75122c11a754c7156003130b5930a369d08499d02e8 +size 536085 diff --git a/vlm/train/SkxbDsR9Ym/3.png b/vlm/train/SkxbDsR9Ym/3.png new file mode 100644 index 0000000000000000000000000000000000000000..07c2665792ac4d808dc6fbce72864a283c76456a --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:687ca9f3108886fcc7fa4dd96dc5aafc904c594fe1104427c0bcb339a8980f0b +size 445474 diff --git a/vlm/train/SkxbDsR9Ym/4.png b/vlm/train/SkxbDsR9Ym/4.png new file mode 100644 index 0000000000000000000000000000000000000000..73eb34f295dddcc966311a63ce68047ecb21965f --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8a4a8d1fad0ff70c990e8c321b01256cf4fc1fce0f76e68bba3cb582dfd84b +size 434028 diff --git a/vlm/train/SkxbDsR9Ym/5.png b/vlm/train/SkxbDsR9Ym/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa86e3278f0b4e449041bd0a536ff90ca5d3591 --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64f200c80118f5d1258803cbd936b30d34a103facbcff590457e2d8b4940798 +size 529180 diff --git a/vlm/train/SkxbDsR9Ym/6.png b/vlm/train/SkxbDsR9Ym/6.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9d8ac5f4d48ce38e0e6c7186a82e23614b980a --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6625840e97dd2bfa72fc28ccc9589e17c90504eb2ce51c9564acdfd4ed993363 +size 616139 diff --git a/vlm/train/SkxbDsR9Ym/7.png b/vlm/train/SkxbDsR9Ym/7.png new file mode 100644 index 0000000000000000000000000000000000000000..60d7137b3b2df61d4106c0776ce649d067bda7a4 --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd88f3b89628645c88d914101534c5d1c304a0f3d1193d523bddcaef55bec3d0 +size 500901 diff --git a/vlm/train/SkxbDsR9Ym/8.png b/vlm/train/SkxbDsR9Ym/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8003d209df51b0764a65a3652a4190d9c491fb12 --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f09fb6a550c5c1eb34134141f87030b3202337ae8d8aa1d2506d9425f390038 +size 478984 diff --git a/vlm/train/SkxbDsR9Ym/9.png b/vlm/train/SkxbDsR9Ym/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ce2a7529a5d2f05c71a37d6275ffb6aacf7bf74a --- /dev/null +++ b/vlm/train/SkxbDsR9Ym/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6e073e947f0e8984942cd81d09de747098d1398664c2b023004f465aab34f9a +size 519409 diff --git a/vlm/train/TR-Nj6nFx42/0.png b/vlm/train/TR-Nj6nFx42/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ee95cfc0bb442597f918f69d8ab28bfca3235133 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57953df73623ff68e3042be7ce182aa8579b84fe80fa927418ec6215bff6f2d +size 564111 diff --git a/vlm/train/TR-Nj6nFx42/1.png b/vlm/train/TR-Nj6nFx42/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2b1a8897589b729714b8a7c3c1e9a84ec25f5936 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd217313549c45ab0054a30a4be80887071ec2b0dca47714696c493f6bb71083 +size 612346 diff --git a/vlm/train/TR-Nj6nFx42/10.png b/vlm/train/TR-Nj6nFx42/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7ab0e43815d83c1684d2790cb0737a2530e710a6 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff26136cb10faf3922ccebe24a036f8de229f04b019109e26066cdee03ab3489 +size 537850 diff --git a/vlm/train/TR-Nj6nFx42/11.png b/vlm/train/TR-Nj6nFx42/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1afb36c2cd9c40aada2b8a025ac19c2787bc7dd7 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ab86546483a99599a1ee43a980f33cea8e3241a2400409bbc42a558f37498b +size 126066 diff --git a/vlm/train/TR-Nj6nFx42/2.png b/vlm/train/TR-Nj6nFx42/2.png new file mode 100644 index 0000000000000000000000000000000000000000..85492b6f7169463c3f6ae9ec6f66e7fb623f0620 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a921cd601ad3e21f73f84b1116da64d5e8e664a3716336fb6a080fef02ea1245 +size 508845 diff --git a/vlm/train/TR-Nj6nFx42/3.png b/vlm/train/TR-Nj6nFx42/3.png new file mode 100644 index 0000000000000000000000000000000000000000..67c27a7abc0256ba0b2f748d1fb0b1098c2f53b9 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ba50290b7f393c6062d2807baa85d019b1968365c83a49795c8922c2b24e7b +size 551360 diff --git a/vlm/train/TR-Nj6nFx42/4.png b/vlm/train/TR-Nj6nFx42/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0647efcf926a39926491eb6512610d2d5f7aa433 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:224f8877ff5c20d7b2cb5831ad8d3269b5ad50d9ffe575a22e7454be3c18b860 +size 490989 diff --git a/vlm/train/TR-Nj6nFx42/5.png b/vlm/train/TR-Nj6nFx42/5.png new file mode 100644 index 0000000000000000000000000000000000000000..846d3e6259c184b57b6e5b649c614ea810bc33ba --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e717019a9abf27af64c1ac1f87d4a8529e9767a75e6e23b0c00a018968438537 +size 589479 diff --git a/vlm/train/TR-Nj6nFx42/6.png b/vlm/train/TR-Nj6nFx42/6.png new file mode 100644 index 0000000000000000000000000000000000000000..67270790f1df95da2ae50db22f7cdbe578472338 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b7284fba0a7554c67e58fca3ac0a459c11eade0f6cdb92eecfeb6813878667b +size 562518 diff --git a/vlm/train/TR-Nj6nFx42/7.png b/vlm/train/TR-Nj6nFx42/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6fddaa65269fb9194e73ca2730b09bdc605ae5a0 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a680e3ad6356720981bd5f68ce0ddb584b9d146083342adff4f5c8a60549502 +size 530481 diff --git a/vlm/train/TR-Nj6nFx42/8.png b/vlm/train/TR-Nj6nFx42/8.png new file mode 100644 index 0000000000000000000000000000000000000000..36ba6a94383c9b8e25bf6c0cdff53930fefcd203 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76deb2e9a05b86dc5c9c074b36ff7cb4321e5304db1fb994512eeeb4d7fb430b +size 435479 diff --git a/vlm/train/TR-Nj6nFx42/9.png b/vlm/train/TR-Nj6nFx42/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1122c8d1bcb839e4c51623850162fb419393d749 --- /dev/null +++ b/vlm/train/TR-Nj6nFx42/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bae03bdef4c33f6ffc06ecfca072cdb2aea5f07c4b4737e2ec3bab4c572146d +size 525464 diff --git a/vlm/train/ebS5NUfoMKL/0.png b/vlm/train/ebS5NUfoMKL/0.png new file mode 100644 index 0000000000000000000000000000000000000000..34bbea74dc87ef0d057c926b4abe6f96a1eefb76 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d395a6b7f832cf6a9d2da765bef6a0402d4996ec1f02dfa0bb556b0e6acd17e +size 522390 diff --git a/vlm/train/ebS5NUfoMKL/1.png b/vlm/train/ebS5NUfoMKL/1.png new file mode 100644 index 0000000000000000000000000000000000000000..203c7d6dcf29f7f43b2ac79b5559be60bb6ea807 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3abd2c23d820fea463ac2dbf1deb41fcd33a433c3dfebb9f14d5dd7085ee6e +size 569489 diff --git a/vlm/train/ebS5NUfoMKL/10.png b/vlm/train/ebS5NUfoMKL/10.png new file mode 100644 index 0000000000000000000000000000000000000000..160db255f966789f47a94f898dce81d2b4a7861a --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8612887888c12e5338a01af9ad2afb954a78e7aff687aadb76fd54d2dda77e +size 560210 diff --git a/vlm/train/ebS5NUfoMKL/11.png b/vlm/train/ebS5NUfoMKL/11.png new file mode 100644 index 0000000000000000000000000000000000000000..72a129dca1ceb6fac8ef6cd394cdd32e4c4727e1 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3855a36475aebdc07cfee5d5f62ce2d72201a7a374ebb4f994376c49fc87a65 +size 253318 diff --git a/vlm/train/ebS5NUfoMKL/12.png b/vlm/train/ebS5NUfoMKL/12.png new file mode 100644 index 0000000000000000000000000000000000000000..18712e00e9ceecc664cefcf1ecaf94f7f42443d1 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75c228cf7da8ac508dfabc731939d4a623bf096e53df00d649f1cf8019e9f9d +size 534826 diff --git a/vlm/train/ebS5NUfoMKL/13.png b/vlm/train/ebS5NUfoMKL/13.png new file mode 100644 index 0000000000000000000000000000000000000000..01b85081f69f07b003fddbdbaaddbb65da3c1808 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b702f355322a3165abd0c893e512aed84baef4329e7d4327e47f9d7fe75f767 +size 589384 diff --git a/vlm/train/ebS5NUfoMKL/14.png b/vlm/train/ebS5NUfoMKL/14.png new file mode 100644 index 0000000000000000000000000000000000000000..27899dd7275d3fb82bc0d047e7603fca513f8725 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43743b0722cd7cf669c557ce233cc98e76d98dc7e346d168f5878c329566e47 +size 397619 diff --git a/vlm/train/ebS5NUfoMKL/15.png b/vlm/train/ebS5NUfoMKL/15.png new file mode 100644 index 0000000000000000000000000000000000000000..46f9ce149fc61d6865866a0d5a0779ce0bfc48c4 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764758cf57f6f595210d636e8ce88e3901423463797808c2cd2032f2acf9b3c0 +size 156818 diff --git a/vlm/train/ebS5NUfoMKL/2.png b/vlm/train/ebS5NUfoMKL/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ba94377b26b41aa6020e5ae450b31b15297209dc --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8dc0c2edca6ea3deed1fa4319cc5de06e20049504e29ffaaa4be0db8f4a95b6 +size 508143 diff --git a/vlm/train/ebS5NUfoMKL/3.png b/vlm/train/ebS5NUfoMKL/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e05df1624f00cd8cdb24935840360401b7ba4700 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a62f4051d32810a6da640b28a9687b8c1048e68819e603c377748c34383653f +size 581841 diff --git a/vlm/train/ebS5NUfoMKL/4.png b/vlm/train/ebS5NUfoMKL/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2aae37112d0815aa93a3d1b5d73c47c3788d3ebf --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f71b16d8026a33534f4c687cc29eda119d24acbdcba962d987ef552797f3b4b +size 508028 diff --git a/vlm/train/ebS5NUfoMKL/5.png b/vlm/train/ebS5NUfoMKL/5.png new file mode 100644 index 0000000000000000000000000000000000000000..86841cbb7c1dd8abc9162b9e60505a6a13b101a6 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9766a7209c602a1b09cfe18d71c6da117555b39ec618cd62715cbb82b8480572 +size 523929 diff --git a/vlm/train/ebS5NUfoMKL/6.png b/vlm/train/ebS5NUfoMKL/6.png new file mode 100644 index 0000000000000000000000000000000000000000..556f5edbcee77e6036e56ab515cebad0efd65303 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be948330ab9f3b2cbb6adfefa00fb83b6d82fb1bb80c51286e958cd68b626c0 +size 506992 diff --git a/vlm/train/ebS5NUfoMKL/7.png b/vlm/train/ebS5NUfoMKL/7.png new file mode 100644 index 0000000000000000000000000000000000000000..aecbebbc6eb3a4083423c30dc5c20f40f113c24d --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f227b6d998ba37049df03f4f0494fc1c0fef36b44e1ea926943167f1f784b8 +size 444172 diff --git a/vlm/train/ebS5NUfoMKL/8.png b/vlm/train/ebS5NUfoMKL/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b1cbafa6ecbf2978a3c837ed7557332329604e01 --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:758266a1b431a3e37465c90e271c94bd4340a6a864eabc74efe989e3aaf50618 +size 817279 diff --git a/vlm/train/ebS5NUfoMKL/9.png b/vlm/train/ebS5NUfoMKL/9.png new file mode 100644 index 0000000000000000000000000000000000000000..358e2db3eb889396c85f95a97b4a056b9ffa7cff --- /dev/null +++ b/vlm/train/ebS5NUfoMKL/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cbd78ecd1bfc149e949aee48a368377b10b7fcde8d44a5666e29cc7347d297 +size 507723 diff --git a/vlm/train/fIn4wLS2XzU/0.png b/vlm/train/fIn4wLS2XzU/0.png new file mode 100644 index 0000000000000000000000000000000000000000..093b2315c9229252915a632046742f14601c8567 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea343080b708a010109cd24b511395154b16b07000967bff0aea141d0a15cd3f +size 449402 diff --git a/vlm/train/fIn4wLS2XzU/1.png b/vlm/train/fIn4wLS2XzU/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c545dbc7d379128b239b4c9500534f3dd640b254 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14069c9fef8b4595b3bc2a3cd74fba70c20973ec948fc0110948e6d7d9d549fc +size 707400 diff --git a/vlm/train/fIn4wLS2XzU/10.png b/vlm/train/fIn4wLS2XzU/10.png new file mode 100644 index 0000000000000000000000000000000000000000..cd5261f23e70d5e239cad18ee544bbc7c6301355 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21139f7bd20446bb720a4e3fbb5287d2a481676963bd31eb35ceef3fe9a0b6a0 +size 683775 diff --git a/vlm/train/fIn4wLS2XzU/11.png b/vlm/train/fIn4wLS2XzU/11.png new file mode 100644 index 0000000000000000000000000000000000000000..cce0063b032674928ad973cbaf0f502a8f44d84d --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c392138ac3c8d8cd325ff8989f946af3b73624cba6883645613e009c288f93 +size 691712 diff --git a/vlm/train/fIn4wLS2XzU/12.png b/vlm/train/fIn4wLS2XzU/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ddd14a206fe8d1d35dcd0d1f6d37765294e359 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b876e5a5980d11b00bffda479281478791d967b905380cf88f146373590a0f9f +size 661724 diff --git a/vlm/train/fIn4wLS2XzU/13.png b/vlm/train/fIn4wLS2XzU/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9d5f2c098ee8305f11fa3450f5e00f58cceee8d5 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45f5e797595d51bcc46b81286da1ee370c0dfd9e5c3c91e0dcd50513ea36ebb +size 617940 diff --git a/vlm/train/fIn4wLS2XzU/14.png b/vlm/train/fIn4wLS2XzU/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4a53d42b581de14f77e957da41951388fd756728 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e148dc1f57ae7dff6fe0f52438242c0cd7af3cf1375444c6319d6163f7be9289 +size 66332 diff --git a/vlm/train/fIn4wLS2XzU/2.png b/vlm/train/fIn4wLS2XzU/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3cee6e9f7991c8883151698b54f2c9af0365e69a --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1cfdd97901e614662a72da19a3853b4f2dd67161eec02cad700f395e78a17be +size 481815 diff --git a/vlm/train/fIn4wLS2XzU/3.png b/vlm/train/fIn4wLS2XzU/3.png new file mode 100644 index 0000000000000000000000000000000000000000..98ff92981ef27e18f88be699014efcf2c85d7bbb --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e11b20433300ce44feb3f56fb9a890e1bca747020d4b19b9bbc021720467482 +size 445415 diff --git a/vlm/train/fIn4wLS2XzU/4.png b/vlm/train/fIn4wLS2XzU/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a11fbffc67767c51196883ad16e113ac6edaa50f --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f9aa7c2e18c57a15567ce1e50892cb89e7dab97a70223cc2062d33a8467f61 +size 455676 diff --git a/vlm/train/fIn4wLS2XzU/5.png b/vlm/train/fIn4wLS2XzU/5.png new file mode 100644 index 0000000000000000000000000000000000000000..add58f45cd955032616b6dd9ef0942deda48f779 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a669319b3f13762e718f287dd7c99f6ac2908fb895a3b3ee5a4fda611f974c4e +size 609270 diff --git a/vlm/train/fIn4wLS2XzU/6.png b/vlm/train/fIn4wLS2XzU/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6bd5ec3d1d853a94f6c2aba592eff0f693e3c908 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d8254c26d71af79ddedaad605cf88b511da93b70d2a16041ba0ecf52607317 +size 656334 diff --git a/vlm/train/fIn4wLS2XzU/7.png b/vlm/train/fIn4wLS2XzU/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8bcc209bf5b42bffc6de40f650bc19a8f68e1a20 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3ce19fd8b5220c85d9ef239e222c3da4519d95cd3417025cb5cbdb729ebd1e +size 624620 diff --git a/vlm/train/fIn4wLS2XzU/8.png b/vlm/train/fIn4wLS2XzU/8.png new file mode 100644 index 0000000000000000000000000000000000000000..965f41f789d02a62c76be524884f85b33e47db05 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f2e44839b3caa043ecb0750e6cedc155c1f49f97238dd016794d47c9cfeb551 +size 688232 diff --git a/vlm/train/fIn4wLS2XzU/9.png b/vlm/train/fIn4wLS2XzU/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ec7c951da9bccd64333ba88feb0481f188528619 --- /dev/null +++ b/vlm/train/fIn4wLS2XzU/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835a6a3a8dd4cc0787c7c6ccb9d4d24d721f32cec7de40032318302928213d7d +size 526973 diff --git a/vlm/train/hm0i-cunzGW/0.png b/vlm/train/hm0i-cunzGW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c7768eb1ac34f171e4b83f76741eaa78089247cf --- /dev/null +++ b/vlm/train/hm0i-cunzGW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec2eaf30da1253786babb80f0a43ccaf69e6ac8f3adadbe6d277d1ab605d5de +size 415268 diff --git a/vlm/train/hm0i-cunzGW/1.png b/vlm/train/hm0i-cunzGW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e6e772293269c6d6e47ebd555ecb7c0ec1dcddeb --- /dev/null +++ b/vlm/train/hm0i-cunzGW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c66e15e2765e053caca639eb8b9dc42478ca6ba99d2e35cc8c4af4ee31efcc0 +size 1080106 diff --git a/vlm/train/hm0i-cunzGW/10.png b/vlm/train/hm0i-cunzGW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6500ba705800fb8b947b1183481d29822fd1ed05 --- /dev/null +++ b/vlm/train/hm0i-cunzGW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dbd8d8633921e4e9a648ec89fc4e4ec69a51b3ca47c2aed8ac16ed38dc66208 +size 656644 diff --git a/vlm/train/hm0i-cunzGW/11.png b/vlm/train/hm0i-cunzGW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..efb66ed215cd989969fb2b5cffbdb55e81955641 --- /dev/null +++ b/vlm/train/hm0i-cunzGW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dc762ba95681d9f06734820a512b526c6f960d5a0e948ec968026eee985446e +size 690452 diff --git a/vlm/train/hm0i-cunzGW/12.png b/vlm/train/hm0i-cunzGW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d75f68b152b276c47c634daf699c8068a20b84a9 --- /dev/null +++ b/vlm/train/hm0i-cunzGW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74f4df9e04dcd387cb308384a6151c19da44a8297138387e9174837b834e43d +size 438569 diff --git a/vlm/train/hm0i-cunzGW/2.png b/vlm/train/hm0i-cunzGW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d84742005c083a56f1eed38fd0b686a5bdaa3106 --- /dev/null +++ b/vlm/train/hm0i-cunzGW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc4f3d76b78481a94d0512c71c29439de32f954c42af9f12edc323e4d19de39 +size 632387 diff --git a/vlm/train/hm0i-cunzGW/3.png b/vlm/train/hm0i-cunzGW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3f6385b3d2a851de444245d5eb05c0cbed3af077 --- /dev/null +++ b/vlm/train/hm0i-cunzGW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5969f54da088f0f612bb7bb2b15d9700856d4e855dbae4283229bde46e76dd3 +size 534145 diff --git a/vlm/train/hm0i-cunzGW/4.png b/vlm/train/hm0i-cunzGW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c6bdf80e7e3be7913cb9b5c7e19de23efa3a1e89 --- /dev/null +++ b/vlm/train/hm0i-cunzGW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb26ceac39411efe64d91d67a765e59c01b67366dc4e0fc68a8a76f24af750b3 +size 449344 diff --git a/vlm/train/hm0i-cunzGW/5.png b/vlm/train/hm0i-cunzGW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ee5efcbdfefdc2766bed3239cdb0faea5bfe346a --- /dev/null +++ b/vlm/train/hm0i-cunzGW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4718c9cd336a67abdfd99e20a4add5dd2ed765b4cb9b407972d4a266f47f57 +size 510554 diff --git a/vlm/train/hm0i-cunzGW/6.png b/vlm/train/hm0i-cunzGW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..36ed6f46b99dbb8901facbd8e556147fce1348cd --- /dev/null +++ b/vlm/train/hm0i-cunzGW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb640fccba12f8ee58dad6bc7e232da2687611fc5b598f5b6427100ed2fad120 +size 2254824 diff --git a/vlm/train/hm0i-cunzGW/7.png b/vlm/train/hm0i-cunzGW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d1f40df829ba5a7fb5434505b11c735078fc3f19 --- /dev/null +++ b/vlm/train/hm0i-cunzGW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde288c5c80a244f36b6b97970db87b9c222c7857da277eb9e1af5155a11cd27 +size 1721882 diff --git a/vlm/train/hm0i-cunzGW/8.png b/vlm/train/hm0i-cunzGW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..93c4266780e93975cfb80433dc94cd78ea1595fa --- /dev/null +++ b/vlm/train/hm0i-cunzGW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9dab3ea2aff78e2116dd2d143f0043ebcbafb5bf84478a8c90a73929a41886 +size 1033052 diff --git a/vlm/train/hm0i-cunzGW/9.png b/vlm/train/hm0i-cunzGW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..523a35a2887ff248397427750380dcf65c92f232 --- /dev/null +++ b/vlm/train/hm0i-cunzGW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ec73d6e62a34f5b4dd67dc3b83d9e854cb51d4305eabc56b66dfd14a0a75fa +size 501184 diff --git a/vlm/train/hu2aMLzOxC/0.png b/vlm/train/hu2aMLzOxC/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6ada65eb58772d73112bdf031d033782a7d762bf --- /dev/null +++ b/vlm/train/hu2aMLzOxC/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4dc951ae851476b028542139dd60ee5fc89e4092328d66bc26b560be98396e1 +size 499788 diff --git a/vlm/train/hu2aMLzOxC/1.png b/vlm/train/hu2aMLzOxC/1.png new file mode 100644 index 0000000000000000000000000000000000000000..00a3908f97fbecd91d4792e0a4d7217aaa0abac2 --- /dev/null +++ b/vlm/train/hu2aMLzOxC/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1b1b732fadfd3dba2f589ca0487394892b4170a29361cfffc0aa5ad796aa8f +size 578927 diff --git a/vlm/train/hu2aMLzOxC/10.png b/vlm/train/hu2aMLzOxC/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6c6e437cf5a96544fd7999ddd2ec6b5775f7dffe --- /dev/null +++ b/vlm/train/hu2aMLzOxC/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2ba2e6a417c56ddfe2a297724c1b9e97acf572bdd471658a9f7275f13a8e84 +size 582466 diff --git a/vlm/train/hu2aMLzOxC/11.png b/vlm/train/hu2aMLzOxC/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d92f957213e53242068ebf6fdf19c4696b64bf1c --- /dev/null +++ b/vlm/train/hu2aMLzOxC/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd656db8f1f754d0024b0cab4032c1d9ec0c01be8fff9c7966226d0d93a71a7 +size 545027 diff --git a/vlm/train/hu2aMLzOxC/12.png b/vlm/train/hu2aMLzOxC/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0bfab6b63ccc6f8c6d761abd2bbe036b06330bf7 --- /dev/null +++ b/vlm/train/hu2aMLzOxC/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012b100808ff2605af5cbcab5c4b2ce968410e28571048e789ca4025aa17f628 +size 307626 diff --git a/vlm/train/hu2aMLzOxC/2.png b/vlm/train/hu2aMLzOxC/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1324c1ed87d8616dc4dbb4688e2e17ca017fbd56 --- /dev/null +++ b/vlm/train/hu2aMLzOxC/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ae9374545e185b67fbf6d60afdcaa9c7571c85013ff98f24a17b18a5198b125 +size 560911 diff --git a/vlm/train/hu2aMLzOxC/3.png b/vlm/train/hu2aMLzOxC/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0c0b5c1318b6304c6c828dd00a0395105bd834b9 --- /dev/null +++ b/vlm/train/hu2aMLzOxC/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63c1f456e4f39fed079dda48ab0429b6e765d60b61eec9b0b5ab1a9a14e5c3d +size 583670 diff --git a/vlm/train/hu2aMLzOxC/4.png b/vlm/train/hu2aMLzOxC/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3641de4c3bdffd78a073f664cfdbe3a46a69a599 --- /dev/null +++ b/vlm/train/hu2aMLzOxC/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be634fc6fefeb03b23132cadb750f6fc56254d54b411dbf7f63b672ac18e41c8 +size 582521 diff --git a/vlm/train/hu2aMLzOxC/5.png b/vlm/train/hu2aMLzOxC/5.png new file mode 100644 index 0000000000000000000000000000000000000000..702107211d2391ef8c2c5ab1e48c47bfcf87e337 --- /dev/null +++ b/vlm/train/hu2aMLzOxC/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d20da967d83eab4bee5cefc682f3330b840b230416e60f7fe18a14b2364fb26b +size 578499 diff --git a/vlm/train/hu2aMLzOxC/6.png b/vlm/train/hu2aMLzOxC/6.png new file mode 100644 index 0000000000000000000000000000000000000000..63485616b365bb842ef9ff25343e3bbab649eeaf --- /dev/null +++ b/vlm/train/hu2aMLzOxC/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc19f941f8e5bd43e9ec742166479965885e3edc9bc381d2c426bddb56737375 +size 711729 diff --git a/vlm/train/hu2aMLzOxC/7.png b/vlm/train/hu2aMLzOxC/7.png new file mode 100644 index 0000000000000000000000000000000000000000..46660e291f1416c4c745836b34103a0cccfbf591 --- /dev/null +++ b/vlm/train/hu2aMLzOxC/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba1fbfd0a0073c96b9e8716bc161556276b90c200df20adfcbe6bdc9e766cf4 +size 523351 diff --git a/vlm/train/hu2aMLzOxC/8.png b/vlm/train/hu2aMLzOxC/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3b2f3f26b1a57b61b083405522cbde4dded2100f --- /dev/null +++ b/vlm/train/hu2aMLzOxC/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6fc24c3c37688a67918332ef2cde5c4a2e4e37ecacb2ebdbbc81f363009253 +size 322697 diff --git a/vlm/train/hu2aMLzOxC/9.png b/vlm/train/hu2aMLzOxC/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4f38ad37ce6d057cb16556f4d1567d3d014cd258 --- /dev/null +++ b/vlm/train/hu2aMLzOxC/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d72ba7e6df66fdb72bdab64c2bbd76166dd1a566ac30ec58d5383dbc92fda5 +size 540902 diff --git a/vlm/train/iklDP-v1sgi/0.png b/vlm/train/iklDP-v1sgi/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3af9f6ee25514e7fdeb9644764d50e94ef1c4329 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba184cbd9973525ffaedd362b630833f27033afafbf654b3b9fa1d27c23ffbc9 +size 407794 diff --git a/vlm/train/iklDP-v1sgi/1.png b/vlm/train/iklDP-v1sgi/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e29a11c9d964116a172185adbcd7c044878ce150 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ecf7eeee7704ec88831f1864b85c103805b6ecbb8d1a6d8c70e94127f225c38 +size 525560 diff --git a/vlm/train/iklDP-v1sgi/10.png b/vlm/train/iklDP-v1sgi/10.png new file mode 100644 index 0000000000000000000000000000000000000000..edea193d3ba66f60ac6e50a7737cf00dc2b84eba --- /dev/null +++ b/vlm/train/iklDP-v1sgi/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a44db6b85dfae1251d01972ea3a81dcc982e03179651d7f3d1ec1feeeb6425 +size 581422 diff --git a/vlm/train/iklDP-v1sgi/11.png b/vlm/train/iklDP-v1sgi/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ea6787c677c4ffb9c5dd32262efb521faa263f63 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161d51f54f76d31db66fe317964c4fd8929514fd88ba8f9ee421787896560076 +size 596610 diff --git a/vlm/train/iklDP-v1sgi/12.png b/vlm/train/iklDP-v1sgi/12.png new file mode 100644 index 0000000000000000000000000000000000000000..addc78b9a10ca7dbe86f361e46fefe8b8ca9a57e --- /dev/null +++ b/vlm/train/iklDP-v1sgi/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7636b1228c7004aaf97f6e90e0a5dd3b30e4a877439c4626ee4b99bb5c475170 +size 506829 diff --git a/vlm/train/iklDP-v1sgi/13.png b/vlm/train/iklDP-v1sgi/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5c2b85b8de8c4ffc27c0688f6aacbaf8c5781513 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b917e2d700190fdf13c4491fe5d95a7d9c6c6a981746504874ebbaebb17e171 +size 106045 diff --git a/vlm/train/iklDP-v1sgi/2.png b/vlm/train/iklDP-v1sgi/2.png new file mode 100644 index 0000000000000000000000000000000000000000..314118075adeb8fca0d6da0a97602c642437b73b --- /dev/null +++ b/vlm/train/iklDP-v1sgi/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a89b8bd64b69d6207ffdf5b2136fed32e3c130e42818ff726828845c78cf65 +size 567059 diff --git a/vlm/train/iklDP-v1sgi/3.png b/vlm/train/iklDP-v1sgi/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3c7a50d0298bd1bb849be0789c34a1294d717927 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:338d6e76b52d25c2c7b4c2515fd1469cab1bbe545d1a9d5b5b8d3a256729fb41 +size 528210 diff --git a/vlm/train/iklDP-v1sgi/4.png b/vlm/train/iklDP-v1sgi/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4c972469aa62ce41da17312c4aca6de3e3de3030 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e69bfef2612754682118a738998aaf1fbb5c882873266b6c5ecaf455e5ddc3 +size 444962 diff --git a/vlm/train/iklDP-v1sgi/5.png b/vlm/train/iklDP-v1sgi/5.png new file mode 100644 index 0000000000000000000000000000000000000000..29150ad859c18944bfe474a88f099932d9fa35ae --- /dev/null +++ b/vlm/train/iklDP-v1sgi/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:467011919aa7b83046958d0a79f9da7c7dedb95e5395d1a31d220999d06b0acc +size 458922 diff --git a/vlm/train/iklDP-v1sgi/6.png b/vlm/train/iklDP-v1sgi/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9a3068aa575a0e725ac8f070fee9e3c43575229f --- /dev/null +++ b/vlm/train/iklDP-v1sgi/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6c029e1d5938f36c3e0cf42b0ed65247956f3daa5120e051e904ab7dee3da1 +size 563943 diff --git a/vlm/train/iklDP-v1sgi/7.png b/vlm/train/iklDP-v1sgi/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e9dc03ae972ac7ec31054402e5e719cd26afc826 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4355a8d2e86023a5cf7797cb10e70b0603cfe1df94c45ba7a1a4d221cc1139b7 +size 635706 diff --git a/vlm/train/iklDP-v1sgi/8.png b/vlm/train/iklDP-v1sgi/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5f4c192a04d3c60d49889c7f145927dc3e1e0e43 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05893f68a569116070725fb204e78990dfec18ac208b2ddc227e102661b5d4fd +size 503139 diff --git a/vlm/train/iklDP-v1sgi/9.png b/vlm/train/iklDP-v1sgi/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e0be99a485b2945a8069525b629f96b8550e0c03 --- /dev/null +++ b/vlm/train/iklDP-v1sgi/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b91cc52a7930a13e5cb2bb0b99c000e69342546e77dcfba4594674d9d1c8ff +size 583628 diff --git a/vlm/train/lM2971LAwV/10.png b/vlm/train/lM2971LAwV/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3998dae53aa2676a259110cd0884f8946a2e8277 --- /dev/null +++ b/vlm/train/lM2971LAwV/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e323b07860bda00a95e8b50e5e62695aff0c90c2cf37e9dcb945ed297d52a1a +size 532898 diff --git a/vlm/train/lM2971LAwV/11.png b/vlm/train/lM2971LAwV/11.png new file mode 100644 index 0000000000000000000000000000000000000000..cc28fc785f58b51ad48e09ea470e94cd82e5808c --- /dev/null +++ b/vlm/train/lM2971LAwV/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79fc911b4dc834b5a53353f6bc6aea57f5733ef797b542a97f921d32f9b5dcf +size 578004 diff --git a/vlm/train/lM2971LAwV/2.png b/vlm/train/lM2971LAwV/2.png new file mode 100644 index 0000000000000000000000000000000000000000..39138c6223c6eee779d36fc3bed3733c66ddcd20 --- /dev/null +++ b/vlm/train/lM2971LAwV/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a0a6a07cc134bb3cf983c2806cdf0c2318365af191bd463d8390b41562dc5b +size 548954 diff --git a/vlm/train/lM2971LAwV/3.png b/vlm/train/lM2971LAwV/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b4e5be0461ad6763d4fda6b771b713d7120af67b --- /dev/null +++ b/vlm/train/lM2971LAwV/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5294829a5269d86c06e238157d67fba1329187636c7e359c801d555e0ef1882e +size 570563 diff --git a/vlm/train/lM2971LAwV/6.png b/vlm/train/lM2971LAwV/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9a7cf2211e00f493d6f1d4b669e3ce532e9635dc --- /dev/null +++ b/vlm/train/lM2971LAwV/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a8227987515c1365962289bf1d8922fdf67fe43ff976db8145011443e3fc9f +size 561316 diff --git a/vlm/train/lM2971LAwV/9.png b/vlm/train/lM2971LAwV/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a985a7bae9b4339236f9c0d6b4e3048c69f8c212 --- /dev/null +++ b/vlm/train/lM2971LAwV/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a49d945ca2d3be5bb310447971ba22091ffaaae512f8cf794fed8485709301c0 +size 493336 diff --git a/vlm/train/r1lZgyBYwS/0.png b/vlm/train/r1lZgyBYwS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..40cf1457939739d7ab61ff057047d6f364d2317f --- /dev/null +++ b/vlm/train/r1lZgyBYwS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce30cedb57c95e33957183f391ae35cd7f30c74ac04cf6a8d279025551d5db5c +size 475503 diff --git a/vlm/train/r1lZgyBYwS/1.png b/vlm/train/r1lZgyBYwS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..44e6be78ba801951e0d477b89ae4ab9c1901b70b --- /dev/null +++ b/vlm/train/r1lZgyBYwS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceb560f1a84c68a8aea6bbf9ccdba7e79f9a7e03eab9be0f198aa6ebea6ee1d8 +size 655789 diff --git a/vlm/train/r1lZgyBYwS/10.png b/vlm/train/r1lZgyBYwS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ccdbf0816cc725cc315d5881aa7287a06e09ec8e --- /dev/null +++ b/vlm/train/r1lZgyBYwS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a141d8dc30ef451e156712564317bcb537aebb03c9714348a40dbab26037517b +size 215532 diff --git a/vlm/train/r1lZgyBYwS/11.png b/vlm/train/r1lZgyBYwS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..07328deaaf8a459f7514dbc32614ac63ef1b1d3d --- /dev/null +++ b/vlm/train/r1lZgyBYwS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac29f5e98274a17deaee203e23ace890674a88473a51b0122a03a86be2a9a21e +size 417535 diff --git a/vlm/train/r1lZgyBYwS/12.png b/vlm/train/r1lZgyBYwS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..19ff814b84c1643f3e319769f032fb3f166d4daa --- /dev/null +++ b/vlm/train/r1lZgyBYwS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5bdc9b8c8ad6b8c563de535cdd3079c8b5898668150794cd0575cf63ab00a86 +size 453462 diff --git a/vlm/train/r1lZgyBYwS/13.png b/vlm/train/r1lZgyBYwS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cd6e59eda83b328b2b586e75e6f9d6b99fc0d4d6 --- /dev/null +++ b/vlm/train/r1lZgyBYwS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb73488a35d157a3fadb7eac94df880e753a47a4cf49c0ebf50638d29229ccb3 +size 414157 diff --git a/vlm/train/r1lZgyBYwS/2.png b/vlm/train/r1lZgyBYwS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..16c95df5a22f646190918ce8a1c9a2e8077df5ad --- /dev/null +++ b/vlm/train/r1lZgyBYwS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7931e9004df49286d5cf4229b472f434efadd4d258cb6b89011f257ed2e8c98f +size 470203 diff --git a/vlm/train/r1lZgyBYwS/3.png b/vlm/train/r1lZgyBYwS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8302afc8065e55c7f5c7467c833eab9c50e2c537 --- /dev/null +++ b/vlm/train/r1lZgyBYwS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced8764221fbf79378db7e9edb13a3e5c16a8b96b8326498ccf862ecc60a7811 +size 535063 diff --git a/vlm/train/r1lZgyBYwS/4.png b/vlm/train/r1lZgyBYwS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..074b6fcb7ea940cf18379e8bea3f0730224bc5a6 --- /dev/null +++ b/vlm/train/r1lZgyBYwS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:869f97e6fa4a7b7ea63ba957c301e87b7dd777026da9401f079276d5da8b52ea +size 465703 diff --git a/vlm/train/r1lZgyBYwS/5.png b/vlm/train/r1lZgyBYwS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e024b8a8bbdb67fb6932f6b39b7598707b85742e --- /dev/null +++ b/vlm/train/r1lZgyBYwS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e876ec7af67c90a735fa86819e4274a3bbd62c3f06b56c2297ac959d69fcfab +size 531946 diff --git a/vlm/train/r1lZgyBYwS/6.png b/vlm/train/r1lZgyBYwS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..27ef2608a8247df8ee184490e4de09000f71bb64 --- /dev/null +++ b/vlm/train/r1lZgyBYwS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a398619faa95f58c10c9ce00c9a9b7adfe474a8960dbf156dc6c77b7be753ab +size 511900 diff --git a/vlm/train/r1lZgyBYwS/7.png b/vlm/train/r1lZgyBYwS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a3bd94bbb1be96486c57ed4f6ff98e702a55c472 --- /dev/null +++ b/vlm/train/r1lZgyBYwS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e119bd9bfab0de288757f8d18a4969ab20336c0d8bf88a51a9c9c1d12f47ae +size 439577 diff --git a/vlm/train/r1lZgyBYwS/8.png b/vlm/train/r1lZgyBYwS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7fe6ea3265909529b6569ef80ac583582a6ab0bf --- /dev/null +++ b/vlm/train/r1lZgyBYwS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece1feade91182178378929219adb6c89b9f008a2acd1a865aa07e28cf2748d9 +size 64649 diff --git a/vlm/train/r1lZgyBYwS/9.png b/vlm/train/r1lZgyBYwS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9deff16224eed355b2a4cf1bf1a687c534f9ef17 --- /dev/null +++ b/vlm/train/r1lZgyBYwS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cffe64592c936968b6676a8fbef74f1ab5fcb47a1a9491bc9656ee2a0eafa40 +size 546354 diff --git a/vlm/train/rJe4_xSFDB/0.png b/vlm/train/rJe4_xSFDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ecb7c9fdc6d897e3cb97843b3a2d38a0ba8fdc74 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1f2de62d5a4ed0d36ab04d8a4a3f5c7999d3efaef9d3eeac041d444e6b39d5 +size 506972 diff --git a/vlm/train/rJe4_xSFDB/1.png b/vlm/train/rJe4_xSFDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c462dcadb817bab8755aa5b8bbfb5f8551e274d6 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e336f79060a4b142d83c80143d05e909663d30a0043dec0a48d2b5caa6a3b1 +size 507059 diff --git a/vlm/train/rJe4_xSFDB/10.png b/vlm/train/rJe4_xSFDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f79171aceca135f8d40c50ba33d77c56fdad2f40 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae681616e80c41466f1504abba31e9b77b02c6126bf01bde535dc9e345cf1b3 +size 608064 diff --git a/vlm/train/rJe4_xSFDB/11.png b/vlm/train/rJe4_xSFDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..df451d320ce89f698b120e51cf469977257ce7ad --- /dev/null +++ b/vlm/train/rJe4_xSFDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2597201536854c7262454943b2d39dfd680604841838ea33b115d498ede57a +size 539513 diff --git a/vlm/train/rJe4_xSFDB/12.png b/vlm/train/rJe4_xSFDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bbc8ab2978d127dc197141197e720c7e7714bb6f --- /dev/null +++ b/vlm/train/rJe4_xSFDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca561417b65731dd06baf887a8d172e3d8526012e3ce4857cd21f20f5d09cc62 +size 418814 diff --git a/vlm/train/rJe4_xSFDB/13.png b/vlm/train/rJe4_xSFDB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8096573b24028b48ee429e733fdd4b0f3f120bab --- /dev/null +++ b/vlm/train/rJe4_xSFDB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cece0b902abfb9f1902944a6631c8972c609606d0b16ed88af9fa0b6e12a94fb +size 242831 diff --git a/vlm/train/rJe4_xSFDB/14.png b/vlm/train/rJe4_xSFDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..09b17b30f3fe3903633cc2a15d621297387f1ab4 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cecc61cb1953d77b80a81712c33a1cdbb4defafba8fbaef247a34e4e7f33b941 +size 292470 diff --git a/vlm/train/rJe4_xSFDB/15.png b/vlm/train/rJe4_xSFDB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..0eab79410509feb310b3399de516c8a6b3b574d5 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4069abfc04ccad2d4c94a202ecb849d1366b64bd59c27914948b093f7bec0c81 +size 237902 diff --git a/vlm/train/rJe4_xSFDB/2.png b/vlm/train/rJe4_xSFDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..12f4bd3290ff8bff7ad7c78e8d81dc562477e85e --- /dev/null +++ b/vlm/train/rJe4_xSFDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035f060de7129a5ef9012a89bd734bb1ca0505519097d3823d25432f4cf96442 +size 533044 diff --git a/vlm/train/rJe4_xSFDB/3.png b/vlm/train/rJe4_xSFDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..df8d2233d051da25af651bff0a5882b68f6c9dd4 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d51b3ac341ac31460ed94d8e152b233090893ba8668e00f16415b4c48b909510 +size 560281 diff --git a/vlm/train/rJe4_xSFDB/4.png b/vlm/train/rJe4_xSFDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..51c194191e0b80526e587ae852cf7662c95aa46c --- /dev/null +++ b/vlm/train/rJe4_xSFDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0e02d3a2329edb426aa5424bb7a1c03e780f06269d71d415b6fc21ed1e08377 +size 546913 diff --git a/vlm/train/rJe4_xSFDB/5.png b/vlm/train/rJe4_xSFDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5a5a586bda856acca07a24136f42825c19fba2 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a0ed4548b908d8cc542bf2a90228fef5b9862061e5db038ea4f9aca470b8896 +size 563915 diff --git a/vlm/train/rJe4_xSFDB/6.png b/vlm/train/rJe4_xSFDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..16c3fd54a1f427b1c0a7c4640df5fee4f4a047e3 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ced21ee2e7361cb30858b80c1f2d9e44f6f0d7e9def23b849cc99971e30c0e +size 603057 diff --git a/vlm/train/rJe4_xSFDB/7.png b/vlm/train/rJe4_xSFDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d35f6a70f7c12d32317361d1fb724adef5b70eb2 --- /dev/null +++ b/vlm/train/rJe4_xSFDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:693ceceda6323fa34c8619f3b3ba42774a1a5dba9de6ce4c1d485cd456e4a31a +size 515438 diff --git a/vlm/train/rJe4_xSFDB/8.png b/vlm/train/rJe4_xSFDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f2c4717b78b912fbe3c6f82a841cffc0ef0bc53a --- /dev/null +++ b/vlm/train/rJe4_xSFDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b3fa553f027dc454b4df93841a248c2e16e77f0f98802a0d205c1bd666303d +size 506712 diff --git a/vlm/train/rJe4_xSFDB/9.png b/vlm/train/rJe4_xSFDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..524b28f5419c1e8e673ea16cff919e063908cc2d --- /dev/null +++ b/vlm/train/rJe4_xSFDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad16fcf4b0ebadba4a0491bfa71e6693294e110749e3cd4fd5d737be452f6b5e +size 505311 diff --git a/vlm/train/rJqFGTslg/0.png b/vlm/train/rJqFGTslg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..764e057066301ad1fed26a10280a6cb1df160d72 --- /dev/null +++ b/vlm/train/rJqFGTslg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e89b1d8f923063e59d1d3dfab24f6cc02f0038b79214612af8abdfc4678d6ad +size 498810 diff --git a/vlm/train/rJqFGTslg/1.png b/vlm/train/rJqFGTslg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9b9471e8ba2eda685958fff828ba1a23a81dd58d --- /dev/null +++ b/vlm/train/rJqFGTslg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c74375de6e37ee7a71eacf892f6f95d400a81bc22aeb5efe5a5ab845ec84831 +size 623226 diff --git a/vlm/train/rJqFGTslg/10.png b/vlm/train/rJqFGTslg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3f9c89fbdc4bd96a6c40db84eca41eac60fd7888 --- /dev/null +++ b/vlm/train/rJqFGTslg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618b3ae219dd3dfe607185ffdf7a8a87668de30469094a9a92ba29b71247b020 +size 491345 diff --git a/vlm/train/rJqFGTslg/11.png b/vlm/train/rJqFGTslg/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8891bbffdf7e42bcd49606a30278b2a1bba6f74b --- /dev/null +++ b/vlm/train/rJqFGTslg/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6ca22b238c042419853a91839b649c0dc89c54ef912d6eeaba2ca75ea9950e +size 309491 diff --git a/vlm/train/rJqFGTslg/12.png b/vlm/train/rJqFGTslg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e66ba2d776b273ff5b9603a918d0c8bcd5b4f3f4 --- /dev/null +++ b/vlm/train/rJqFGTslg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4f0e0ded9455f827a97d10bacdc970ace9c58c99e2d2383e9a2dd9ed98f508 +size 417492 diff --git a/vlm/train/rJqFGTslg/2.png b/vlm/train/rJqFGTslg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f5571bff5e7b8f06e97279ea885d7e31d01d4e79 --- /dev/null +++ b/vlm/train/rJqFGTslg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd005a36623c8a536250f2727e60e3021739f8f2691f398ef7b38e533d561aee +size 474117 diff --git a/vlm/train/rJqFGTslg/3.png b/vlm/train/rJqFGTslg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..055d50b89c2aa680acfef678f41cf88161ef005f --- /dev/null +++ b/vlm/train/rJqFGTslg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac439e796e4909ffe6b3ab23549677dd5c32b9222f264b6d81178bbb6bc93e2 +size 634600 diff --git a/vlm/train/rJqFGTslg/4.png b/vlm/train/rJqFGTslg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d2a225bf014ef84e0390b98e97df9162c8e84f --- /dev/null +++ b/vlm/train/rJqFGTslg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91a0e08cded873e86ca88b49cad47ffae486d0ea7320c9d495d27279068aa0c +size 421543 diff --git a/vlm/train/rJqFGTslg/5.png b/vlm/train/rJqFGTslg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..554777fc5da384f007068ee468fa817970d6d901 --- /dev/null +++ b/vlm/train/rJqFGTslg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5b7e6c96d207d1daac6f587880b74de9ab5a738d155bf020aee34a6178a7ac +size 538027 diff --git a/vlm/train/rJqFGTslg/6.png b/vlm/train/rJqFGTslg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6c1e39238a94c7462f8593b51d4b48ffea5139a2 --- /dev/null +++ b/vlm/train/rJqFGTslg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef963b776323d473be54cb323488fb954187ae6437a1585cdce7c8452d658b0 +size 466874 diff --git a/vlm/train/rJqFGTslg/7.png b/vlm/train/rJqFGTslg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..daa519a79f8abf898ab817ce29ea33e85a22e2bb --- /dev/null +++ b/vlm/train/rJqFGTslg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c3a564506cf71c22c552a16257bc5ec7aa7df53a7ce15e58109f1c593d2d0e +size 626672 diff --git a/vlm/train/rJqFGTslg/8.png b/vlm/train/rJqFGTslg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d1db0a765e0416b765155db1421cdf300fcbaa45 --- /dev/null +++ b/vlm/train/rJqFGTslg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0632c52cde38e72804bd59a0f9f5b50a195b5bb494baa53d2679dded516e175 +size 611031 diff --git a/vlm/train/rJqFGTslg/9.png b/vlm/train/rJqFGTslg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..dc8eeba713c11b1df96eb4635a519314aaf6db51 --- /dev/null +++ b/vlm/train/rJqFGTslg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909cb355ad3f6a51e80b1e7389f43f165a7880f57f77d88a77057735aef8b020 +size 580751 diff --git a/vlm/train/rJxt0JHKvS/0.png b/vlm/train/rJxt0JHKvS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..10c1c7bb097a5c7adf7f1cc90dfef1e4925f0b4f --- /dev/null +++ b/vlm/train/rJxt0JHKvS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd9e246fcb6b04d880924af96b69d7127a15dcc7edad80bc7ff7099bdb2ae4f +size 524232 diff --git a/vlm/train/rJxt0JHKvS/1.png b/vlm/train/rJxt0JHKvS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d07aa2a3e4992ae7889a888f1b17162df05fb260 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d2fee85cf0f4ca4fa1f17a7e8252ec070b07128297620bac9866c45f76b49d +size 590323 diff --git a/vlm/train/rJxt0JHKvS/10.png b/vlm/train/rJxt0JHKvS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..cea482daf7536600340fcabea22352894ac6d874 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef11550fc395b45b565193567f8a90403215691bb40f28be55e5e9f26fd2858 +size 361834 diff --git a/vlm/train/rJxt0JHKvS/11.png b/vlm/train/rJxt0JHKvS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..247471893788091a7e7cbfe490bdb863ab629a94 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367fbf3e3eede6ff514b60098c7010a43b9e970dcbb7a41d55c11e331fecc380 +size 428909 diff --git a/vlm/train/rJxt0JHKvS/12.png b/vlm/train/rJxt0JHKvS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..fb9cb6bb348d63fe6f96d73bbfd430f46fa61f3d --- /dev/null +++ b/vlm/train/rJxt0JHKvS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69fa800cb2d6b2de04674f9ffe72c8d9cfd867eefc0db3f2d44fecc08f4ca9e +size 501900 diff --git a/vlm/train/rJxt0JHKvS/13.png b/vlm/train/rJxt0JHKvS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..78005f38837ab871ca1908bea076cd3383fcec5f --- /dev/null +++ b/vlm/train/rJxt0JHKvS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098efb9a02d83bffce52c217a67496fd7eee732a6c7a855826663c1a5c95a44b +size 499858 diff --git a/vlm/train/rJxt0JHKvS/14.png b/vlm/train/rJxt0JHKvS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d98678d34a14d0d4e1bd7396ef511d0e450c3702 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6cef66d8eeed87d0484130cc318a85c249f2809e7eb79b5b480b16f0ab42e28 +size 474510 diff --git a/vlm/train/rJxt0JHKvS/15.png b/vlm/train/rJxt0JHKvS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8366ba1e9dfc690a538e9cd2d1c3c32b30222eb6 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9de646f91a73f5b6a95c8f224e3ee563ee734966ffa77095b7eab0000cf40c2 +size 586202 diff --git a/vlm/train/rJxt0JHKvS/16.png b/vlm/train/rJxt0JHKvS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..617a47f60a38d9fb9a5174fb48cfbc9e9281e9c9 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a95ff6fbcfed6e3f318bf88694c06443a7d055bb66174eb3e38c8361325b7546 +size 110937 diff --git a/vlm/train/rJxt0JHKvS/2.png b/vlm/train/rJxt0JHKvS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2f65a8b85d332b230f2522665f2727e08a71aae8 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a27c2256f13106021755e898965185898ba2fc27e24609d39edcf477b74abe3 +size 543642 diff --git a/vlm/train/rJxt0JHKvS/3.png b/vlm/train/rJxt0JHKvS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a4fe086ee4692475748d4f956347ad01051fd55a --- /dev/null +++ b/vlm/train/rJxt0JHKvS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0f60ac284fa9bd711717380597b49bdf6fe150a8964b6e9f561bfdef53ed339 +size 500115 diff --git a/vlm/train/rJxt0JHKvS/4.png b/vlm/train/rJxt0JHKvS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7ee73e56371c1bd187104e0180f688535fd4c5a7 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fda85d848351662a2b4268b0b999f0983a2b2f477a4adfbfe993be27fdec822 +size 506725 diff --git a/vlm/train/rJxt0JHKvS/5.png b/vlm/train/rJxt0JHKvS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ef249acf3bd433d9ccffa6da244cfd6822ff64f0 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf85944d7f3de0af17ff948d3c6d03291e75250ab202fc179a037d5ac2b776c7 +size 531959 diff --git a/vlm/train/rJxt0JHKvS/6.png b/vlm/train/rJxt0JHKvS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2f619839156e5dc0d810889cb457299386b9f415 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4bc627ab8ab52bf4f1956bcc1a965d8ab361876f2cef030b5af6e29936bd841 +size 516695 diff --git a/vlm/train/rJxt0JHKvS/7.png b/vlm/train/rJxt0JHKvS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dc862f604eca623748141b3820b35b3d649e3ec6 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb25d366ed374db0ffdeaa7a3df1d8717f1d34cac9fefe5c4633bd33ff61df3 +size 549726 diff --git a/vlm/train/rJxt0JHKvS/8.png b/vlm/train/rJxt0JHKvS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f4b5d0312674bb946c0cf816d3227810538d4cf4 --- /dev/null +++ b/vlm/train/rJxt0JHKvS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901a3a63e6631a481127b41c94f8be740b6967c2c5ad6facad5568811632d43c +size 550650 diff --git a/vlm/train/rJxt0JHKvS/9.png b/vlm/train/rJxt0JHKvS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d6d22e88a176d2b10304ea0f20bfc6f4c200ea8e --- /dev/null +++ b/vlm/train/rJxt0JHKvS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b5871c4544a040b49250aab6e8a13b7399a4f6e08a2a26c2a6d68195b74235e +size 531055 diff --git a/vlm/train/rh0vIXw6i33/0.png b/vlm/train/rh0vIXw6i33/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a49fc44f413424d71d2f66ae3e785a01321ad373 --- /dev/null +++ b/vlm/train/rh0vIXw6i33/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31dce5a33883bf706f6cdf8020a832a3109d0421d741749d55a320c1e801c8b4 +size 405477 diff --git a/vlm/train/rh0vIXw6i33/1.png b/vlm/train/rh0vIXw6i33/1.png new file mode 100644 index 0000000000000000000000000000000000000000..34ad46b8094befa5a9505a7c5794c2e1502edfb3 --- /dev/null +++ b/vlm/train/rh0vIXw6i33/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40f1976155f0917512c156dbfd70a1644208fd135c60a6c7f25e57f1d2108dc +size 590137 diff --git a/vlm/train/rh0vIXw6i33/10.png b/vlm/train/rh0vIXw6i33/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3402027bf8e5b168bfa979c28f853e15f70e378c --- /dev/null +++ b/vlm/train/rh0vIXw6i33/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8cba5ecf2d5bb231ff9a857c96b85f2fe846b506226af166c5e9a6d95f42f02 +size 492479 diff --git a/vlm/train/rh0vIXw6i33/11.png b/vlm/train/rh0vIXw6i33/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4627723b3d0d13e710435752c5594541f62f80ce --- /dev/null +++ b/vlm/train/rh0vIXw6i33/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4728ca88d463a47a2c1df367e060fef898957ac5c462593defacda84de3e8608 +size 544180 diff --git a/vlm/train/rh0vIXw6i33/12.png b/vlm/train/rh0vIXw6i33/12.png new file mode 100644 index 0000000000000000000000000000000000000000..014718eb78b301357d1f722372640d779a21f67a --- /dev/null +++ b/vlm/train/rh0vIXw6i33/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beaf81ca4cdbe533a938fc47f9f946e2f10f2c6665c08eeaaa46bbe2581e029c +size 535556 diff --git a/vlm/train/rh0vIXw6i33/13.png b/vlm/train/rh0vIXw6i33/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c52c0f7973e756c64b4024bf1ae069dd1f0c999d --- /dev/null +++ b/vlm/train/rh0vIXw6i33/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506fc9c5a4c6660e0cc180a67e40c63832929027cc96ac384daebf11dfeb6593 +size 440366 diff --git a/vlm/train/rh0vIXw6i33/14.png b/vlm/train/rh0vIXw6i33/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f1ed5da983205902b330d4e6c50aa237fec0f206 --- /dev/null +++ b/vlm/train/rh0vIXw6i33/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f06a8cd5758c20671745f8c63dd314bdb113533b94914aa231e020b97a7dcd +size 72387 diff --git a/vlm/train/rh0vIXw6i33/2.png b/vlm/train/rh0vIXw6i33/2.png new file mode 100644 index 0000000000000000000000000000000000000000..efc9532cce7634a8c5d5dbd9b78b7bc5a50cf912 --- /dev/null +++ b/vlm/train/rh0vIXw6i33/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c722626c1715f5ea75cba7b7da15b4b78330c4b23e7bc710d8e4f44c4c945eb2 +size 549228 diff --git a/vlm/train/rh0vIXw6i33/3.png b/vlm/train/rh0vIXw6i33/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b62d534017b2fd39496dd391dd9ea3d9dc85c1bb --- /dev/null +++ b/vlm/train/rh0vIXw6i33/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa04cb1065c1cfa179f34565ddeee1045e00fbf95a7a354e43f80b6cba13dffd +size 443214 diff --git a/vlm/train/rh0vIXw6i33/4.png b/vlm/train/rh0vIXw6i33/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5c0e49695787777258dc26e7b4f58cd459c28d12 --- /dev/null +++ b/vlm/train/rh0vIXw6i33/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf669c9c161961e4ea00425916c761113e0b590693de59f85e672cf3300f864 +size 462552 diff --git a/vlm/train/rh0vIXw6i33/5.png b/vlm/train/rh0vIXw6i33/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e59f71410146313df702a8ddffdcf503bf514dac --- /dev/null +++ b/vlm/train/rh0vIXw6i33/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17f356eba3bb7d13b2cdff253965c14e409ea8e7d173b6e3888aef300aa5ef7 +size 486709 diff --git a/vlm/train/rh0vIXw6i33/6.png b/vlm/train/rh0vIXw6i33/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a8cc08fdb35445f0bd618ed4172f69537650fe --- /dev/null +++ b/vlm/train/rh0vIXw6i33/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b34ece0dc988761c1b5a5c5ee45310fc5f0708896e35450fd430c72e516891f2 +size 353408 diff --git a/vlm/train/rh0vIXw6i33/7.png b/vlm/train/rh0vIXw6i33/7.png new file mode 100644 index 0000000000000000000000000000000000000000..315ce2bbf0ade5568853a0ba2f9eaf8b27925cb2 --- /dev/null +++ b/vlm/train/rh0vIXw6i33/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33812b6f8b50e89086d6903ae32e0410b178f5d137137c092b853583a149d3e4 +size 417080 diff --git a/vlm/train/rh0vIXw6i33/8.png b/vlm/train/rh0vIXw6i33/8.png new file mode 100644 index 0000000000000000000000000000000000000000..6ccb307eb91fd67b35674483305e6bcb4e7af034 --- /dev/null +++ b/vlm/train/rh0vIXw6i33/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb57dae936668580596573195fb760badb9ac33f1ec44f56d800bcdbe1ebd94 +size 440997 diff --git a/vlm/train/rh0vIXw6i33/9.png b/vlm/train/rh0vIXw6i33/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a926d720e0cd353c88819aca7f580559447fc567 --- /dev/null +++ b/vlm/train/rh0vIXw6i33/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91a0e363f110aed020491a05e1863764bc042a09d4fdc5253009280fc700b6f +size 413741 diff --git a/vlm/train/rkeZIJBYvr/0.png b/vlm/train/rkeZIJBYvr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..301a652fd4adb545b3c9f4ec6c9ca8b159b269df --- /dev/null +++ b/vlm/train/rkeZIJBYvr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708fed28713b80aeabdbc416156ed5b7ce2d0796924977f7e899f17999b754d3 +size 490998 diff --git a/vlm/train/rkeZIJBYvr/1.png b/vlm/train/rkeZIJBYvr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..df99cc1de86f8bcb40603b9cccf7ef26b4a7d8df --- /dev/null +++ b/vlm/train/rkeZIJBYvr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7489a2f758411dce022d453219d64af9f8fb6054b3212b8dc1b6d92441248ee +size 558912 diff --git a/vlm/train/rkeZIJBYvr/10.png b/vlm/train/rkeZIJBYvr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..37779c2e67a0198eeb36cb6a0b8b3fbff167ab32 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e9cbdd41888e4945458d52327334dc2ba5f20b30b6c4c82c69d26631fd3387 +size 370165 diff --git a/vlm/train/rkeZIJBYvr/11.png b/vlm/train/rkeZIJBYvr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c6d83a61fb69478ef0b15e0cffdf79f2548a8330 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1439fa4ec7451bd33c382a7b9601b16d353894dc70d8d5f36a45e2de98e349de +size 547726 diff --git a/vlm/train/rkeZIJBYvr/12.png b/vlm/train/rkeZIJBYvr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b219d210c7fec4e7908517f0601a56d3652d5f17 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbe409048f2414e2afb935b04d3468aa045b0ce9cbd11eb29d6aab6f1eba552 +size 379953 diff --git a/vlm/train/rkeZIJBYvr/13.png b/vlm/train/rkeZIJBYvr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..10c1d8789caf36715dd0fb935abd4a15e6b80255 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b36b4842114b6759d3d2668d848488b1d14b4a0e0709deb3d26f94bb3eba92 +size 534330 diff --git a/vlm/train/rkeZIJBYvr/14.png b/vlm/train/rkeZIJBYvr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..28b313111a61d0aaa004bd8b6cc106eda9c7e206 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5946e0cd4dc5da2525710e443f56a3ef109d3dcd3913426d13b3329942e2a0d0 +size 72189 diff --git a/vlm/train/rkeZIJBYvr/2.png b/vlm/train/rkeZIJBYvr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8d70b6c7161c6398f32c34031947fbf28f056d60 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ad296baba8f30a1399dbe9573668a1d7fe08f9c911df4cb9ff806545f5a1e8 +size 616832 diff --git a/vlm/train/rkeZIJBYvr/3.png b/vlm/train/rkeZIJBYvr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f804e0e2d3d64ca8af4750cc5ab98517e94013d1 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a95e60ff2107f1780466d8acaedb8c2a5554542e9aeeb08d049075a7d6df4e2c +size 524877 diff --git a/vlm/train/rkeZIJBYvr/4.png b/vlm/train/rkeZIJBYvr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..270d5051c13ae25e5134592e1970115fcd2fea40 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57fa9e0df02d43ce36d5da9d1e4313c65d1808adfa36b10665d99a3e6f66e45 +size 547787 diff --git a/vlm/train/rkeZIJBYvr/5.png b/vlm/train/rkeZIJBYvr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1044ce96270672ab7fa75a85e79aa2af8e4d4022 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19f3a987dbc292d44e90a16c647834c8e31172f73124aa079872a0591576525 +size 564411 diff --git a/vlm/train/rkeZIJBYvr/6.png b/vlm/train/rkeZIJBYvr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..12e20c988171c1479542ef9ebd5773a3dc30aeda --- /dev/null +++ b/vlm/train/rkeZIJBYvr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e22fa9db47f4d12fb31627d02e4718aa74fbf4350137183651e45c1c5cd6d6 +size 633331 diff --git a/vlm/train/rkeZIJBYvr/7.png b/vlm/train/rkeZIJBYvr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..77dcd83c2b6d3ce0bc1823b120dff3275de65449 --- /dev/null +++ b/vlm/train/rkeZIJBYvr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd73c3efb35daea2a05b3288fa40962f1eba3e60d522fe51455ade5ca57ff5ec +size 642089 diff --git a/vlm/train/rkeZIJBYvr/8.png b/vlm/train/rkeZIJBYvr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d295ab1a54a2f0ffe09fa7e46e349c380bb56c --- /dev/null +++ b/vlm/train/rkeZIJBYvr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920625bdcf3858e439db6ad4e9d306eb3eaeed222050b9aee9a83c2b026e5501 +size 620588 diff --git a/vlm/train/rkeZIJBYvr/9.png b/vlm/train/rkeZIJBYvr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5f3fcd4a271030922b1301a8d31b3faa79b7617d --- /dev/null +++ b/vlm/train/rkeZIJBYvr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece50416aaf531b02281c52f076f92cc39e845060564eb69cceb21dcab8f33b5 +size 508997 diff --git a/vlm/train/rylBK34FDS/0.png b/vlm/train/rylBK34FDS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..729aa49a533050d84098c64edfbb4855852a4021 --- /dev/null +++ b/vlm/train/rylBK34FDS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59641fc765d405a3afb66475fc90cbeea4ab34b89bc331100bd86fb7008cbb1 +size 538425 diff --git a/vlm/train/rylBK34FDS/1.png b/vlm/train/rylBK34FDS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6a152dfeb0d8d5a1e763633727a4835dd7241d17 --- /dev/null +++ b/vlm/train/rylBK34FDS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c028a4d6daa95a1ba8d032098db4fb265277afb2f14a0bb6b85a3f3f23cd3fbb +size 642390 diff --git a/vlm/train/rylBK34FDS/10.png b/vlm/train/rylBK34FDS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1c3b2baac76809d0d35301f29eaae034aba36c13 --- /dev/null +++ b/vlm/train/rylBK34FDS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b825c6933c46a65f74a8dfba4d8dd681f5f4faf528c5fa5b81004eb37527af7c +size 544579 diff --git a/vlm/train/rylBK34FDS/11.png b/vlm/train/rylBK34FDS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d5ab131863ed7026e0143df5b8b34b5a1c486666 --- /dev/null +++ b/vlm/train/rylBK34FDS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6b49459e848ed73ed2f6007b504a0d318d2c0e13ccf55c1fba0ff48225bb0f +size 177754 diff --git a/vlm/train/rylBK34FDS/12.png b/vlm/train/rylBK34FDS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9b5ddb6f62dd0957f87332a5610481202b2dc654 --- /dev/null +++ b/vlm/train/rylBK34FDS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69c395ddf4f898510174b0cf672fae874f49a36053ccfcae3d9d3374bc64b064 +size 409625 diff --git a/vlm/train/rylBK34FDS/13.png b/vlm/train/rylBK34FDS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0ac9a1e6673ddcd6d6d99a0ff781eeb88559f5c1 --- /dev/null +++ b/vlm/train/rylBK34FDS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12b228afa16b2e264df8e679afb22399878a75987418ebde3248e3b5f37cfd67 +size 565459 diff --git a/vlm/train/rylBK34FDS/14.png b/vlm/train/rylBK34FDS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..21e046822e1cd6f945a487d46b02e7df67039838 --- /dev/null +++ b/vlm/train/rylBK34FDS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c1e3fd9288c4fabb35f7de9a94ea454c2bd8775259b0157729bd1aaa7771e8 +size 409551 diff --git a/vlm/train/rylBK34FDS/15.png b/vlm/train/rylBK34FDS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e8a9c688d49f09b762cd14e4af0449c91d4a3b90 --- /dev/null +++ b/vlm/train/rylBK34FDS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0010d55e6cbd8c1c017744e9747ea3bc7e526459ab305109a22e9770e89ca24e +size 366989 diff --git a/vlm/train/rylBK34FDS/16.png b/vlm/train/rylBK34FDS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..7a6666ededae6694d306ea86809f27b62ca51dc5 --- /dev/null +++ b/vlm/train/rylBK34FDS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6308c9255a3b920892260f99c8c7a7f804a55be8636f06a1bc254e74c63b5a4 +size 378888 diff --git a/vlm/train/rylBK34FDS/17.png b/vlm/train/rylBK34FDS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..8297a7623ec495b5abb83e99f5e128e0bc5ecbc0 --- /dev/null +++ b/vlm/train/rylBK34FDS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a39e9e29b77cf93062f490d093429d55d3eea5f0ea4bdc87213a3ec833b18330 +size 287321 diff --git a/vlm/train/rylBK34FDS/2.png b/vlm/train/rylBK34FDS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1586c3c69b62d3967e6938634a269fb19bdefabd --- /dev/null +++ b/vlm/train/rylBK34FDS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001446fbdec6458f5bdcd676d594c60b4b0cd786a49de7ab21170e550736801a +size 673803 diff --git a/vlm/train/rylBK34FDS/3.png b/vlm/train/rylBK34FDS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0592d9335267403625bbc8b6522d2ac6ba6c9cb8 --- /dev/null +++ b/vlm/train/rylBK34FDS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d51d6555df8b7d86ca8c5d25d13b6f0e6e4e7005d34f8b9b7ee220b93a4ff6 +size 499211 diff --git a/vlm/train/rylBK34FDS/4.png b/vlm/train/rylBK34FDS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a2bd9f7996638e3a660b48248fbe8756564d2ac2 --- /dev/null +++ b/vlm/train/rylBK34FDS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704158118b95ab42db4626067fdac6714a2b250182937becc2482043e97c7c9b +size 519768 diff --git a/vlm/train/rylBK34FDS/5.png b/vlm/train/rylBK34FDS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2b1c8b5eeed1e650a2b1b7c1dd6d36cce418a8 --- /dev/null +++ b/vlm/train/rylBK34FDS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43128b18bcf647c7a77adb8ce6cde90ca3805c12853539bd9a97c490f94ca8e2 +size 502559 diff --git a/vlm/train/rylBK34FDS/6.png b/vlm/train/rylBK34FDS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..845b64adf5562f0f927b62cd9f5bd7e7c0065ee3 --- /dev/null +++ b/vlm/train/rylBK34FDS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c24060841eef9ebfdfefbb2ee3aeb4f9ba54d2274b611cb4a81f4a266e2f53 +size 513442 diff --git a/vlm/train/rylBK34FDS/7.png b/vlm/train/rylBK34FDS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c1202eb98cc8de397a3dfcd8026b7815ed7febcd --- /dev/null +++ b/vlm/train/rylBK34FDS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c578e89fa09393121f111cfbb654421ea92dfe472115a340fed494cb3c5e07 +size 574663 diff --git a/vlm/train/rylBK34FDS/8.png b/vlm/train/rylBK34FDS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ba1daf7616168d10bbd34a1bcc1d71530c0974fb --- /dev/null +++ b/vlm/train/rylBK34FDS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8af0598c1d3e3aed3b9a707c1a2357d70c1c5003ec26f156a3b55bde29f153bd +size 536743 diff --git a/vlm/train/rylBK34FDS/9.png b/vlm/train/rylBK34FDS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..47b7102f883860b28d2d0de6f0fa7022409e54c5 --- /dev/null +++ b/vlm/train/rylBK34FDS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ce3339bc972e54a917bf9465fe8b474de627ae9c86d4a3b7f1ef462c74a44d +size 536052 diff --git a/vlm/train/rylejExC-/0.png b/vlm/train/rylejExC-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e880e3529d440f87f3ccec512642d05f0e18a3d9 --- /dev/null +++ b/vlm/train/rylejExC-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5852108e431fee2888a567908c18ba50f5a042f5395d3879583454c7aae9e3a9 +size 527418 diff --git a/vlm/train/rylejExC-/1.png b/vlm/train/rylejExC-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6822b9e1e861f00d46175eb83418af7796a1207d --- /dev/null +++ b/vlm/train/rylejExC-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f7b95e67446ad0e304e936acb30c0c32ac4ac3f165fcbd1ef29588eb14aae9 +size 571145 diff --git a/vlm/train/rylejExC-/10.png b/vlm/train/rylejExC-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..863a5fbb1538c00b56dbd7a2ad740eb76314e42c --- /dev/null +++ b/vlm/train/rylejExC-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:545ef6f33e3ca6ed74c1104ad030c48c3c9275f2f24b11adcf364420b5701921 +size 278420 diff --git a/vlm/train/rylejExC-/11.png b/vlm/train/rylejExC-/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4c2d8466d4aa3b272278bb8e7eff6c3ecb061fe7 --- /dev/null +++ b/vlm/train/rylejExC-/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eef596972a43e5d313907256bbf9850394efeb9c35ddea8b58dcbbc9b0b3e9a +size 296326 diff --git a/vlm/train/rylejExC-/12.png b/vlm/train/rylejExC-/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c237e0ba3188b8de3e86fd8e5da6b80e75560446 --- /dev/null +++ b/vlm/train/rylejExC-/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58d3aeebb8492086edb06ddad82ce0502f614a4df47f7b0d4a037fb7f231bd06 +size 313846 diff --git a/vlm/train/rylejExC-/13.png b/vlm/train/rylejExC-/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bf657eee37c48c339fc90a9bac9a62c2254182d6 --- /dev/null +++ b/vlm/train/rylejExC-/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b67c123573ea7debcd728f357f5c67920fd06d5217d39559e9b3e32b377e08f +size 294610 diff --git a/vlm/train/rylejExC-/14.png b/vlm/train/rylejExC-/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0f079fcf58b2b10765fb89530bc1e8405b0b340a --- /dev/null +++ b/vlm/train/rylejExC-/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066c001103b5ccb1e75751c0462a820129b3a5b1e14348d100e90592bf261a41 +size 188982 diff --git a/vlm/train/rylejExC-/15.png b/vlm/train/rylejExC-/15.png new file mode 100644 index 0000000000000000000000000000000000000000..fcdea13fc5a76e64e2b1cf73d615343acf0a2051 --- /dev/null +++ b/vlm/train/rylejExC-/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed0fde1bbf05745908388687e79f3350040128ee9de9937f15ca7dddc5a08a1 +size 306469 diff --git a/vlm/train/rylejExC-/16.png b/vlm/train/rylejExC-/16.png new file mode 100644 index 0000000000000000000000000000000000000000..fd03e4f1ac30d1ae4f6a252b34cd02cb638212d9 --- /dev/null +++ b/vlm/train/rylejExC-/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c447977bab1d162014fc4475f62578bb79bbd5aafeebfd040aef363fd4de7f27 +size 316092 diff --git a/vlm/train/rylejExC-/17.png b/vlm/train/rylejExC-/17.png new file mode 100644 index 0000000000000000000000000000000000000000..65764e8580c7a71f20787f4c7a65b11af043ef38 --- /dev/null +++ b/vlm/train/rylejExC-/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c600a0a4c7d2aa99f859dff26663727b45cadb82ab82e688e5df9ccc6d605d +size 378486 diff --git a/vlm/train/rylejExC-/18.png b/vlm/train/rylejExC-/18.png new file mode 100644 index 0000000000000000000000000000000000000000..e7eb0187de6bf5077ffd536d59e485ecdb163a7a --- /dev/null +++ b/vlm/train/rylejExC-/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b5afc6878ba832f27e98729504e713f2e3fd4e38d6ce25af3a86fc3b7646b8d +size 407860 diff --git a/vlm/train/rylejExC-/19.png b/vlm/train/rylejExC-/19.png new file mode 100644 index 0000000000000000000000000000000000000000..66b48d19134dcfe2b0248f5e5fb6241a4c02632a --- /dev/null +++ b/vlm/train/rylejExC-/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da41dea499d685093c8d0136a61f2f163b1233b0d590d420a00f32162438a7f +size 198875 diff --git a/vlm/train/rylejExC-/2.png b/vlm/train/rylejExC-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c37942464f85bf7e0957f0aa900dc66abaf5577e --- /dev/null +++ b/vlm/train/rylejExC-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3502a69fe73598e363629a168eca49eac7ee34860d93ae40989c02ce684dbd +size 529106 diff --git a/vlm/train/rylejExC-/3.png b/vlm/train/rylejExC-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..aa37bb23982db0d410a4810e2dcbd89899b25779 --- /dev/null +++ b/vlm/train/rylejExC-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d28a93a5174746dcad8d65b9145ab2054299b5f67f459a714fc535077044f54 +size 534439 diff --git a/vlm/train/rylejExC-/4.png b/vlm/train/rylejExC-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..35373f4cd2bb5c1d5d7796a886426ff99e724337 --- /dev/null +++ b/vlm/train/rylejExC-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0a0bc8d5c3e0e85828d6b51b80a96658bc27efa00a7f8c78fc2bd69273e16d +size 575515 diff --git a/vlm/train/rylejExC-/5.png b/vlm/train/rylejExC-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..82bf1b0568ea6eb180901e93ae1a79f2b9a16eef --- /dev/null +++ b/vlm/train/rylejExC-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ebf79a6d5621743df0d9eca53940b505b8a108a7ca61f75c3f6fef172dd753 +size 577497 diff --git a/vlm/train/rylejExC-/6.png b/vlm/train/rylejExC-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4ea306fdf22630d39adb3eac65467de85fbf8884 --- /dev/null +++ b/vlm/train/rylejExC-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81deb42ff25f99a36a3943e14aa8647c25f7e0c34c5e10e0d6bfe7c56835ab8d +size 637356 diff --git a/vlm/train/rylejExC-/7.png b/vlm/train/rylejExC-/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7d00fa2ef0d2b986cbb0c5bebd1b889bd12ae9b6 --- /dev/null +++ b/vlm/train/rylejExC-/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426e49f35d4fbe8732a65a013e72be46f5528acb0686022bf65e8832e0a40281 +size 507509 diff --git a/vlm/train/rylejExC-/8.png b/vlm/train/rylejExC-/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f99a9957f37031464d5503b6b8e10beeee96a9da --- /dev/null +++ b/vlm/train/rylejExC-/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ff57a261ac7a28b098521bd68918239feca8b532410a80bf9f41aa589d82bb +size 435263 diff --git a/vlm/train/rylejExC-/9.png b/vlm/train/rylejExC-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8f9edffc44030ef1e9330d252fcf839d4b53e7cd --- /dev/null +++ b/vlm/train/rylejExC-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c823decca284b2528c3dc0dd07b99b218995a72d3c215c042c60503d6068404c +size 350625 diff --git a/vlm/train/yvQKLaqNE6M/0.png b/vlm/train/yvQKLaqNE6M/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4605378799ce677cc31c320c8115e19c8281c457 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16d126e748449b8f6f76984ffaaef1dc8e70a9b4033060efe3f316775db0b34 +size 1037379 diff --git a/vlm/train/yvQKLaqNE6M/1.png b/vlm/train/yvQKLaqNE6M/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ed831e957b3fee0b785077e05cd496ee72afb645 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e232ff2c84427230b13ca6fab8496a1c89354b1b817bb22dcc8f292080a8d43b +size 652950 diff --git a/vlm/train/yvQKLaqNE6M/10.png b/vlm/train/yvQKLaqNE6M/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b7ab517e8f30a9b4b5d4d55b522a67e7d2bb7e42 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec1b6802177b7750da8f5317811a21982661b16d469bb1eed3d852b42caf1d8 +size 518151 diff --git a/vlm/train/yvQKLaqNE6M/11.png b/vlm/train/yvQKLaqNE6M/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f2f186d192a3545dce0517453070c9b14d25c655 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40eccc2df74af8ff1e9c0b8c3034e8b5bf456c11ecd3237d63f1174e8f357ad +size 562362 diff --git a/vlm/train/yvQKLaqNE6M/12.png b/vlm/train/yvQKLaqNE6M/12.png new file mode 100644 index 0000000000000000000000000000000000000000..123312ad9f135eac3a335757ab1b663d2563c230 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d33c9bb26c88680168f44e2f5e7d2b2955dee37e8b67088a53b3d30b79d7b1c +size 118190 diff --git a/vlm/train/yvQKLaqNE6M/13.png b/vlm/train/yvQKLaqNE6M/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2cf18f5747ba70625175e168a204f9679fbb75aa --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7a6335cf96a9b8c0e46ca1042d6466cd257842c6721e5b4714a02d7acb95c3 +size 435804 diff --git a/vlm/train/yvQKLaqNE6M/14.png b/vlm/train/yvQKLaqNE6M/14.png new file mode 100644 index 0000000000000000000000000000000000000000..766a1e422eadf9f218edc8df4e9807377ef6448f --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8eca48d329191674a605fc6c8916d8329714c3b0cc9cc923264a972ee173a23 +size 499382 diff --git a/vlm/train/yvQKLaqNE6M/15.png b/vlm/train/yvQKLaqNE6M/15.png new file mode 100644 index 0000000000000000000000000000000000000000..22a916e8842c8d87ef2c01c52a3eedb3b4099988 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1012b2b72efd6a6ad9d9639722ab4fe415a815e21125a867e7ff9e408445c638 +size 450146 diff --git a/vlm/train/yvQKLaqNE6M/16.png b/vlm/train/yvQKLaqNE6M/16.png new file mode 100644 index 0000000000000000000000000000000000000000..03c6d779601e6fb6f70d84bcd018f6c788a47475 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa510d2e95030e84039473b9d390d117fd81d724842c85b54e3f2cf9d9effe9 +size 477446 diff --git a/vlm/train/yvQKLaqNE6M/17.png b/vlm/train/yvQKLaqNE6M/17.png new file mode 100644 index 0000000000000000000000000000000000000000..4f06b013658a07ce6baafa13fcfe3c9e117a4530 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9ddefe53fdfff24af8e01ac5fe3a7df385d6fceab5f40abbd55e8a8522b24a +size 537874 diff --git a/vlm/train/yvQKLaqNE6M/18.png b/vlm/train/yvQKLaqNE6M/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8e9e79b47d11513cbc0aa2f5117d0d7dff97ed85 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a93fb48ac58519a609902d8019a24316a0a74d7a23747517366b0855d7dc73c +size 528828 diff --git a/vlm/train/yvQKLaqNE6M/19.png b/vlm/train/yvQKLaqNE6M/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1a3deac430bb204199f7b4ecf16d70a62ffdf102 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85611fb79c07c62abb152b4ab1fa4b8cd1f8ab38f21ea8167517627a3d8f6850 +size 237150 diff --git a/vlm/train/yvQKLaqNE6M/2.png b/vlm/train/yvQKLaqNE6M/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b8431f316b16c4951afee52f450e05481dc392de --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad6492fa26341bd8fef0edd0214fe17c99baa359a999768cc022b185cb0e099 +size 1378991 diff --git a/vlm/train/yvQKLaqNE6M/20.png b/vlm/train/yvQKLaqNE6M/20.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2b8fe568f9edd3d17166e025d7be71510fa084 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090831fb5719620d8bc0c358e54c235d5a3575f5a5aca07599320f7d3d15b8a2 +size 2939632 diff --git a/vlm/train/yvQKLaqNE6M/21.png b/vlm/train/yvQKLaqNE6M/21.png new file mode 100644 index 0000000000000000000000000000000000000000..07d620f61f111564cf649d4d8c6263302532ac11 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9693b9ce7cd2d8884450f56b572f7c177ebb2b7dc4220150b10343a36d6a806e +size 2909673 diff --git a/vlm/train/yvQKLaqNE6M/22.png b/vlm/train/yvQKLaqNE6M/22.png new file mode 100644 index 0000000000000000000000000000000000000000..e29d1d47d699fbe0fd0d6094677ccedf0a555961 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d955fd7ae65fbb43d6f7a368b97c05c3fd7fa4382029be65b44aafc5955a07 +size 2045986 diff --git a/vlm/train/yvQKLaqNE6M/23.png b/vlm/train/yvQKLaqNE6M/23.png new file mode 100644 index 0000000000000000000000000000000000000000..984e4f484b98d4920370756b48e9385fc6561620 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a304a44fa30aaaaca265a138c7d4b8dfa67fc39bde20f280689c6e298a7766 +size 2634041 diff --git a/vlm/train/yvQKLaqNE6M/24.png b/vlm/train/yvQKLaqNE6M/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d443a466ae610b55f9946deed9c703204d631f28 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614b5266b0f1b664018756fbdaa538026dedeb55d7c535a63bfb0be0d2695ef9 +size 2428985 diff --git a/vlm/train/yvQKLaqNE6M/25.png b/vlm/train/yvQKLaqNE6M/25.png new file mode 100644 index 0000000000000000000000000000000000000000..d14235cdf52738bbdbc829d667e905b9755ee7f6 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7162760a14f711696faef9bc40e89d3ee3a151643b7844ebefd0980ff2ee90 +size 2164389 diff --git a/vlm/train/yvQKLaqNE6M/26.png b/vlm/train/yvQKLaqNE6M/26.png new file mode 100644 index 0000000000000000000000000000000000000000..29f5797d4cd43ff37189d02f9064040ccea41840 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a313db34f4d7d3651e0f8c41a4606c21aa25286781f5fc453d2c44c6ff2c6a +size 2701493 diff --git a/vlm/train/yvQKLaqNE6M/27.png b/vlm/train/yvQKLaqNE6M/27.png new file mode 100644 index 0000000000000000000000000000000000000000..c578d042a470fee3650381980d3a130a59746a62 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c551ce41dd4cd1b41a9356c47582a5931972499eabb363827417bb4447375673 +size 2498500 diff --git a/vlm/train/yvQKLaqNE6M/28.png b/vlm/train/yvQKLaqNE6M/28.png new file mode 100644 index 0000000000000000000000000000000000000000..3b465a16950010cc61775964ae168e4a5290004e --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b51bfb293635c9def1b5dd26704bd3e0b67edb127e9e2861f4ce19a6244d42 +size 904082 diff --git a/vlm/train/yvQKLaqNE6M/29.png b/vlm/train/yvQKLaqNE6M/29.png new file mode 100644 index 0000000000000000000000000000000000000000..e856336c244ee85ed59792940e410ac83ba9abfe --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f096aaf5ab939f94e0eb1b721a934ba1bb5a09dc90891db60c65d54d1ba15120 +size 1498028 diff --git a/vlm/train/yvQKLaqNE6M/3.png b/vlm/train/yvQKLaqNE6M/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cf09a2a8cdd604b3e4374c55c16f4e9c474c50ab --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a270acf6405b59105d484603caee326772b7f195099593c67e809409fd5f3139 +size 627171 diff --git a/vlm/train/yvQKLaqNE6M/30.png b/vlm/train/yvQKLaqNE6M/30.png new file mode 100644 index 0000000000000000000000000000000000000000..da6afef1a7ee6262169b7b9d06649fe19a9fbe75 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5bbfeee9838234fef6f8b97b0df730aa4626e4d19ec17c7057c6a5d15c8e8f +size 473294 diff --git a/vlm/train/yvQKLaqNE6M/31.png b/vlm/train/yvQKLaqNE6M/31.png new file mode 100644 index 0000000000000000000000000000000000000000..b140c89e278155698ff94f23da2de55de7077c28 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c98e019ab087cd99c62cb84248c0f1221f96ca36b4619f1454bc244ab2feb9a +size 404315 diff --git a/vlm/train/yvQKLaqNE6M/4.png b/vlm/train/yvQKLaqNE6M/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc8f6567fb278711047f558f6ae152cbc046982 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3852de41511b4286ffaa88ed340e91962d761ca00cb5f6bd201beb1a70307b6 +size 602344 diff --git a/vlm/train/yvQKLaqNE6M/5.png b/vlm/train/yvQKLaqNE6M/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4cf6832623839478d4e587c0fb0bc215e1df53b0 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439a16ba55d7360ba310bdbaccb56311fd517671286e8f6099724e38cb38f0ae +size 833254 diff --git a/vlm/train/yvQKLaqNE6M/6.png b/vlm/train/yvQKLaqNE6M/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a96069474ff636ae148d87ccd93ca545c91698f5 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf81f6f49f91cb835c8a21110a1791596b955d6cfb194cea6bdd1dcfcd8a70d +size 1460295 diff --git a/vlm/train/yvQKLaqNE6M/7.png b/vlm/train/yvQKLaqNE6M/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3a20301ce07d4cd4218e666039f8b0f17d3bea99 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a693a0c9e6fef366087d0b26358952a21770fbdc034a2ad15201b5f70191bd87 +size 594056 diff --git a/vlm/train/yvQKLaqNE6M/8.png b/vlm/train/yvQKLaqNE6M/8.png new file mode 100644 index 0000000000000000000000000000000000000000..efb685aa5a2e07ee0b44253b7fc7244b6086b0c4 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d3e0a4c982c34e667738bb419b1eb742c68cb1b253509be02c9ed121adfbac0 +size 626564 diff --git a/vlm/train/yvQKLaqNE6M/9.png b/vlm/train/yvQKLaqNE6M/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ea457a4096c60fa797aafc97e4ed85039681b416 --- /dev/null +++ b/vlm/train/yvQKLaqNE6M/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24be060efe5e590cd4a04acbf9551d4d10abee4203e05cfceb6f80d1aa0c1e62 +size 527161 diff --git a/vlm/train/zx_uX-BO7CH/0.png b/vlm/train/zx_uX-BO7CH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4ba619efe7a75901df9a6cae52d0b98a77ece474 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ccf29b3241767ab89c62d2ac6040d456b7374d625e2b554583091358b8a9b6d +size 519325 diff --git a/vlm/train/zx_uX-BO7CH/1.png b/vlm/train/zx_uX-BO7CH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b166b73d41cb4ec900832c9628ece4f526585915 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9abba2392b1c5f96dc31d7fe7874b114b768a7e1ebade58be8d5d0a864cfdc9 +size 624281 diff --git a/vlm/train/zx_uX-BO7CH/10.png b/vlm/train/zx_uX-BO7CH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..822dc0db924c0478f602b8a50f16fabee1849b16 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e79ec5a69df2520c1fd6e6c75899cd975a7efe837f4e956a607d31d5f32b0d7 +size 544211 diff --git a/vlm/train/zx_uX-BO7CH/11.png b/vlm/train/zx_uX-BO7CH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d347fc577e55278b8b14d7ee3ca793ad8861a840 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bb28191693ce9f29772f71fc29ff51de8103b301fdd39c978db1a23a089b4a +size 558186 diff --git a/vlm/train/zx_uX-BO7CH/12.png b/vlm/train/zx_uX-BO7CH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6b4a8ed83bbdfaa9cec916b9c499816412ff7b47 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd8cb838c9a121ea48d946d2aa10e16d4494232d69f591c7f1bc03adfc36d145 +size 340892 diff --git a/vlm/train/zx_uX-BO7CH/13.png b/vlm/train/zx_uX-BO7CH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0bc568e628cd71089624404c7afda999e1355c2a --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99e86824bbdf4b431ece1466c185edf165958ef43919fa0d8f823ac9550f225 +size 494960 diff --git a/vlm/train/zx_uX-BO7CH/14.png b/vlm/train/zx_uX-BO7CH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4b374237bbd2e6e9f21aab7c5d8669777dcee132 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca3644da55088dda9b12fa94595aba07e6921e9ed314ede302025075371824e +size 398012 diff --git a/vlm/train/zx_uX-BO7CH/15.png b/vlm/train/zx_uX-BO7CH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..a87c9fa3bc00a24d113e74fcb246b3f7cdf7bc33 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f383e4ab9d61ba82617f643f415ebcfa0ceae76a1680387f401ec9a4b391b86e +size 368926 diff --git a/vlm/train/zx_uX-BO7CH/16.png b/vlm/train/zx_uX-BO7CH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..cc64f5ec396613aac92d01bc18a48a0938cfe116 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c82577f1a5525b239594ea7c57329fcc73c250537c64fd9fae204d737c7f5e2 +size 497109 diff --git a/vlm/train/zx_uX-BO7CH/17.png b/vlm/train/zx_uX-BO7CH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..9f280ea2b5e2be2dd22eea60cd1f18b9759dc4f0 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196c216a5652e92498f5269984eecf3d22df4ebab1893b0a06a1368ab7413f95 +size 444962 diff --git a/vlm/train/zx_uX-BO7CH/18.png b/vlm/train/zx_uX-BO7CH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0f473cb24382be45f035e72ecdf16e1d6fa22761 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7bf099b1ea5919dfe1ba6400662a17a83a15fbe818874167c52fceefd4dd7ed +size 383495 diff --git a/vlm/train/zx_uX-BO7CH/19.png b/vlm/train/zx_uX-BO7CH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..04b1f0d7fbf02e89491adaaa3ead67bc8b8be8db --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a095b505fd6d47235ed365bc6967feb43c091ec786f97bb308ddf9984cfa86bf +size 250368 diff --git a/vlm/train/zx_uX-BO7CH/2.png b/vlm/train/zx_uX-BO7CH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7b0c9dfccb620d66ef7e9e222278115d0b1a5220 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61db0d9bfd45724836be5f107646f7f2b2ba2e6f8a02693aa171a35fd8705331 +size 571962 diff --git a/vlm/train/zx_uX-BO7CH/3.png b/vlm/train/zx_uX-BO7CH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..df4759bd091442a0cd073133dbf507ffcd010b14 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e43653e735f64856e441717a5b42db367b050606f53e40ce5be9882f4da377f1 +size 552061 diff --git a/vlm/train/zx_uX-BO7CH/4.png b/vlm/train/zx_uX-BO7CH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a6f2e48d665b3dcd326efd3a809aa406b9ded5b0 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d38def501220997fd89ceb561007daec0c37c7d591c1ff3cc82ece3d1ec91a7 +size 672615 diff --git a/vlm/train/zx_uX-BO7CH/5.png b/vlm/train/zx_uX-BO7CH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cf8f065461c1cdfeba1e29243f84553c176c9bf1 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d62c2c597503953851ae5c4d83045c268f3318c79e0866d7aa23241a10eb31 +size 564150 diff --git a/vlm/train/zx_uX-BO7CH/6.png b/vlm/train/zx_uX-BO7CH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6bf323d46db5797d7b1f2ee7edab1b33d074a35d --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0ab6742d92fef127198b9cbde1755d2e4af5b06a53b4efffcc1bfc74a23fce +size 567596 diff --git a/vlm/train/zx_uX-BO7CH/7.png b/vlm/train/zx_uX-BO7CH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..03c867ac8ffc4427cd7a06ce1fb5f830cc718183 --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d50b82d27504612a94387f5f5cbf7a0b251223fb37b5b79a93f1408d07d026 +size 529535 diff --git a/vlm/train/zx_uX-BO7CH/8.png b/vlm/train/zx_uX-BO7CH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e19aeacfb1fbb8e59559bb3e696d0ea6501a174b --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367d319b316812228c656603de3f78b68199d683757baea9d7b6364258b59776 +size 547509 diff --git a/vlm/train/zx_uX-BO7CH/9.png b/vlm/train/zx_uX-BO7CH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e359600678da86302439af16d5032dbe71bd96bc --- /dev/null +++ b/vlm/train/zx_uX-BO7CH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad19a767ab187faa5890e6559234fb1a7e8c4465d15af3485696c8680a334fac +size 529813